You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-user@axis.apache.org by Yogender Singh01 <Yo...@infosys.com> on 2007/05/15 11:12:00 UTC

[Axis2c] query generating server side file from wsdl

 <<hello.wsdl>> 

Hi All,
I have written this sample wsdl file to perform the function to accept 2
strings and concatenate as output.
But when I am generating server side files. I am not getting getter and
setter methods in axis2_concat.c and axis2_concatResponse.c files
And in serialize and deserialize methods very less code in gettign
generated?


I am attaching my sample wsdl. 

Is it correct?
For this Do we have to add anything in wsdl files??

Regards,
Yogender


**************** CAUTION - Disclaimer *****************
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely for the use of the addressee(s). If you are not the intended recipient, please notify the sender by e-mail and delete the original message. Further, you are not to copy, disclose, or distribute this e-mail or its contents to any other person and any such actions are unlawful. This e-mail may contain viruses. Infosys has taken every reasonable precaution to minimize this risk, but is not liable for any damage you may sustain as a result of any virus in this e-mail. You should carry out your own virus checks before opening the e-mail or attachment. Infosys reserves the right to monitor and review the content of all messages sent to or from this e-mail address. Messages sent to or from this e-mail address may be stored on the Infosys e-mail system.
***INFOSYS******** End of Disclaimer ********INFOSYS***

Re: [Axis2c] query generating server side file from wsdl

Posted by Dushshantha Chandradasa <du...@gmail.com>.
It seems to me that your wsdl is wrong.

Please note that you have set inpun and output messages as strRequest and
strResponse.

<wsdl:portType name="hello">
    <wsdl:operation name="concat" parameterOrder="str0 str1">
      <wsdl:input message="intf:strRequest" name="strRequest"/>
      <wsdl:output message="intf:strResponse" name="strResponse"/>
    </wsdl:operation>
    </wsdl:portType>

But you have defined the messages as helloRequest and helloResponse. And
also, please note that you have referred  as str1 and str2 but defined as
str0 and str1.

Try fixing those errors with your wsdl and regenerating the code.

Regards,
Dushshantha

On 5/15/07, Yogender Singh01 <Yo...@infosys.com> wrote:
>
>
> <<hello.wsdl>>
>
> Hi All,
> I have written this sample wsdl file to perform the function to accept 2
> strings and concatenate as output.
> But when I am generating server side files. I am not getting getter and
> setter methods in axis2_concat.c and axis2_concatResponse.c files
> And in serialize and deserialize methods very less code in gettign
> generated?
>
>
> I am attaching my sample wsdl.
>
> Is it correct?
> For this Do we have to add anything in wsdl files??
>
> Regards,
> Yogender
>
>
> **************** CAUTION - Disclaimer *****************
> This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended
> solely for the use of the addressee(s). If you are not the intended
> recipient, please notify the sender by e-mail and delete the original
> message. Further, you are not to copy, disclose, or distribute this e-mail
> or its contents to any other person and any such actions are unlawful. This
> e-mail may contain viruses. Infosys has taken every reasonable precaution to
> minimize this risk, but is not liable for any damage you may sustain as a
> result of any virus in this e-mail. You should carry out your own virus
> checks before opening the e-mail or attachment. Infosys reserves the right
> to monitor and review the content of all messages sent to or from this
> e-mail address. Messages sent to or from this e-mail address may be stored
> on the Infosys e-mail system.
> ***INFOSYS******** End of Disclaimer ********INFOSYS***
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-c-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-c-user-help@ws.apache.org
>
>