You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Sameera Madushan Jayasoma (JIRA)" <ji...@apache.org> on 2006/09/19 13:01:22 UTC

[jira] Created: (AXIS2-1190) Problem in code generation when method overloading is present in WSDL

Problem in code generation when method overloading is present in  WSDL
----------------------------------------------------------------------

                 Key: AXIS2-1190
                 URL: http://issues.apache.org/jira/browse/AXIS2-1190
             Project: Apache Axis 2.0 (Axis2)
          Issue Type: Bug
    Affects Versions: 1.1
            Reporter: Sameera Madushan Jayasoma
         Attachments: tingTong.wsdl



Herewith I have attached the necessary files in order to recreate the problelm.

I developed the wsdl for following operations.

    1 .public Game tingTong(Game game);

    2. public Player tingTong(Player player);

Here is a part of the wsdl.

	<portType name="TingTongPortType">

		<operation name="tingTong">
			<input name="game" message="y:tingTongGameRequestMessage"/>
			<output name="game" message="y:tingTongGameResponseMessage"/>
		</operation>

		<operation name="tingTong">
			<input name="player" message="y:tingTongPlayerRequestMessage"/>
			<output name="player" message="y:tingTongPlayerResponseMessage"/>
		</operation>   

	</portType>

        <binding name="TingTongBinding" type="y:TingTongPortType">

	   <soap:binding style="document" transport="http"/>

	    <operation name="tingTong">
			 <input name="game">
				 <soap:body use="literal"/>
			 </input>
			 <output name="game">
			      <soap:body use="literal"/>
			 </output>
	    </operation>

	    <operation name="tingTong">
			 <input name="player">
				 <soap:body use="literal"/>
			 </input>
			 <output name="player">
			      <soap:body use="literal"/>
			 </output>
	    </operation>  

	</binding>


Is this wsdl is correct?.

But Code generation process works fine.

In the generated "TingTongWebServiceStub" class I could not find the above methods, instead I could find only second method.

Is method overloading is supported in wsdl?.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Resolved: (AXIS2-1190) Problem in code generation when method overloading is present in WSDL

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-1190?page=all ]

Deepal Jayasinghe resolved AXIS2-1190.
--------------------------------------

    Resolution: Invalid

Axis2 dose not support method overloading , so I will mark this as an invalid issue.

> Problem in code generation when method overloading is present in  WSDL
> ----------------------------------------------------------------------
>
>                 Key: AXIS2-1190
>                 URL: http://issues.apache.org/jira/browse/AXIS2-1190
>             Project: Apache Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: wsdl
>    Affects Versions: 1.1
>            Reporter: Sameera Madushan Jayasoma
>         Attachments: tingTong.wsdl
>
>
> Herewith I have attached the necessary files in order to recreate the problelm.
> I developed the wsdl for following operations.
>     1 .public Game tingTong(Game game);
>     2. public Player tingTong(Player player);
> Here is a part of the wsdl.
> 	<portType name="TingTongPortType">
> 		<operation name="tingTong">
> 			<input name="game" message="y:tingTongGameRequestMessage"/>
> 			<output name="game" message="y:tingTongGameResponseMessage"/>
> 		</operation>
> 		<operation name="tingTong">
> 			<input name="player" message="y:tingTongPlayerRequestMessage"/>
> 			<output name="player" message="y:tingTongPlayerResponseMessage"/>
> 		</operation>   
> 	</portType>
>         <binding name="TingTongBinding" type="y:TingTongPortType">
> 	   <soap:binding style="document" transport="http"/>
> 	    <operation name="tingTong">
> 			 <input name="game">
> 				 <soap:body use="literal"/>
> 			 </input>
> 			 <output name="game">
> 			      <soap:body use="literal"/>
> 			 </output>
> 	    </operation>
> 	    <operation name="tingTong">
> 			 <input name="player">
> 				 <soap:body use="literal"/>
> 			 </input>
> 			 <output name="player">
> 			      <soap:body use="literal"/>
> 			 </output>
> 	    </operation>  
> 	</binding>
> Is this wsdl is correct?.
> But Code generation process works fine.
> In the generated "TingTongWebServiceStub" class I could not find the above methods, instead I could find only second method.
> Is method overloading is supported in wsdl?.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Updated: (AXIS2-1190) Problem in code generation when method overloading is present in WSDL

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-1190?page=all ]

Davanum Srinivas updated AXIS2-1190:
------------------------------------

    Component/s: wsdl
    Description: 

Herewith I have attached the necessary files in order to recreate the problelm.

I developed the wsdl for following operations.

    1 .public Game tingTong(Game game);

    2. public Player tingTong(Player player);

Here is a part of the wsdl.

	<portType name="TingTongPortType">

		<operation name="tingTong">
			<input name="game" message="y:tingTongGameRequestMessage"/>
			<output name="game" message="y:tingTongGameResponseMessage"/>
		</operation>

		<operation name="tingTong">
			<input name="player" message="y:tingTongPlayerRequestMessage"/>
			<output name="player" message="y:tingTongPlayerResponseMessage"/>
		</operation>   

	</portType>

        <binding name="TingTongBinding" type="y:TingTongPortType">

	   <soap:binding style="document" transport="http"/>

	    <operation name="tingTong">
			 <input name="game">
				 <soap:body use="literal"/>
			 </input>
			 <output name="game">
			      <soap:body use="literal"/>
			 </output>
	    </operation>

	    <operation name="tingTong">
			 <input name="player">
				 <soap:body use="literal"/>
			 </input>
			 <output name="player">
			      <soap:body use="literal"/>
			 </output>
	    </operation>  

	</binding>


Is this wsdl is correct?.

But Code generation process works fine.

In the generated "TingTongWebServiceStub" class I could not find the above methods, instead I could find only second method.

Is method overloading is supported in wsdl?.

  was:


Herewith I have attached the necessary files in order to recreate the problelm.

I developed the wsdl for following operations.

    1 .public Game tingTong(Game game);

    2. public Player tingTong(Player player);

Here is a part of the wsdl.

	<portType name="TingTongPortType">

		<operation name="tingTong">
			<input name="game" message="y:tingTongGameRequestMessage"/>
			<output name="game" message="y:tingTongGameResponseMessage"/>
		</operation>

		<operation name="tingTong">
			<input name="player" message="y:tingTongPlayerRequestMessage"/>
			<output name="player" message="y:tingTongPlayerResponseMessage"/>
		</operation>   

	</portType>

        <binding name="TingTongBinding" type="y:TingTongPortType">

	   <soap:binding style="document" transport="http"/>

	    <operation name="tingTong">
			 <input name="game">
				 <soap:body use="literal"/>
			 </input>
			 <output name="game">
			      <soap:body use="literal"/>
			 </output>
	    </operation>

	    <operation name="tingTong">
			 <input name="player">
				 <soap:body use="literal"/>
			 </input>
			 <output name="player">
			      <soap:body use="literal"/>
			 </output>
	    </operation>  

	</binding>


Is this wsdl is correct?.

But Code generation process works fine.

In the generated "TingTongWebServiceStub" class I could not find the above methods, instead I could find only second method.

Is method overloading is supported in wsdl?.


> Problem in code generation when method overloading is present in  WSDL
> ----------------------------------------------------------------------
>
>                 Key: AXIS2-1190
>                 URL: http://issues.apache.org/jira/browse/AXIS2-1190
>             Project: Apache Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: wsdl
>    Affects Versions: 1.1
>            Reporter: Sameera Madushan Jayasoma
>         Attachments: tingTong.wsdl
>
>
> Herewith I have attached the necessary files in order to recreate the problelm.
> I developed the wsdl for following operations.
>     1 .public Game tingTong(Game game);
>     2. public Player tingTong(Player player);
> Here is a part of the wsdl.
> 	<portType name="TingTongPortType">
> 		<operation name="tingTong">
> 			<input name="game" message="y:tingTongGameRequestMessage"/>
> 			<output name="game" message="y:tingTongGameResponseMessage"/>
> 		</operation>
> 		<operation name="tingTong">
> 			<input name="player" message="y:tingTongPlayerRequestMessage"/>
> 			<output name="player" message="y:tingTongPlayerResponseMessage"/>
> 		</operation>   
> 	</portType>
>         <binding name="TingTongBinding" type="y:TingTongPortType">
> 	   <soap:binding style="document" transport="http"/>
> 	    <operation name="tingTong">
> 			 <input name="game">
> 				 <soap:body use="literal"/>
> 			 </input>
> 			 <output name="game">
> 			      <soap:body use="literal"/>
> 			 </output>
> 	    </operation>
> 	    <operation name="tingTong">
> 			 <input name="player">
> 				 <soap:body use="literal"/>
> 			 </input>
> 			 <output name="player">
> 			      <soap:body use="literal"/>
> 			 </output>
> 	    </operation>  
> 	</binding>
> Is this wsdl is correct?.
> But Code generation process works fine.
> In the generated "TingTongWebServiceStub" class I could not find the above methods, instead I could find only second method.
> Is method overloading is supported in wsdl?.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Updated: (AXIS2-1190) Problem in code generation when method overloading is present in WSDL

Posted by "Sameera Madushan Jayasoma (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-1190?page=all ]

Sameera Madushan Jayasoma updated AXIS2-1190:
---------------------------------------------

    Attachment: tingTong.wsdl

> Problem in code generation when method overloading is present in  WSDL
> ----------------------------------------------------------------------
>
>                 Key: AXIS2-1190
>                 URL: http://issues.apache.org/jira/browse/AXIS2-1190
>             Project: Apache Axis 2.0 (Axis2)
>          Issue Type: Bug
>    Affects Versions: 1.1
>            Reporter: Sameera Madushan Jayasoma
>         Attachments: tingTong.wsdl
>
>
> Herewith I have attached the necessary files in order to recreate the problelm.
> I developed the wsdl for following operations.
>     1 .public Game tingTong(Game game);
>     2. public Player tingTong(Player player);
> Here is a part of the wsdl.
> 	<portType name="TingTongPortType">
> 		<operation name="tingTong">
> 			<input name="game" message="y:tingTongGameRequestMessage"/>
> 			<output name="game" message="y:tingTongGameResponseMessage"/>
> 		</operation>
> 		<operation name="tingTong">
> 			<input name="player" message="y:tingTongPlayerRequestMessage"/>
> 			<output name="player" message="y:tingTongPlayerResponseMessage"/>
> 		</operation>   
> 	</portType>
>         <binding name="TingTongBinding" type="y:TingTongPortType">
> 	   <soap:binding style="document" transport="http"/>
> 	    <operation name="tingTong">
> 			 <input name="game">
> 				 <soap:body use="literal"/>
> 			 </input>
> 			 <output name="game">
> 			      <soap:body use="literal"/>
> 			 </output>
> 	    </operation>
> 	    <operation name="tingTong">
> 			 <input name="player">
> 				 <soap:body use="literal"/>
> 			 </input>
> 			 <output name="player">
> 			      <soap:body use="literal"/>
> 			 </output>
> 	    </operation>  
> 	</binding>
> Is this wsdl is correct?.
> But Code generation process works fine.
> In the generated "TingTongWebServiceStub" class I could not find the above methods, instead I could find only second method.
> Is method overloading is supported in wsdl?.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org