cancel
Showing results for 
Search instead for 
Did you mean: 

Blue Prism Web Service Response

ritesh_a_ramkhe
Level 4
Hi, I have created a simple process and exposed it as a web service. The output of the process is just a data item holding text. When the web service is called, is the output XML data? Thanks.
4 REPLIES 4

KirankumarMahan
Level 4
Hi Ritesh, Refer the below link for exposing web services through Blue prism. After exposing business object as a web service through bp will create a wsdl url. you can use this WSDL url to access the business object. WSDL format http://[machinename]:/ws/Buisinessobject name?wsdl. https://portal.blueprism.com/system/files/product/productpublic/4.2/Blu

PrateekMehan
Level 6
Please help with the following error when I acces the web service in my code using action stage ""General HTTP error : Not Found"" or sometimes even ""Not authorized to call this web service

PrateekMehan
Level 6
How to consume a Web Service ""it always throws an error Internal ""General HTTP error not found"" and ""Not authorized to call this web service"" ?? Any help would be appreciated. Thanks,

Denis__Dennehy
Level 15
Just to make sure people using Blue Prism Web Services are clear. Best practice is for your Web Service process to NOT be asynchronous - because it would be bad web service practice to wait for the duration of the business process for a response. Your Web Service should simply take the request and add it to a Blue Prism work queue - to be worked by a resourcepc that is working that queue. The Web Service response should simply be a flag stating the request was successfully received. If there is a response required by the business process, this should be designed seperatey (potentially by Blue Prism calling a web service hosted elsewhere to return data).