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

user2401730 picture user2401730 · May 20, 2013 · Viewed 27k times · Source

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.

Answer

Display Name is missing picture Display Name is missing · May 20, 2013

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.