Reputation: 11935
http://localhost:8080/api/axis/Portal_UserService?wsdl
by browser I have a response.When I create a webService Client on Eclipse and I put this url http://localhost:8080/api/axis/Portal_UserService?wsdl
in the Service Definition...
but I have this error message:
No server can be found and WebServiceProject does not exist. Choose an existing project or use the preferences to configure a server runtime.
Why?
Upvotes: 7
Views: 6585
Reputation: 1910
I could not find any solution to this, for some reason Eclipse
didn't recognize a valid wsdl
. I downloaded a trial version of IntelliJ IDEA 13 Ultimate
and setup the Web Service Client
through there. Everything worked properly.
Upvotes: 0
Reputation: 2496
create dynamic web project and configure a server then add wsdl .
Upvotes: 3
Reputation: 48057
This does not mean that the server (e.g. Liferay) can't be found but notifies you that Eclipse doesn't know where to put/how to configure the resulting WebService: It needs a server runtime and a WebServiceProject - e.g. you can create a WebServiceClient inside a project - if no suitable project exists, eclipse will complain.
So: Everything is fine on the Liferay side. You'll need infrastructure in your IDE to be able to go forward with this operation
Upvotes: 2