Java Mailing List Archive

http://www.junlu.com/

Home » Home (12/2007) » JDOM User »

Re: [jdom-interest] forwarding JDOM-Objects

frode

2006-01-06

Replies:


Hello.

Why don't you put it as an attribute to the servletcontext. Since both revlets runs in the same container, they both
have access to the same servlet-context, and can exchange objects there ?

the sending one :
Document o = new Document();
this.getServletContext().setAttribute("jdom_object",o);


the recieving one :

Document o = (Document) this.getServletContext().getAttribute("jdom_object);

Frode Halvorsen









                                                                                                               
              Christian Stalp                                                                                        
              <stalp@(protected)                                                          
              inz.de>             cc:                                                                              
              Sent by:             Subject: [jdom-interest] forwarding JDOM-Objects                                              
              jdom-interest-bounc                                                                                    
              es@(protected)                                                                                          
                                                                                                               
                                                                                                               
              06.01.2006 18:53                                                                                      
                                                                                                               




Hello out there,
I have a special problem. I wrote this allready into the tomcat user
list, but maybe somone here has a good solution for my problem.
I want to forward a JDOM-object from one servlet to another in the same
servlet-container. I thought I write this JDOM to a string, transfer it
and unpack it at the other side.

BUT I cannot find a way to extract a JDOM from a String delivered by a
HttpServletRequest.
I tried it this way:
String mystring = req.getParameter("Objekt");
    Document mydoc = mystring.? <- no method found
I thought there was a method anyway. What can I do here?

Thank you and...

Gruss Christian

_______________________________________________
To control your jdom-interest membership:
http://www.jdom.org/mailman/options/jdom-interest/youraddr@(protected)




_______________________________________________
To control your jdom-interest membership:
http://www.jdom.org/mailman/options/jdom-interest/youraddr@(protected)
©2008 junlu.com - Jax Systems, LLC, U.S.A.