AhmadAssaf
AhmadAssaf

Reputation: 3654

Java Web service with Axis2 and Netbeans

I have followed this tutorial http://netbeans.org/kb/docs/websvc/gs-axis.html and successfully created the web service. When i run the sample i only see the result printed not the whole xml structure as shown in the tutorial. second when i create a client that will point to the .wdsl and check the asynchronous option .. netbeans creates 6 files after that !!

HelloAxisworldHttpSoap11endpoint HelloAxisworldHttpsSoap11endpoint HelloAxisworldHttpSoap12endpoint HelloAxisworldHttpsSoap12endpoint HelloAxisworldHttpendpoint HelloAxisworldHttpsendpoint

can i know what are these files ? and how can i consume my simple function that was created ?

many Thanks

Upvotes: 0

Views: 1533

Answers (2)

Cristiam Da Silva
Cristiam Da Silva

Reputation: 111

You can't see the XML structure because you are in a web browser. Press ctrl+u or go to your browser's option "See sourcecode" in order to see the entire XML response.

Upvotes: 1

Ratna Dinakar
Ratna Dinakar

Reputation: 1573

Files having Soap11 in file names are supportive to SOAP 1.1 version and Soap12 to SOAP 1.2 version. Files having Https denote that webservice can be accessed in secure mode.

Upvotes: 1

Related Questions