Re: Turning off jsessionid= in URL rewriting

2003-07-16 Thread John Loring
not controlled by struts. If you use sessions in your application, shutting off the jsessionid url rewriting will cause problems running on browsers with cookies disabled. --John Loring Paul Legato wrote: Hi, I have a client who is requiring that I turn off all the ;jsessionid=abc123etc. session

Re: how to redirect url without losing attached request attributes

2003-07-16 Thread John Loring
No, you should forward instead of redirecting. You could consider pulling the needed info out of the old request parameters and manually concatenating it onto the redirect url as query parameters, but there still may be request attributes to deal with. Forward if at all possible. --John

Re: Building Web Service Adapter for Struts app.

2003-01-13 Thread John Loring
Greg, If you are using xerces to serialize the DOM, you can use the OutputFormat class to add the DOCTYPE declaration, ie: OutputFormat format = new OutputFormat(document); // Document document format.setDoctype(publicId, systemId); // String