Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

JSON and Java through BlazeDS

Avatar

Level 1
I'm using a regular httprequest to make call to a Java app
service that returns JSON. Can I make that same call using BlazeDS
and AMF? I'm having problems with Flexsessions when mixing the two
and want to just keep all my service calls in remoting.
1 Reply

Avatar

Not applicable
Hey,



I don't have much problems between flex sessions and sessions
in a JSP (if that is what you mean).



I would suggest to investigate some time using Blaze-DS
because it will give you a must faster response time then using
JSon.



What is your exact problem using sessions??





Here is a example what I do :

set user_id in a session

FlexContext.getFlexSession().setAttribute("user_id", id);



get it back:

id =
(Integer)FlexContext.getFlexSession().getAttribute("user_id");







get it in a JSP page:

user_id = session.getAttribute("user_id");





Avatar

Level 1
Thanks for the reply. Well problem is that I am making some
calls to my AMF service first and that sets a session cookie in the
broswer. Then when I use the Java service over HTTP, that service
sets another session cookie and my app gets confused. To fix it, I
have to delete the session cookie after my AMFcalls return which is
a bad hack. I tried making my Java calls over an http proxy but I
keep getting a "NetConnection.Call.BadVersion" error