public synchronized void send(AbstractJmsRequest request) throws Exception {
Hashtable h = request.soapCode();
// Setting the call's parameters:
Vector params = new Vector();
params.addElement(new Parameter("name", String.class, identity.getUserName(), null));
params.add(new Parameter("cnxId", Integer.class,
new Integer(cnxId), null));
params.add(new Parameter("map", Hashtable.class, h, null));
sendCall.setParams(params);
// Sending the request, checking the reply:
try {
Response resp = sendCall.invoke(serviceUrl,"");