I am trying to save my Web Services, but when I do it, send me an warning message: “The Web service has been saved, but is invalid: data ResponseStruct is not a conforming value type or enumeration, and has no registered XSD type mapping; it cannot be successfully handled at runtime”. Some body can help me please?.
here is my code :
public class Something implements Serializable
{
public ResponseStruct update(
String P1,
String P2,
String P3,
String P4,
String P5,
String P6,
String P7 )
{
ResponseStruct resp = new ResponseStruct();
return resp;
}
}
class ResponseStruct implements Serializable
{
…
}