[
https://issues.apache.org/jira/browse/CXF-2789?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12862187#action_12862187
]
Fabian Nilius commented on CXF-2789:
------------------------------------
In addition, the following lines in the ObjectFactory are also generated even
though java.rmi.RemoteException was excluded.
They lead to annotation errors, and have to be deleted manually.
/**
* Create an instance of {...@link JAXBElement }...@code <}...@link
RemoteException }...@code >}}
*
*/
@XmlElementDecl(namespace = "urn:SecurityServer", name = "RemoteException")
public JAXBElement<RemoteException> createRemoteException(RemoteException
value) {
return new JAXBElement<RemoteException>(_RemoteException_QNAME,
RemoteException.class, null, value);
}
- Fabian
> wsdl2java generates bad @XmlSeeAlso annotation
> ----------------------------------------------
>
> Key: CXF-2789
> URL: https://issues.apache.org/jira/browse/CXF-2789
> Project: CXF
> Issue Type: Bug
> Components: Tooling
> Affects Versions: 2.2.7
> Reporter: peter schröder
> Priority: Minor
> Attachments: service.wsdl
>
>
> we are trying to generate a client stub from the attlasian crowd service wsdl
> and having some problems with their (bad) approach on exception handling.
> there are several exceptions thrown that are in an inheritance chain with
> java.rmi.RemoteException and java.lang.Throwable.
> we excluded these two from generation with calling wsdl with nexclude:
> {noformat}
> wsdl2java -autoNameResolution -verbose -client -d src/main/java -nexclude
> http://rmi.java=java.rmi -nexclude http://lang.java=java.lang -b
> wsdl/service_bindings.xml wsdl/service.wsdl
> {noformat}
> this produces a port type like this:
> {noformat}
> @WebService(targetNamespace = "urn:SecurityServer", name =
> "SecurityServerPortType")
> @XmlSeeAlso({com.atlassian.crowd.integration.authentication.ObjectFactory.class,ObjectFactory.class,com.atlassian.crowd.integration.model.ObjectFactory.class,com.atlassian.crowd.integration.model.user.ObjectFactory.class,com.atlassian.crowd.integration.exception.ObjectFactory.class,java.rmi.ObjectFactory.class,com.atlassian.crowd.integration.soap.ObjectFactory.class,java.lang.ObjectFactory.class})
> @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
> public interface SecurityServerPortType {
> {noformat}
> where java.rmi.ObjectFactory.class and java.lang.ObjectFactory.class were not
> generated!
> maybe i did it completely wrong...
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.