Hi Rajeev,

> /jiql.jsp
> java.lang.NoClassDefFoundError: javax.net.SocketFactory is a
> restricted class. Please see the Google App Engine developer's guide

This error message tells you, that it's impossible to use the class
javax.net.SocketFactory inside GAE, because it is restricted. There's
a so-called white list of JDK classes you are allowed to use in GAE
applications, but among others direct use of sockets and file system
access is forbidden. Unless there's other means of communication than
sockets in JIQL, you probably can't use it at all. Maybe you should
also read more about datastore, because it might not make sense to use
JDBC to access it.

I hope this helps even if it is not what you'd like to hear.

Cheers, Remigius.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to