WSDL generates properly for SOAP web services (JAXB) if we use JAXB Default data type like java.lang.String(xsd:string)
, but it gives problem when we use custom java classes as request object for web method
class GetPersonRequest
{
String person;
}
we have tried adding @XMLType
annotation to the java class (request class GetpersonRequest
) but still no luck , appreciate any help on this