Receving Value Object from JMS queue
hi,
i want receive value object jms queue. able send value object jms queue using "send message queue". however, receive message queue not working expected , throwing below error:
2013-11-11 00:22:30,456 error [com.adobe.workflow.aws] (http-0.0.0.0-8080-8) exception thrown name com.adobe.livecycle.jms.exception.jmsreceiverexception message:com.testcustomdatatypes.customdatatypes while invoking service jms , operation receivemessagefromqueue , no fault routes found configured.
class definition:
public class customdatatypes implements java.io.serializable{
public string customerid;
public string customername;
public string groupid;
public string getcustomername() {
return customername;
}
public void setcustomername(string customername) {
this.customername = customername;
}
public string getgroupid() {
return groupid;
}
public void setgroupid(string groupid) {
this.groupid = groupid;
}
public void setcustomerid(string customerid) {
this.customerid = customerid;
}
public string getcustomerid() {
return customerid;
}
}
below settings used in "receive message queue" :
messagepayloadtype: serializable
messagepayload: objoutput(datatype: com.testcustomdatatypes.customdatatypes)
please find error screenshot.
please suggest how resolve this.
thanks,
ramu
More discussions in LiveCycle Foundation
adobe
Comments
Post a Comment