tags:

views:

300

answers:

1

Hi,

I am still fairly new to GWT and have hit a snag which makes no sense to me at all.

I have a package that I use called: mq.Authentication.IDL which contains a bunch of classes generated from an IDL file.

I have incuded the source path="Application.IDL"/ line in the module definition to make sure that the GWT knows about this package.

The GWT finds all of the other classes that it needs within this package, but complains that it can't find SessionData.java, and it is clearly there, code and all!

Am I doing something stupid as I have been looking at this for ages and are in the 'brain lock' phase when you hint for a missing semi-colon and can't find it!

Help!!!

A: 

Sorry forgot to add the SessionData file:

package mq.Authentication.IDL;

/** * mq/Authentication/IDL/SessionData.java . * Generated by the IDL-to-Java compiler (portable), version "3.2" * from Authentication.idl * Monday, 23 November 2009 09:23:43 o'clock GMT */

public final class SessionData implements org.omg.CORBA.portable.IDLEntity { public String user_name = null; public String real_name = null; public long time_created = (long)0; public long last_activity = (long)0;

public SessionData () { } // ctor

public SessionData (String _user_name, String _real_name, long _time_created, long _last_activity) { user_name = _user_name; real_name = _real_name; time_created = _time_created; last_activity = _last_activity; } // ctor

} // class SessionData

Please edit the question and add this data in there. Do not use an answer to extend the question.
Iker Jimenez