引言java
须要调用另外一个系统的提供的webservice接口,可是调用以后老是报错,用SoapUI测试接口却没有问题;
那就应该是代码的问题了,可是一样的代码也调用过其余系统却没有问题,不过最终仍是解决了,如今记录一下;web
问题markdown
Exception in thread "main" com.sun.xml.internal.ws.spi.db.DatabindingException: com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationsException: 2 counts of IllegalAnnotationExceptions Two classes have the same XML type name "{http://app.fms.com/}proxyFunction". Use @XmlType.name and @XmlType.namespace to assign different names to them. this problem is related to the following location: at datasource.rebuild.com.fms.app.ProxyFunction at public javax.xml.bind.JAXBElement datasource.rebuild.com.fms.app.ObjectFactory.createProxyFunction(datasource.rebuild.com.fms.app.ProxyFunction) at datasource.rebuild.com.fms.app.ObjectFactory this problem is related to the following location: at com.fms.app.ProxyFunction Two classes have the same XML type name "{http://app.fms.com/}proxyFunctionResponse". Use @XmlType.name and @XmlType.namespace to assign different names to them. this problem is related to the following location: at datasource.rebuild.com.fms.app.ProxyFunctionResponse at public javax.xml.bind.JAXBElement datasource.rebuild.com.fms.app.ObjectFactory.createProxyFunctionResponse(datasource.rebuild.com.fms.app.ProxyFunctionResponse) at datasource.rebuild.com.fms.app.ObjectFactory this problem is related to the following location: at com.fms.app.ProxyFunctionResponse
解决app
找到报错图片里面的那两个类,在类上的注解加上namespace = "http://namespace.thats.not.the.same.as.the.generated"
,以下所示:测试
第一个类:
ui
第二个类:
this
转自:https://blog.csdn.net/Francis123580/article/details/79485138spa