Title: Message
Greetings.
 
I am using java2wsdl to generate wsdl for my web service.
I have a getNextActivity() method which returns IWSActivity, so wsdl2java correctly generates the following:

<wsdl:message name="getNextActivityResponse"> 
 
<wsdl:part name="getNextActivityReturn" type="tns1:IWSActivity"/>
 
 
</wsdl:message> 

I also have a getState() method, which returns IWSState, but wsdl2java uses anyType as shown below:

<wsdl:message name="getStateResponse"> 
 
<wsdl:part name="getStateReturn" type="xsd:anyType"/>
 
 
</wsdl:message> 

This behavior seems somewhat random and I am trying to figure out why this happens.

IWSActivity interface is empty. IWSState interface is shown below:

public interface IWSState { 
 
public
void setSimDays(int simDays); 
 
public Timestamp getCurrentTime(); 
} 

I attached mywsdl.wsdl generated by java2wsdl.

Thanks. 

 
*************************************
This e-mail may contain privileged or confidential material intended for the named recipient only.
If you are not the named recipient, delete this message and all attachments.
Unauthorized reviewing, copying, printing, disclosing, or otherwise using information in this e-mail is prohibited.
We reserve the right to monitor e-mail sent through our network.
*************************************

Attachment: mywsdl.wsdl
Description: mywsdl.wsdl

Reply via email to