Re: generated image not showing up in IE7

2010-08-31 Thread ruksen inanir
Hi, Here is the image tag at the generated page's source http://localhost:8089/rcd/reports/charttestpage.chart:chart/200/150> "/> This line means, a chart event with parameters of width=200, and height=150 is to be fired. As a result of this event, onChart() (which is the event handler for Chart

Re: generated image not showing up in IE7

2010-08-27 Thread Thiago H. de Paula Figueiredo
On Fri, 27 Aug 2010 09:41:21 -0300, ruksen inanir wrote: Hi, Isn't the onActivate() method's return type void? Absolutetly no. See http://tapestry.apache.org/tapestry5.1/guide/pagenav.html. Should you get the outputStream and out the response to the stream in the onActivate() ? Y

Re: generated image not showing up in IE7

2010-08-27 Thread ruksen inanir
Hi, Isn't the onActivate() method's return type void? Should you get the outputStream and out the response to the stream in the onActivate() ? How is the response handled which onChart() method returns at the example http://wiki.apache.org/tapestry/Tapestry5HowToCreateGenericGraphComponent ?

Re: generated image not showing up in IE7

2010-08-27 Thread Thiago H. de Paula Figueiredo
On Fri, 27 Aug 2010 06:02:28 -0300, ruksen inanir wrote: As you say, should i return the response at the onActivate() ? You don't need to, but you can. That's what I usually do. -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and

RE: generated image not showing up in IE7

2010-08-27 Thread ruksen inanir
the onActivate() ? I use Tapestry tapestry version 5.1.0.5. -Original Message- From: Thiago H. de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: Wednesday, August 18, 2010 6:09 PM To: Tapestry users Subject: Re: generated image not showing up in IE7 On Wed, 18 Aug 2010 11:53:57 -0300

Re: generated image not showing up in IE7

2010-08-18 Thread Josh Canfield
> The image does display > on FireFox 3.0.19, but not on IE 7.0.5730.11. Strange that it's browser specific. Is the URL to the image abnormally long? Is the image response possibly getting GZip'd? If you save the image file to your desktop from firefox can you open that file from IE? -- Josh

Re: generated image not showing up in IE7

2010-08-18 Thread Thiago H. de Paula Figueiredo
On Wed, 18 Aug 2010 11:53:57 -0300, Steve Duran wrote: Hello, Hi! The original webapp worked by referencing the URL of the servlet that generated the image in the "src" attribute of the tag, which is similar to the way the Tapestry example does it. The difference is that when I view t

generated image not showing up in IE7

2010-08-18 Thread Steve Duran
Hello, I'm in the process of refactoring a web app to use Tapestry. One of the requirements is to display a generated image produced by JFreeChart. I followed the example of the link shown below. The image does display on FireFox 3.0.19, but not on IE 7.0.5730.11. The original webapp