N ssss

Greenhorn
+ Follow
since Nov 22, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by N ssss

Hi,

We use Eclipse for development of a swing application. While development we run the application from Eclipse itself but when on production, the user gets a URL to access the same application. We use java Web-Start to load the swing application to the user's end.

Now I am facing a very awkward error. When I am running the application in Eclipse as an application it works fine but when I deploy the application on to the Tomcat web server it gives me a java.lang.IllegalArgumentException: input == null! while opening a form.

The war is generated using the ant build tool.

I placed log messages to the code to debug so that i could make out where this exception is coming from. I could find the place where the code, when deployed on the server throws the exception. The code looks good to me. Are there any other reasons to this exception? How can i fix this issue?

The exception occurs when a Model is set to the JTable, some thing like this:
JTable table=new JTable();
TreeViewModel treeViewModel = new TreeViewModel();
table.setModel(treeViewModel);

this same code works fine at other place.
13 years ago