Re: carriage returns

2005-06-14 Thread Ed Griebel
The problem was that the receiving system would choke when the XML responses were too long, so gzip wouldn't have helped it. I'm not sure what system/app they were using as it was with an external service provider, but it sounds pretty broken regardless. Probably some kind of fixed buffer overrun,

Re: carriage returns

2005-06-14 Thread draegoon Z
Thanks Jason, that is more like what I was looking for. From: Jason Lea <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: carriage returns Date: Wed, 15 Jun 2005 10:17:12 +1200 You can get Tomcat-5's JSP compiler to r

Re: carriage returns

2005-06-14 Thread draegoon Z
Thanks Jason, that is more like what I was looking for. From: Jason Lea <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: carriage returns Date: Wed, 15 Jun 2005 10:17:12 +1200 You can get Tomcat-5's JSP compiler to r

RE: carriage returns

2005-06-14 Thread Durham David R Jr Ctr 805 CSPTS/SCE
> I'm finally sick of all the unwanted carriage returns created by > tiles and struts tags. > I searched the archives and found this trick: > > > > > > but it doesn't fix everything, especially comments. > > Has anyone else gotten sick of this and came up with a quick > and clean solution? W

Re: carriage returns

2005-06-14 Thread Jason Lea
You can get Tomcat-5's JSP compiler to remove some whitespace in conf/web.xml you can set trimSpaces to true. It will remove whitespace between tags. eg Would be reduced to but abc def would be abc def draegoon Z wrote: Hey guys, I'm finally sick of all the u

Re: carriage returns

2005-06-14 Thread Dave Newton
Ed Griebel wrote: We had a problem with XML having too many carriage returns and whitespace for a downstream system. Heck, XML has too much NON-whitespace, too ;) To solve the problem I wrote a simple javax.servlet.Filter instance that would get the response and strip out extraneous stuff us

Re: carriage returns

2005-06-14 Thread Ed Griebel
We had a problem with XML having too many carriage returns and whitespace for a downstream system. To solve the problem I wrote a simple javax.servlet.Filter instance that would get the response and strip out extraneous stuff using String.replaceAll() on the output from a HttpServletResponseWrapper

re: carriage returns

2005-06-14 Thread Leon Rosenberg
he Nachricht- > Von: Jason Sheldon [mailto:[EMAIL PROTECTED] > Gesendet: Dienstag, 14. Juni 2005 23:17 > An: Struts Users Mailing List > Cc: struts-user@jakarta.apache.org > Betreff: Re: carriage returns > > What are your concerns with unwanted carriage returns? > >

re: carriage returns

2005-06-14 Thread Leon Rosenberg
he Nachricht- > Von: Jason Sheldon [mailto:[EMAIL PROTECTED] > Gesendet: Dienstag, 14. Juni 2005 23:17 > An: Struts Users Mailing List > Cc: struts-user@jakarta.apache.org > Betreff: Re: carriage returns > > What are your concerns with unwanted carriage returns? > >

Re: carriage returns

2005-06-14 Thread Hubert Rabago
On 6/14/05, draegoon Z <[EMAIL PROTECTED]> wrote: > > I'm finally sick of all the unwanted carriage returns created by tiles and > struts tags. > I searched the archives and found this trick: > Just to clarify: If the trick you used worked on the CRs you see around the tags, that means the "unwa

Re: carriage returns

2005-06-14 Thread Jason Sheldon
What are your concerns with unwanted carriage returns? Do you think they are adding to the weight of the page? If you a using a server that support the 1.1 http spec(with compression), then the carriage returns apply a negible amount of weight to the page. Jason On 6/14/05, draegoon Z <[EMAIL P

Re: Carriage Returns in MessageResources.properties

2004-12-16 Thread Richard Reyes
will try them all thanks Catalin and Bill. On Thu, 16 Dec 2004 08:57:15 -0500, Bill Siggelkow <[EMAIL PROTECTED]> wrote: > Maybe try using a double slash (\\r\\n) ... > > Richard Reyes wrote: > > > Hello Guys, > > > > How can I include a carriage return inside a properties file. I tried > > \r\

Re: Carriage Returns in MessageResources.properties

2004-12-16 Thread Catalin Croitoru
Hi, try tu put in your application.properties for CARRIAGE RETURN (CR) and NEW LINE (NL) the unicode value: CR: \u000D NL: \u000A in my application.properties this is work for special characters Catta On Thu, 16 Dec 2004 13:49:10 +0800, Richard Reyes <[EMAIL PROTECTED]> wrote: > Hello Guys, >

Re: Carriage Returns in MessageResources.properties

2004-12-16 Thread Bill Siggelkow
Maybe try using a double slash (\\r\\n) ... Richard Reyes wrote: Hello Guys, How can I include a carriage return inside a properties file. I tried \r\n and it show as \r\n on the emails being sent. Thanks Richard - To unsubscribe,