Where to get deployed service and generated wsdl using websphere

Viewed 1160

I am using WebSphere to publish my service as a web service using @WebService annotation in eclipse.

Details of the server :

Product name: WebSphere Application Server
Product Version: 17.0.0.2
Product edition: BASE_ILAN

While deploying the project on the server, the project started successfully and now I wanted to see the generated WSDL through admin console(as I do in Glassfish).But I am not finding any way to view the admin console or any directory which is having the generated WSDL(I am using mac os)

However, I can see(in eclipse) my service is deployed successfully, see attached image:

Thanks in advance.

2 Answers

You can find it also when you navigate to {your service} -> Service providers -> {your service} -> WSDL document (from additional properties).

Look there for "soap:address" element, and copy the "location" value/address to your browser with anding "?wsdl" to the end of it.

Related