[appengine-java] Re: Could not deploy my App in Google App Engine!

2010-02-11 Thread Brian
Wild guess, but a ' in a path can't help things

On Feb 11, 8:32 am, Babgali babuvi...@gmail.com wrote:
 I am very new to GWT world! I am getting below exception when I am
 trying to deploy in Google App Engine.
 Error:-
 An internal error occurred during: Deploying Babu'sFirstGWTApp to
 Google.
 Received IOException parsing the input stream for C:/GWTWorkspace/
 Babu'sFirstGWTApp/war\WEB-INF/web.xml

 However it's working locally!
 Can any one help?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Could not deploy my App in Google App Engine!

2010-02-11 Thread Larry Cable
but it works locally ...

I have recently started getting a similar error where upload/deploy
fails while parsing datastore-indexes.xml claims there is an error
with the .xsd in the toolkit .jar ...

On Feb 11, 1:37 pm, Brian bwa...@gmail.com wrote:
 Wild guess, but a ' in a path can't help things

 On Feb 11, 8:32 am, Babgali babuvi...@gmail.com wrote:



  I am very new to GWT world! I am getting below exception when I am
  trying to deploy in Google App Engine.
  Error:-
  An internal error occurred during: Deploying Babu'sFirstGWTApp to
  Google.
  Received IOException parsing the input stream for C:/GWTWorkspace/
  Babu'sFirstGWTApp/war\WEB-INF/web.xml

  However it's working locally!
  Can any one help?- Hide quoted text -

 - Show quoted text -

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Could not deploy my App in Google App Engine!

2010-02-11 Thread Babgali
Hi, I believe there was a problem in DOCTYPE,
I replaced
!DOCTYPE web-app
PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN
http://java.sun.com/dtd/web-app_2_3.dtd;

with the below one

web-app xmlns=http://java.sun.com/xml/ns/j2ee;
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;
version=2.4

now I am getting different error, which is listed below

Compiling module com.qwest.gwt.example.Babu_sFirstGWTApp
   Compiling 6 permutations
  Compiling permutation 0...
  Compiling permutation 1...
  Compiling permutation 2...
  Compiling permutation 3...
  Compiling permutation 4...
  Compiling permutation 5...
   Compile of permutations succeeded
Linking into C:\GWTWorkspace\Babu'sFirstGWTApp\war\babu_sfirstgwtapp.
   Link succeeded
   Compilation succeeded -- 92.727s
Creating staging directory
Scanning for jsp files.
Scanning files on local disk.
Initiating update.
java.net.ConnectException: Connection timed out: connect

Unable to update:
java.net.ConnectException: Connection timed out: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:
195)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
at java.net.Socket.connect(Socket.java:519)
at java.net.Socket.connect(Socket.java:469)
at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:382)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:509)
at sun.net.www.http.HttpClient.init(HttpClient.java:231)
at sun.net.www.http.HttpClient.New(HttpClient.java:304)
at sun.net.www.http.HttpClient.New(HttpClient.java:316)
at
sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:
817)
at
sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:
769)
at
sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:
694)
at
sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:
861)
at
com.google.appengine.tools.admin.ServerConnection.connect(ServerConnection.java:
333)
at
com.google.appengine.tools.admin.ServerConnection.send(ServerConnection.java:
127)
at
com.google.appengine.tools.admin.ServerConnection.post(ServerConnection.java:
81)
at
com.google.appengine.tools.admin.AppVersionUpload.send(AppVersionUpload.java:
522)
at
com.google.appengine.tools.admin.AppVersionUpload.beginTransaction(AppVersionUpload.java:
339)
at
com.google.appengine.tools.admin.AppVersionUpload.doUpload(AppVersionUpload.java:
111)
at
com.google.appengine.tools.admin.AppAdminImpl.update(AppAdminImpl.java:
56)
at
com.google.appengine.eclipse.core.proxy.AppEngineBridgeImpl.deploy(AppEngineBridgeImpl.java:
271)
at
com.google.appengine.eclipse.core.deploy.DeployProjectJob.runInWorkspace(DeployProjectJob.java:
148)
at
org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:
38)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)

any Idea about this exception



On Feb 12, 3:01 am, Larry Cable larry.ca...@gmail.com wrote:
 but it works locally ...

 I have recently started getting a similar error where upload/deploy
 fails while parsing datastore-indexes.xml claims there is an error
 with the .xsd in the toolkit .jar ...

 On Feb 11, 1:37 pm, Brian bwa...@gmail.com wrote:



  Wild guess, but a ' in a path can't help things

  On Feb 11, 8:32 am, Babgali babuvi...@gmail.com wrote:

   I am very new to GWT world! I am getting below exception when I am
   trying to deploy in Google App Engine.
   Error:-
   An internal error occurred during: Deploying Babu'sFirstGWTApp to
   Google.
   Received IOException parsing the input stream for C:/GWTWorkspace/
   Babu'sFirstGWTApp/war\WEB-INF/web.xml

   However it's working locally!
   Can any one help?- Hide quoted text -

  - Show quoted text -- Hide quoted text -

 - Show quoted text -

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.