E9.2 Bsfn to Internal bssv

asadkhan

asadkhan

Member
I would like to call internal bssv from bsfn,in the internal bssv i have wrapped rest call to third party systems. Is it possible without consumer bssv? Can i call an internal bssv simply with some paramters from bsfn to bssv value object.
 
Yes, the BSSV can basically do anything that you can write using Java. Since Java has many libs that expose integration options easily (email, HTTP/HTTPS, etc.) , the BSSV can be a good way to add that to a JDE ecosystem. Writing those integrations at an O/S level (BSFN) can be more difficult, and are also obviously platform specific. For example, we developed a generic BSSV to monitor an email account and process the messages. We also created several BSSVs that consume REST APIs for item master integration. Yes, orchestrator is being pushed as the standard, but BSSVs still have their own advantages.

Craig
 
Hi Craig,

Thanks for your answer ,i have already wrapped everything in internal java class, i will take few values from BSFN and call this java class. I don’t have to create any thing else here . Like we do in consumer bssv.

Thanks
Asad
 
Yes, the BSSV can basically do anything that you can write using Java. Since Java has many libs that expose integration options easily (email, HTTP/HTTPS, etc.) , the BSSV can be a good way to add that to a JDE ecosystem. Writing those integrations at an O/S level (BSFN) can be more difficult, and are also obviously platform specific. For example, we developed a generic BSSV to monitor an email account and process the messages. We also created several BSSVs that consume REST APIs for item master integration. Yes, orchestrator is being pushed as the standard, but BSSVs still have their own advantages.

Craig
Hi Craig,

I got one requirement where i need to call some Rest API's using BSSV (JDE 9.1) in steps of Access token-> session ID ->Iframe URL .Well i have pass the parameters in JSON format but getting lot of errors still while using the JSON libraries.
Can you please share any reference document if you have with you.
 
Yes, the BSSV can basically do anything that you can write using Java. Since Java has many libs that expose integration options easily (email, HTTP/HTTPS, etc.) , the BSSV can be a good way to add that to a JDE ecosystem. Writing those integrations at an O/S level (BSFN) can be more difficult, and are also obviously platform specific. For example, we developed a generic BSSV to monitor an email account and process the messages. We also created several BSSVs that consume REST APIs for item master integration. Yes, orchestrator is being pushed as the standard, but BSSVs still have their own advantages.

Craig
Hi Craig,

I got one requirement where i need to call REST API's in steps of Access Token->Session ID-> Iframe URL. I have written code using JSON to pass the parameters but still getting errors though used the JSON libraries.
Can you please help in sharing any reference document if you have.(using JDE 9.1 version)
 
Back
Top