Zajmuję się tworzeniem usługi WWW z kilkoma metodami, które przyjmują identyczne złożone typy danych wejściowych. Typy danych mają adnotacje i setery JAXB i pobierające, a klasa usługi WWW ma adnotacje JAX-WS.JAX-WS powtarza typ złożony podczas generowania klucza wsdl
Szablon mojego pliku service.java:
@WebService(serviceName = "ServiceWS")
public class SericeWS {
private static ServiceIF serviceImpl;
static {
serviceImpl = new ServiceImpl();
}
public Result Method1(Credentials credentials) {
@WebParam(name = "credentials") Credentials credentials) {
return serviceImpl.Method1(credentials);
}
public Result Method2(Credentials credentials) {
@WebParam(name = "credentials") Credentials credentials) {
return serviceImpl.Method2(credentials);
}
}
EDIT: Mój plik Credentials.java:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"name",
"password"
})
@XmlRootElement(name = "Credentials")
public class Credentials implements MyBean {
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String password;
/**
* Gets the value of the name property.
*
* @return The name property of the credentials
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value The name property of the credentials
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the password property.
*
* @return The password property of the credentials
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value The password property of the credentials
*
*/
public void setPassword(String password) {
this.password = password;
}
}
Usługa jest rozmieszczony w Tomcat i WSDL jest auto generowany. Podczas generowania kodu pośredniczącego klienta za pomocą programu wsimport uzyskuje się duplikację typu Credentials (Credentials, Method1.Credentials i Method2.Credentials), tj. Inną (wewnętrzną) klasę dla każdej metody.
Wydaje się, że problem arrises kiedy WSDL i schemat są generowane:
<xs:schema xmlns:tns="http://service.my.package.com/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0"
targetNamespace="http://service.my.package.com/">
<xs:element name="Credentials">
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="password" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
....
<xs:complexType name="getLockBoxKeys">
<xs:sequence>
<xs:element name="credentials" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="password" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
.....
Jak mogę zrobić to wszystko praca taka, że mam tylko jedną definicję poświadczenia? Jestem całkiem nowy w usługach internetowych, JAX-WS i JAXB, więc nie jestem pewien, czy mam odpowiednie adnotacje.
Każda pomoc zostanie bardzo doceniona.
Pokaż nam klasy z adnotacjami JAXB. – acdcjunior
Dzięki za odpowiedź. Zmodyfikowałem oryginalne pytanie, aby dodać plik Credentials.java. Daj mi znać, jeśli chcesz zobaczyć cokolwiek innego. – juniz