i've created a rather simple Web application for demo purposes. It works perfectly fine when running it from netbeans (using tomcat). there is a search form and a search results display page. The search result display page uses AJAX with JQuery and it datatables plugin. a column in the datatable contains a dynamically generated image.

When i deployed it statically in tomcat applications works and no errors are thrown but the images are not created. the column displays the content of the image tags alt attribute.

How could I "debug" this issue? Is it a tomcat config problem?

EDIT:

I can render image by going to the render servlet directly i then get following message displayed instead of the image:

The image cannot be displayed because it contains errors

This is on Windows. The images are created from an existing library that does the work. This works perfectly fine when deploying the application from netbeans. Also note I'm not a tomcat expert.

ANSWER:

sry guys my bad. The Webapp is a database app supposedly independent of which database. however postgresql is the issue as certain method parameters of it's JBDC driver are case-sensitive (IMHO retarded) while in others like hsqldb upperCase is required. this caused the issue.

link|improve this question

79% accept rate
Have you copied the images into your webapp? They should've been ideally the part of the WAR file that you created before deploying – adarshr Jan 20 at 15:47
what do you see as <IMG src="?"/>when you load the page on browser? – Jigar Joshi Jan 20 at 15:49
they are created dynamically. Please also see edit – beginner_ Jan 20 at 15:49
Is the Tomcat install on a Linux machine? The default JVM install on Linux doesn't install fonts. I've had issues with images containing text not getting rendered on a Linux box due to not having any fonts installed. – Daniel Pryden Jan 20 at 15:52
So the plugin being used to render the images is not found? – AJG85 Jan 20 at 15:53
show 3 more comments
feedback

1 Answer

up vote 0 down vote accepted

sry guys my bad. The Webapp is a database app supposedly independent of which database. however postgresql is the issue as certain method parameters of it's JBDC driver are case-sensitive (IMHO retarded) while in others like hsqldb upperCase is required. this caused the issue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.