RE: Is servlet chaining possible using Tomcat

2003-05-27 Thread Schwartz, David (CHR)
what is servlet chaining? -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 11:40 AM To: Tomcat Users List Subject: RE: Is servlet chaining possible using Tomcat Howdy, The real question is, is servlet chaining part of the Servlet

RE: Is servlet chaining possible using Tomcat

2003-05-27 Thread Shapira, Yoav
, David (CHR) [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 12:16 PM To: 'Tomcat Users List' Subject: RE: Is servlet chaining possible using Tomcat what is servlet chaining? -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 11:40 AM To: Tomcat

RE: Is servlet chaining possible using Tomcat

2003-05-27 Thread Kannan Sundararajan
Here is the link which can explain about servlet chaining http://info.borland.com/techpubs/books/appserver/appserver40/web/servlets/se rvlet_chains.html -Original Message- From: Schwartz, David (CHR) [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 12:16 PM To: 'Tomcat Users List

Re: Is servlet chaining possible using Tomcat

2003-05-27 Thread Hassan
Not sure if servlet chaining is still supported as that's now a deprecated practice. Use Servlet Collaboration to achieve the same. - Original Message - From: Bilal Ahmad [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 4:38 PM Subject: Is servlet chaining possible

Servlet chaining, set remoteUser?

2003-01-23 Thread Jim Henderson
the user ID in a file. To avoid changing my original Servlet I want to try Servlet Chaining. However, how do I set the userID in the redirected request stream? Is that possible? Thanks! Jim Henderson -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto

Re: Servlet chaining, set remoteUser?

2003-01-23 Thread Bill Barker
and pass the user ID in a file. To avoid changing my original Servlet I want to try Servlet Chaining. However, how do I set the userID in the redirected request stream? Is that possible? Thanks! Jim Henderson -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands

servlet-chaining problem

2002-01-30 Thread Dirk . Dinger
Hi ! I have the following scenario: Servet A :performs a synchronous call to another servlet B, located at some other server. Servlet B produces binary output, that may be further processed or directly routed back to the browser (as shown in the

SSInclude and servlet chaining

2002-01-17 Thread Wu, Wenjie [IT]
Hi, Can anyone tell me if Tomcat is supporting Server side include and servlet chaining ? I know there are modern ways to achieve those. Thanks, -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Servlet chaining

2001-06-19 Thread Reynir Hübner
hi everyone, Does anyone know of implementation of a good ServletChaining API (for tomcat) that´s available for download ? I know Filters will be introduced into Tomcat 4 and I look forward to working with those but untill it will be released I need something similar. thanx bye -r

Re: Servlet chaining

2001-06-19 Thread Dmitri Colebatch
try struts - jakarta.apache.org/struts I think Reynir Hübner wrote: hi everyone, Does anyone know of implementation of a good ServletChaining API (for tomcat) that´s available for download ? I know Filters will be introduced into Tomcat 4 and I look forward to working with those but

RE: servlet chaining, session null

2001-05-18 Thread SAMEUNIE
ok, but it's between the second and the third servlet that the problem appears !!! -Message d'origine- De: Bo Xu [SMTP:[EMAIL PROTECTED]] Date: jeudi 17 mai 2001 20:52 À:[EMAIL PROTECTED] Objet:Re: servlet chaining, session null [EMAIL PROTECTED] wrote: Well

servlet chaining, session null

2001-05-17 Thread SAMEUNIE
Hi, i'm trying to use Servlet chaining with three servlets. In the first one i create a cession (if it doesn't exist), in the second one i put some attributes in the cession. But when i arrive in the third servlet, my session is null? As anybody already had this problem ? Is it possible to get

Re: servlet chaining, session null

2001-05-17 Thread Bo Xu
[EMAIL PROTECTED] wrote: Hi, i'm trying to use Servlet chaining with three servlets. In the first one i create a cession (if it doesn't exist), in the second one i put some attributes in the cession. But when i arrive in the third servlet, my session is null? As anybody already had

RE: servlet chaining, session null

2001-05-17 Thread SAMEUNIE
!!! -Message d'origine- De: Bo Xu [SMTP:[EMAIL PROTECTED]] Date: jeudi 17 mai 2001 16:29 À:[EMAIL PROTECTED] Objet:Re: servlet chaining, session null [EMAIL PROTECTED] wrote: Hi, i'm trying to use Servlet chaining with three servlets. In the first one i create

Re: servlet chaining, session null

2001-05-17 Thread Bo Xu
[EMAIL PROTECTED] wrote: Well, all my servlets are on the same webapps. I don't use the url rewriting, but the HttpSession. for example in the first servlet: HttpSession session = request.getSession(false); if (session == null) session = request.getSession(true);

RE: servlet chaining, session null

2001-05-17 Thread Ross Merritt
PROTECTED] Subject: Re: servlet chaining, session null [EMAIL PROTECTED] wrote: Well, all my servlets are on the same webapps. I don't use the url rewriting, but the HttpSession. for example in the first servlet: HttpSession session = request.getSession(false); if (session == null) session

Servlet Chaining

2001-04-26 Thread Skinner, Dallas M
Is it possible to chain servlets through tomcat? If so, how do I change my configuration to allow for it? Thanks

RE: Servlet Chaining...

2001-04-05 Thread Gaël Oberson
Title: RE: Servlet Chaining... [Gaël Oberson] I think HttpServletRequest inherits getRequestDispatcher(..) from ServletRequest class and does implement it. [Gaël Oberson] You can also get the RequestDispatcher object from ServletContext Yes, you're right, but it'snot what I

RE: Servlet Chaining...

2001-04-05 Thread Varela Santoalla, Daniel
] Asunto: RE: Servlet Chaining... [Gal Oberson] I think HttpServletRequest inherits getRequestDispatcher(..) from ServletRequest class and does implement it. [Gal Oberson] You can also get the RequestDispatcher object from ServletContext Yes, you're

Re: Servlet Chaining...

2001-04-05 Thread Pae Choi
Bo, Did you use Cygwin to build the mod_webapp connector? I am having a problem to build it. Can you share the info with us? Pae -Original Message- From: Bo Xu [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Thursday, April 05, 2001 8:57 AM Subject: Re: Servlet

Re: Servlet Chaining...

2001-04-05 Thread Bo Xu
Gal Oberson wrote: [Gal Oberson] I think HttpServletRequest inherits getRequestDispatcher(..) from ServletRequest class and does implement it. [Gal Oberson] You can also get the RequestDispatcher object from ServletContext Yes, you're right, but it's not what I

RE: Servlet Chaining...

2001-04-05 Thread Gaël Oberson
no no no no no no... you all have good ideas, but all these ideas will not work for my problem. The second servlet, wich must process XML - HTML, is Cocoon (xml.apache.org/cocoon), and I have no ideas about the parameters Cocoon Can take!! Cocoon is normally designed to process "static" XML +

Servlet Chaining...

2001-04-04 Thread Gaël Oberson
Hello I try to use Servlet Chaining with Tomcat. Can I do that with a tag in the web.xml file (with servlet-mapping for example), or must I modify my Request parameters?? does anyone know how to do that??? I have a Servlet that generates an complete and valid XML file from a database

Re: Servlet Chaining...

2001-04-04 Thread Scott Walter
o I try to use Servlet Chaining with Tomcat. Can I do that with a tag in the web.xml file (with servlet-mapping for example), or must I modify my Request parameters?? does anyone know how to do that??? I have a Servlet that generates an complete and valid XML file from a database, and

RE: Servlet Chaining...

2001-04-04 Thread Gael Oberson
);), and with the forward() method, the XML data is not sent.. How does it work?? -Message d'origine- De : Scott Walter [mailto:[EMAIL PROTECTED]] Envoye : mercredi, 4. avril 2001 19:33 A : [EMAIL PROTECTED] Objet : Re: Servlet Chaining... Could you use a request dispatcher to forward

Re: Servlet Chaining...

2001-04-04 Thread Pae Choi
Look at the "web.xml" and its DTD. Pae -Original Message- From: Gael Oberson [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Wednesday, April 04, 2001 10:47 AM Subject: RE: Servlet Chaining... No, it doesn't work, because the HttpServletRequest

Servlet chaining in Tomcat

2000-11-22 Thread Rama Venkata Kunapuli
Folks: I am trying to chain servlets so output of one is directed to next servlet. Lacking information, I have tried modifying web.xml and made the following entries -- ofcourse, it didn't work! servlet servlet-nameServletChain/servlet-name

Re: Servlet chaining in Tomcat

2000-11-22 Thread Craig R. McClanahan
to make this work ? Servlet chaining is not supported by Tomcat, and is quite unlikely to ever be supported. It is not in the servlet spec, so you will find that many servlet containers don't support it, and some may support it in different ways. As a programming technique, servlet chaining