I'm getting a ClientTransportException when try to access the webservice hosted in websphere (java 1.3), from a application deployed in a weblogic server (java 1.6). Webservice method has a return value of Date data type and generated sources in my application it is implemented as Calender datatype, how can I solve this. Thank you.
In generated sources:
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar someDate;
In hosted EJB:
public Date someMethod(){
//return date;
}
asked Aug 8, 2014 at 8:52
Miran Senanayaka
1542 silver badges13 bronze badges
-
500 Internal server error is usually associated with some exception on the server side. Try to examine the server logs and find the root cause of the error.DanielBarbarian– DanielBarbarian2014年08月11日 06:35:20 +00:00Commented Aug 11, 2014 at 6:35
-
Agree with Daniel - there has to be something more in one of the server logs. For instance, weblogic has known issues when the client and server are different versions: stackoverflow.com/questions/5911027/…Display Name is missing– Display Name is missing2014年08月11日 16:35:37 +00:00Commented Aug 11, 2014 at 16:35
lang-java