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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]