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 "Charitha Kankanamge (JIRA)" <ji...@apache.org> on 2007/11/20 06:15:43 UTC

[jira] Created: (AXIS2-3352) JAX-WS: wsdl11 generation fails if @WebMethod annotation is specified with member values

JAX-WS: wsdl11 generation fails if @WebMethod annotation is specified with member values
----------------------------------------------------------------------------------------

                 Key: AXIS2-3352
                 URL: https://issues.apache.org/jira/browse/AXIS2-3352
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: jaxws
    Affects Versions: 1.3
         Environment: winxp, jdk15
            Reporter: Charitha Kankanamge
            Priority: Blocker


It seems the axis2 JAX_WS implementation hava a lot of problems. For example, I wrote the following service implementation class.

@WebService(name= "WSASJAX_Service2", targetNamespace = "http://www.charitha.org/jaxws")
public class jaxwsservice2 {
	@WebMethod(operationName = "echomethodString")
	public String echoMethod(String s){
		return s;
	}

}

Then I deployed this as a jar in axis2. I noticed that Axis2 failed to generate wsdl11. Also Axis2 takes service method and annotated method name as two different operations.
Axis2 admin page lists down the above as two available operations

    * echoMethod
    * echomethodString

Please note that I did not include any wsdl inside the jar. It just contained the service impl class. 


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (AXIS2-3352) JAX-WS: wsdl11 generation fails if @WebMethod annotation is specified with member values

Posted by "Charitha Kankanamge (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3352?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Charitha Kankanamge updated AXIS2-3352:
---------------------------------------

    Description: 
It seems the axis2 JAX_WS implementation has a lot of problems. For example, I wrote the following service implementation class.

@WebService(name= "WSASJAX_Service2", targetNamespace = "http://www.charitha.org/jaxws")
public class jaxwsservice2 {
	@WebMethod(operationName = "echomethodString")
	public String echoMethod(String s){
		return s;
	}

}

Then I deployed this as a jar in axis2. I noticed that Axis2 failed to generate wsdl11. Also Axis2 takes service method and annotated method name as two different operations.
Axis2 admin page lists down the above as two available operations

    * echoMethod
    * echomethodString

Please note that I did not include any wsdl inside the jar. It just contained the service impl class. 


  was:
It seems the axis2 JAX_WS implementation hava a lot of problems. For example, I wrote the following service implementation class.

@WebService(name= "WSASJAX_Service2", targetNamespace = "http://www.charitha.org/jaxws")
public class jaxwsservice2 {
	@WebMethod(operationName = "echomethodString")
	public String echoMethod(String s){
		return s;
	}

}

Then I deployed this as a jar in axis2. I noticed that Axis2 failed to generate wsdl11. Also Axis2 takes service method and annotated method name as two different operations.
Axis2 admin page lists down the above as two available operations

    * echoMethod
    * echomethodString

Please note that I did not include any wsdl inside the jar. It just contained the service impl class. 



> JAX-WS: wsdl11 generation fails if @WebMethod annotation is specified with member values
> ----------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3352
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3352
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: jaxws
>    Affects Versions: 1.3
>         Environment: winxp, jdk15
>            Reporter: Charitha Kankanamge
>            Priority: Blocker
>
> It seems the axis2 JAX_WS implementation has a lot of problems. For example, I wrote the following service implementation class.
> @WebService(name= "WSASJAX_Service2", targetNamespace = "http://www.charitha.org/jaxws")
> public class jaxwsservice2 {
> 	@WebMethod(operationName = "echomethodString")
> 	public String echoMethod(String s){
> 		return s;
> 	}
> }
> Then I deployed this as a jar in axis2. I noticed that Axis2 failed to generate wsdl11. Also Axis2 takes service method and annotated method name as two different operations.
> Axis2 admin page lists down the above as two available operations
>     * echoMethod
>     * echomethodString
> Please note that I did not include any wsdl inside the jar. It just contained the service impl class. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Resolved: (AXIS2-3352) JAX-WS: wsdl11 generation fails if @WebMethod annotation is specified with member values

Posted by "Lahiru Sandakith (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3352?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lahiru Sandakith resolved AXIS2-3352.
-------------------------------------

    Resolution: Fixed

Charitha,
Please check this with the current trunk, I tested and this is fixed now.
Thanks 
Sandakith

> JAX-WS: wsdl11 generation fails if @WebMethod annotation is specified with member values
> ----------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3352
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3352
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: jaxws
>    Affects Versions: 1.3
>         Environment: winxp, jdk15
>            Reporter: Charitha Kankanamge
>            Priority: Blocker
>
> It seems the axis2 JAX_WS implementation has a lot of problems. For example, I wrote the following service implementation class.
> @WebService(name= "WSASJAX_Service2", targetNamespace = "http://www.charitha.org/jaxws")
> public class jaxwsservice2 {
> 	@WebMethod(operationName = "echomethodString")
> 	public String echoMethod(String s){
> 		return s;
> 	}
> }
> Then I deployed this as a jar in axis2. I noticed that Axis2 failed to generate wsdl11. Also Axis2 takes service method and annotated method name as two different operations.
> Axis2 admin page lists down the above as two available operations
>     * echoMethod
>     * echomethodString
> Please note that I did not include any wsdl inside the jar. It just contained the service impl class. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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