ascii code 153 (tm) not displaying properly

2011-03-27 Thread Paul Stanton
Hi all, I'm having some character set issues in that I can't get ™ to display as ™ in my tapestry page. Here's my doctype and html declarations: "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://tapestry.apache.org/schema/tapestry_5_1_0.xsd"; xmlns:p="tapestry:parameter"> In the

Re: @InjectService problems

2011-03-27 Thread Cezary Biernacki
Hi, I am not sure what is wrong. Are you sure that CAdministrationManager instance is constructed by Tapestry-IOC? Maybe it is created outside Tapestry, e.g. using explicit 'new' keyword? BTW, Is there a reason to use 'eagerLoad()' on all that services? Best regards, Cezary On Sun, Mar 27, 201

Re: How to locate streamresponse of jasper in a page ?

2011-03-27 Thread ael
I have tried this in jsp but not in tapestry. path = application.getRealPath("/"); ouputStream = response.getOutputStream(); jasperPrint = JasperFillManager.fillReport(path + "reports/" + filename, parameter, con); This will generate a pdf report on reports folder in you

hi

2011-03-27 Thread Frank
zThey accept credit card transactions, bank transfers,and more. Just have a look at this web page : I am sure you will could save a lot of money! Best regards!

Re: GZIP: Tapestry or Apache

2011-03-27 Thread Massimo Lusetti
On Fri, Mar 25, 2011 at 7:25 PM, Howard Lewis Ship wrote: > Is anyone aware (translation: I'm too lazy to check) if Apache can > cache the GZIPed stream as well? Apache has a lot of module that let you achieve this quite easly... Cheers -- Massimo http://meridio.blogspot.com -

@InjectService problems

2011-03-27 Thread coriolisguy
Hi All, I am probably not doing this right. In my AppModule.java I have the following code binder.bind(IConfigurationManager.class,CConfigurationManager.class).withId("ConfigurationManager").eagerLoad(); binder.bind(IAdministrationManager.class,CAdministrationManager.class).withId("Admini

@InjectService problems

2011-03-27 Thread coriolisguy
Hi All, I am probably not doing this right. In my AppModule.java I have the following code binder.bind(IConfigurationManager.class,CConfigurationManager.class).withId("ConfigurationManager").eagerLoad(); binder.bind(IAdministrationManager.class,CAdministrationManager.class).withId("Admini

Re: tapestry-spring: injecting with multiple implementation.

2011-03-27 Thread cablepuff
Well its ugly but i have to get around it by manual loading the JNDI data source. private static DataSource getJndiDataSource() { DataSource dataSource = null; final String datasourceContext = "java:comp/env/jdbc/DS" try {