java2wsdl won't generate the separate WSDL files, but you can certainly edit the generated files and convert them into one schema (defining MyObject) and two WSDLs.

Anne

On 6/15/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

Hello.

I have 2 Java Interfaces, each one representing a WebService :

public interface interf1

{

  public void m1(MyObject o);

}


public interface interf2

{

  public void m2(MyObject o);

}


As you can see, the 2 operations have a MyObject instance input parameter.

I would like to generate the following WSDL files with java2wsdl :

- one WSDL file containing the MyObject complex type.

- one WSDL file containing the interf1 web service and using the first WSDL file.

- one WSDL file containing the interf2 web service and using the first WSDL file.


Is it possible ?

If yes how can I do ?

Thanks a lot.


Regards.


Jean-Baptiste

Reply via email to