Re: java.net.InetAddress is a restricted class Issue

2010-04-26 Thread rudolf michael
disabled > GAE? > > --Sri > > > > On 25 April 2010 01:23, A.K wrote: > >> Hi, >> >> I am a GWT novice / newbie. I have written a GWT app that connects to >> MySQL. While I am trying to get DB connection. I have got the error in >> the subject "ja

Re: java.net.InetAddress is a restricted class Issue

2010-04-26 Thread Sripathi Krishnan
gt; the subject "java.net.InetAddress is a restricted class'. > > I tried to find solution for this issue. The only solution right now > is to disable the Google App Engine. A lot of people get alright after > they follow the suggested solution. For my case, I tried to disable by &g

java.net.InetAddress is a restricted class Issue

2010-04-26 Thread A.K
Hi, I am a GWT novice / newbie. I have written a GWT app that connects to MySQL. While I am trying to get DB connection. I have got the error in the subject "java.net.InetAddress is a restricted class'. I tried to find solution for this issue. The only solution right now is to disable

Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-18 Thread Muthukumaran Balan
; > > > > is that certain APIs and classes are white listed (and subsequently > > black > > > > > listed) within App Engine. > > > > > > List of white listed JRE classes: > > > >http://code.google.com/appengine/docs/java/jrewhitel

Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-18 Thread Sripathi Krishnan
; > > is that certain APIs and classes are white listed (and subsequently > black > > > > listed) within App Engine. > > > > > > List of white listed JRE classes: > > >http://code.google.com/appengine/docs/java/jrewhitelist.html > > > > >

Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-18 Thread Muthukumaran Balan
/appengine/docs/java/jrewhitelist.html > > > > App Engine Group:http://groups.google.com/group/google-appengine > > > > On Tue, Nov 17, 2009 at 4:01 AM, Muthukumaran Balan > >wrote: > > > > > Hi All, > > > > > I am getting " java.net

Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-18 Thread Sripathi Krishnan
google.com/appengine/docs/java/jrewhitelist.html > > > > App Engine Group:http://groups.google.com/group/google-appengine > > > > On Tue, Nov 17, 2009 at 4:01 AM, Muthukumaran Balan >wrote: > > > > > > > > > Hi All, > > > > >

Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-18 Thread Muthukumaran Balan
> classes:http://code.google.com/appengine/docs/java/jrewhitelist.html > > App Engine Group:http://groups.google.com/group/google-appengine > > On Tue, Nov 17, 2009 at 4:01 AM, Muthukumaran Balan wrote: > > > > > Hi All, > > > I am getting " java.net.InetAdd

Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-17 Thread Chris Ramsdale
://groups.google.com/group/google-appengine On Tue, Nov 17, 2009 at 4:01 AM, Muthukumaran Balan wrote: > Hi All, > > I am getting " java.net.InetAddress is a restricted class." error when > trying to get a Hibernate Session for MySQL DB as below. I seached the > internet f

GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-17 Thread Muthukumaran Balan
Hi All, I am getting " java.net.InetAddress is a restricted class." error when trying to get a Hibernate Session for MySQL DB as below. I seached the internet for help and couldn't find any such error. GWT Version - 1.7.1 AppEngine Version - 1.2.6 Anyone is facing the same

Re: java.net.InetAddress

2008-11-20 Thread jhulford
eone's registered an email server for the domain. On Nov 19, 11:25 pm, david_data_digga <[EMAIL PROTECTED]> wrote: > Is there any way to access the class java.net.InetAddress--or > something providing similar functionality--from the client side of a > GWT app? I know that ever

Re: java.net.InetAddress

2008-11-20 Thread Reinier Zwitserloot
You CAN make a browser go to another server, but there's no way to receive information from it. Its possible there's some hacky way to figure something out, but this is just doomed to failure, because email servers don't have to be webservers, and vice versa. For example, there are still loads of

Re: java.net.InetAddress

2008-11-19 Thread Ian Petersen
The same origin policy (SOP) prohibits all network traffic except traffic back to your own website so the kind of validation you're trying to do can only be done on the server. Ian --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

java.net.InetAddress

2008-11-19 Thread david_data_digga
Is there any way to access the class java.net.InetAddress--or something providing similar functionality--from the client side of a GWT app? I know that everything compiles to Javascript so I guess the question would be whether that imposes a constraint such that this is impossible. I'm t