Re: Generate a pdf with multiple page.

2012-10-11 Thread Miguel Torres
Thanks Theodore, Of course I want the example that you mentioned. I could do something similar with BIRT. On 09/10/2012, at 16:23, Theodore Petrosky tedp...@yahoo.com wrote: 1st watch Kieran K's fantastic example of using JasperReports entitled Integrating JasperReports WOWDC 2010. The

Cookie issue

2012-10-11 Thread Gino Pacitti
Hi All I have a site that has cookies turned on : this.setStoresIDsInURLs(false); this.setStoresIDsInCookies(true); And I recently updated some of the static pages which link to the shopping side to have in social media like buttons etc.. These leave cookies for

Re: Cookie issue

2012-10-11 Thread Amedeo Mantica
Error message ? Only trace ? Sent from my iPhone On 12/ott/2012, at 01:06, Gino Pacitti ginok...@mac.com wrote: Hi All I have a site that has cookies turned on : this.setStoresIDsInURLs(false); this.setStoresIDsInCookies(true); And I recently updated some of the

Re: Cookie issue

2012-10-11 Thread Gino Pacitti
Caused by: java.lang.IllegalStateException: CookieParser: Expected a ; or a , instead of http:/www.mydomain.com/page1.html:2,http://www . mydomain.com/page1.html:1}; custid=3121 custid is a custom cookie I use but has never caused an issue Gino On 12 Oct 2012, at 00:29, Amedeo Mantica

Re: Cookie issue

2012-10-11 Thread Johnny Miller
Have you tried changing the name of the cookie? On Oct 11, 2012, at 1:32 PM, Gino Pacitti ginok...@mac.com wrote: Caused by: java.lang.IllegalStateException: CookieParser: Expected a ; or a , instead of http:/www.mydomain.com/page1.html:2,http://www. mydomain.com/page1.html:1}; custid=3121

Re: Cookie issue

2012-10-11 Thread Gino Pacitti
The value which is causing the exception is being sent via a cookie that a social media Javascript code block is setting to track pages... The name of the cookie is not open to be changed but is named: _atshc path: contents: http:/www.mydomain.com/page1.html:2,http://www.

Re: Cookie issue

2012-10-11 Thread Johnny Miller
Just a guess but maybe you can try overriding domainForIDCookies in your session class. And then hopefully it will ignore the cookies that are being placed on / On Oct 11, 2012, at 1:42 PM, Gino Pacitti ginok...@mac.com wrote: The value which is causing the exception is being sent via a

Re: Cookie issue

2012-10-11 Thread Gino Pacitti
Weird but overriding in Application class seemed to have handled it? public NSMutableDictionary handleMalformedCookieString(RuntimeException anException,String cookieString,NSMutableDictionary aReturnDict){ return aReturnDict; } Gino On 12 Oct 2012, at 01:01, Johnny