[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.webtools] Re: Newbie: problem creating web service client

Hi Mike,

I used the wsdl you provided, in my Web Service Client Implementation, and I am able to parse the WSDL and list Service, Ports and all their corresponding Operations.

Just in case, If you missed something, follow the below steps:

You need to use the following extension points to implement Web Service Client:

To add your custom Runtime, use <extension point="org.eclipse.jst.ws.consumption.ui.runtimes">
   </extension>

To add your custom Client Type, use <extension
         point="org.eclipse.jst.ws.consumption.ui.wsClientImpl">
   </extension>

To add your client Runtime, use <extension
point="org.eclipse.jst.ws.consumption.ui.clientRuntimes">
	</extension>

From your Runtime class getWebServiceClient() method, you need to return your Web Service Client object.

If everything is fine till now, then check if result of the WSDL parsing is handled correctly.