Re: GWT HOSTING ISSUE

2012-01-26 Thread Thomas Broyer
I don't know what you mean by GWT default WAR, but if you mean the folder 
your pass as -war to the GWT compiler and containing the WEB-INF/web.xml, 
then no you don't have to pack it as a war, you can simply copy it to your 
Tomcat's webapps folder.

I'd suggest asking Tomcat-related questions to a Tomcat forum, and more 
general servlet-related questions to a java forum; or on StackOverflow or 
ServerFault, as these have really nothing to do with GWT.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/DC35Z_Bs9qMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT HOSTING ISSUE

2012-01-25 Thread Nitheesh Chandran
I tried to host a sample default GWT application which uses RPC . I
did not do any changes in the program because GWT default program uses
RPC service for getting a reply from the server. This program runs
correctly in the local Apache server. When i put the same program in
the external server ,it does not work.

this is the deployment descriptor file : web.xml

?xml version=1.0 encoding=UTF-8?
!DOCTYPE web-app
PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN
http://java.sun.com/dtd/web-app_2_3.dtd;

web-app

  !-- Servlets --
  servlet
servlet-namegreetServlet/servlet-name
servlet-classrp.server.GreetingServiceImpl/servlet-class
  /servlet

  servlet-mapping
servlet-namegreetServlet/servlet-name
url-pattern/rpctesting/greet/url-pattern
  /servlet-mapping

  !-- Default page to serve --
  welcome-file-list
welcome-fileRpctesting.html/welcome-file
  /welcome-file-list

/web-app



The error i am getting now is

[Tue Jan 24 04:26:47 2012] [error] [client 14.140.69.18] File does not
exist: /home/spectrum/public_html/program/rpctesting/greet, referer:
http://myserver.in/program/Rpctesting.html
[Tue Jan 24 04:26:47 2012] [error] [client 14.140.69.18] File does not
exist: /home/spectrum/public_html/404.shtml, referer: http://
myserver .in/program/Rpctesting.html
[Tue Jan 24 04:31:23 2012] [error] [client 91.121.183.61] File does
not exist: /usr/local/apache/htdocs/aggregator
[Tue Jan 24 04:31:24 2012] [error] [client 91.121.183.61] File does
not exist: /usr/local/apache/htdocs/aggregator




can anyone help me on this issue


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT HOSTING ISSUE

2012-01-25 Thread Thomas Broyer
These logs are from Apache HTTPD, not Apache Tomcat. So either you're not 
using the appropriate port (Tomcat generally listens on 8080), or you 
forgot to configure (or misconfigured) mod_proxy to relay requests from 
HTTPD to Tomcat.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/FvuHz3XwTOcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT HOSTING ISSUE

2012-01-25 Thread Nitheesh Chandran

So this has to be configured on the server right ? No need to
configure anything on the client side



On Jan 25, 4:18 pm, Thomas Broyer t.bro...@gmail.com wrote:
 These logs are from Apache HTTPD, not Apache Tomcat. So either you're not
 using the appropriate port (Tomcat generally listens on 8080), or you
 forgot to configure (or misconfigured) mod_proxy to relay requests from
 HTTPD to Tomcat.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT HOSTING ISSUE

2012-01-25 Thread Thomas Broyer
That's right, nothing to do with GWT, only with the deployment of HTTPD / 
Tomcat, and then your WAR within Tomcat.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/iOapcsZt9hQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT HOSTING ISSUE

2012-01-25 Thread Nitheesh Chandran
is it necessary to convert GWT default WAR to .war file for deploying
in the tomcat server ??

On Jan 25, 6:49 pm, Thomas Broyer t.bro...@gmail.com wrote:
 That's right, nothing to do with GWT, only with the deployment of HTTPD /
 Tomcat, and then your WAR within Tomcat.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



[gwt-contrib] GWT HOSTING ISSUE

2012-01-24 Thread Nitheesh Chandran
We need a help. Has anyone hosted GWT application to an external web
server ? Remote procedure call is not working on the server. The same
working fine with local Apache server. Just for checking i put sample
GWT default application on the server. Its not working there

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors