Are you trying to invoke a webservice with a complex type ? The sample xml that you have given in your query does not show any complex type.
Assuming that you are trying to send complex type while invoking a webserve from WSIF client, then what I can suggest you is that WSIF doesn't support complex types, better you try Apache CXF as it is more advanced compare to WSIF and in CXF there is support for generating the server side stubs dynamically. Srinivas. On Sun, Aug 10, 2008 at 11:22 AM, lorkyo <[EMAIL PROTECTED]> wrote: > Hello, I'm new in using wsif, can anyone give me a example on how to > invoke a webservice? the sample "DynamicInvoker" only support parts as a to > be basic type, such as integer, String ansd so on. But if a part refers to a > XML element listed below, How should I do? > <xsd:element name="request" type="xsd:string"/> > <xsd:element name="response" type="xsd:string"/> > </xsd:schema> > </types> > <message name="RequestMessage"> > <part name="parameters" element="tns:request"/> > </message> > <message name="ResponseMessage"> > <part name="parameters" element="tns:response"/> > </message> > <portType name="WFSPortType"> > <operation name="doservice"> > <input message="tns:RequestMessage"/> > <output message="tns:ResponseMessage"/> > </operation> > </portType> > </definitions> > > I have tried to pass String object as in put,but get a error :No such > operation 'request' . Do I need to pass Elements as input parameters? How > to generate such Elements and How to set their values? > > >
