Quickest way to access a webservice with WSDL in Java

故事扮演 提交于 2019-12-05 17:30:27

wsimport does not only generate the Objects needed for communication with the service but also a service client. Create an instance of the class MSaleService and fetch the port with getMSaleServiceSoap(). That's it.

There might be some problems though. wsimport complained about

[WARNING] SOAP port "MSaleServiceSoap12": uses a non-standard SOAP 1.2 binding.
line 530 of http://vas.mikro-odeme.com/services/msaleservice.asmx?wsdl

but I don't know if this poses real problems.

Here is a quick link I found

http://download.oracle.com/javaee/1.4/tutorial/doc/JAXRPC5.html

Basically, this type of calling is calling Dynamic Invocation where you would NOT need to know the WSDL apriori.

If you use Eclipse, there's this wizard that let's you create what's called a new "Web Service Client" just by pointing at your wsdl file.

so if you have your wsdl in your project, then just click on "new" and choose the wizard.

it'll ask you for the wsdl file and some other info (you can choose your runtime -Axis, Axis2, CXF...).

i think this wizard is part of WTP (www.eclipse.org/webtools).

take a look:

http://tinyurl.com/5v56s5u

http://www.eclipse.org/webtools/jst/components/ws/1.5/tutorials/WebServiceClient/WebServiceClient.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!