Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to access the WSDL URL of a OSB proxy service in web browser

Does anybody know how to access the WSDL URL of a Oracle Service Bus?

For example, in tomcat, axis2 if a service is deployed I can access the WSDL of it like:

http://localhost:8080/services/foo?wsdl

How to achieve the same in OSB?

P.S.: I have installed OSB in Weblogic.

like image 659
user2401730 Avatar asked Dec 21 '22 05:12

user2401730


1 Answers

You access it the same way. To verify the path to your wsdl, login to the OSB console:

http://localhost:7001/sbconsole

Click Resource Browser on the left and you should see all of the available proxies you have deployed and their paths. If you click on one of the proxies, you will see your Endpoint URI:

Endpoint URI    /service/test/YourService

If you add ?WSDL onto the end of that, you should be able to access your WSDL like:

http://localhost:7001/service/test/YourService?WSDL

Assuming your managed server is running on your localhost with that port.

like image 71
Display Name is missing Avatar answered Apr 24 '23 05:04

Display Name is missing