Hello,

Currently our portal application is running in BEA 10 and is accessed
over WSRP.  I am using Prototype 1.6.0.2 for my Ajax calls via the
standard function:

function makeAjaxCall(pars) {
   pars += "&randid=" + getRandomId();
   var myAjax = new Ajax.Request(AJAX_SERVLET, { parameters: pars,
onSuccess: processSuccess, onFailure: processFailure, onException:
processException} );
}

This calls my servlet.  When deployed in BEA 10, there is no problem,
meaning all of my parameters are sent to the servlet and I can print
them to the console.  We are now in the process of migrating to BEA
10.2 and I am finding that the parameters are not being sent to the
servlet.  In a non-WSRP mode it is fine, but the parameters are not
being sent to the servlet when the servlet is called over WSRP.  I
have created a separate small client to test this.  When it I run it
as a WSRP Producer in BEA 10 there is no problem.  When I run it as a
WSRP Producer in EBA 10.2, the paremeters are not sent.

I wasn't anticipating this but it is obvious that something is keeping
Prototype from sending the parameters.  I am hoping that someone has
seen this before.  Any clues would be greatly appreciated.

Thanks - Peter Len

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to