Re: Hosting issue

2012-01-30 Thread Alan Chaney
When I go and look at the URL you provided, I find an Apache server with 
the project deployed in it. Why did you say that you were using tomcat?


I found:

Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 DAV/2 
FrontPage/5.0.2.2635 mod_bwlimited/1.4 mod_auth_passthrough/2.1 
mod_perl/2.0.5 Perl/v5.8.8 Server at www.yellowlemon.in Port 80


in the 404.

In fact, the URL to access your web app appears to be:

http://www.yellowlemon.in/prism/PrismV1.html

and there appears to be no RpcTesting.html there.

I suggest that you study the GWT deployment docs and the tomcat docs - 
you don't appear to actually be running tomcat.


HTH

Alan


On 1/28/2012 12:53 AM, Nitheesh Chandran wrote:

Hello Alen. It seems like you have got what the issue is . Yes you are
right . I tried changing the remote service servlet path. But it did
not help me. For getting a detailed view i will give some more data




Here is the web.xml file








?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








   here is the gwt.xml file




?xml version=1.0 encoding=UTF-8?
module rename-to='rpctesting'
   !-- Inherit the core Web Toolkit stuff.--
   inherits name='com.google.gwt.user.User'/




   !-- Inherit the default GWT style sheet.  You can change   --
   !-- the theme of your GWT application by uncommenting  --
   !-- any one of the following lines.--
   inherits name='com.google.gwt.user.theme.clean.Clean'/
   !--inherits name='com.google.gwt.user.theme.standard.Standard'/
--
   !--inherits name='com.google.gwt.user.theme.chrome.Chrome'/  --
   !--inherits name='com.google.gwt.user.theme.dark.Dark'/   --




   !-- Other module inherits  --




   !-- Specify the app entry point class. --
   entry-point class='rp.client.Rpctesting'/




   !-- Specify the paths for translatable code--
   source path='client'/
   source path='shared'/




/module




here is the GreetingService.java  the synchronous file




   package rp.client;




import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;




/**
  * The client side stub for the RPC service.
  */
@RemoteServiceRelativePath(greet)
public interface GreetingService extends RemoteService {
String greetServer(String name) throws IllegalArgumentException;
}












No other changes in the program given by the GWT web application
starter project




I have deployed the files inside the WAR folder to the prism folder of
my server




so that i can access my app by typing www.yellowlemon.in/prism/Rpctesting.html




But the server fails to map my servlet.




can you tell me ,where i have to change ?








url-pattern/rpctesting/greet/url-pattern




You said The url-pattern must be context-relative . I did not get
this line




i think the problem happening on the above line . It works fine on
local machine but not on server




Yes as you said rpctesting is the module name . and in the server log
i am getting error like




  File does not
exist: /home/spectrum/public_html/prism/rpctesting/greet, referer:
http://yellowlemon.in/prism/Rpctesting.html


Hope you can help me on this.



On Jan 27, 7:30 pm, Alan Chaneya...@mechnicality.com  wrote:

The problem is nothing to do with GWT, or really, Tomcat for that
matter. Somewhere in your code you are making a URL request which has
the path:

/home/spectrum/public_html/prism/rpctesting/greet

which looks an extremely unlikely URL to me.

The things to check are:

@RemoteServiceRelativePath in your RPC

I suspect that it probably looks like:

@RemoteServiceRelativePath(greet)

and then the web.xml file for the server should look something like:

!-- servlets --
servlet
  servlet-namegreetServlet/servlet-name
 !-- this should be the class of the server-side implementation of 
your 'Greet Service' which should
 extend RemoteServiceServlet--
  servlet-classcom.mycompany.myproject.server.rpc.GreetServiceImpl/servlet 
-class
/servlet

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

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

Where your GWT project is XXX.

The url-pattern must be 

Re: Hosting issue

2012-01-29 Thread Sudhakar Fernando
Hi Nitheesh,

my assumptions of the problem is as below.


   1. you have created a GWT project with RPC and connect database from
   MySQL.
   2. if you deploy the GWT War files in Tomcat which is installed in
   your local machine,it is working properly.
   3. if you deploy in tomcat which is installed in any of the shared
   webhosting server or VPS,the RPC is not working.

Right?
On Thu, Jan 26, 2012 at 1:23 PM, Nitheesh Chandran 
nithe...@dotentreprise.com wrote:

 Hello ,

 Please reply on the following issue , fed up with this one

 I just tried to deploy a starter project in the remote server. I am
 getting the following error in the server log

 [Tue Jan 24 04:26:47 2012] [error] [client 14.140.69.18] File does not
 exist: /home/spectrum/public_html/prism/rpctesting/greet, referer:
 http://yellowlemon.in/prism/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://yellowlemon.in/prism/Rpctesting.html

 Does anyone know or has anyone successfully hosted a GWT RPC
 application on a server ?? please reply

 --
 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.




-- 
Regards,

Sudhakar

-- 
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: Hosting issue

2012-01-29 Thread Nitheesh Chandran
Yes..You are right

On Jan 27, 2:07 pm, Sudhakar Fernando sudhakar.ferna...@gmail.com
wrote:
 Hi Nitheesh,

 my assumptions of the problem is as below.

    1. you have created a GWT project with RPC and connect database from
    MySQL.
    2. if you deploy the GWT War files in Tomcat which is installed in
    your local machine,it is working properly.
    3. if you deploy in tomcat which is installed in any of the shared
    webhosting server or VPS,the RPC is not working.

 Right?
 On Thu, Jan 26, 2012 at 1:23 PM, Nitheesh Chandran 









 nithe...@dotentreprise.com wrote:
  Hello ,

  Please reply on the following issue , fed up with this one

  I just tried to deploy a starter project in the remote server. I am
  getting the following error in the server log

  [Tue Jan 24 04:26:47 2012] [error] [client 14.140.69.18] File does not
  exist: /home/spectrum/public_html/prism/rpctesting/greet, referer:
 http://yellowlemon.in/prism/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://yellowlemon.in/prism/Rpctesting.html

  Does anyone know or has anyone successfully hosted a GWT RPC
  application on a server ?? please reply

  --
  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.

 --
 Regards,

 Sudhakar

-- 
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: Hosting issue

2012-01-28 Thread Nitheesh Chandran
Hello Alen. It seems like you have got what the issue is . Yes you are
right . I tried changing the remote service servlet path. But it did
not help me. For getting a detailed view i will give some more data




Here is the web.xml file








?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








  here is the gwt.xml file




?xml version=1.0 encoding=UTF-8?
module rename-to='rpctesting'
  !-- Inherit the core Web Toolkit stuff.                        --
  inherits name='com.google.gwt.user.User'/




  !-- Inherit the default GWT style sheet.  You can change       --
  !-- the theme of your GWT application by uncommenting          --
  !-- any one of the following lines.                            --
  inherits name='com.google.gwt.user.theme.clean.Clean'/
  !-- inherits name='com.google.gwt.user.theme.standard.Standard'/
--
  !-- inherits name='com.google.gwt.user.theme.chrome.Chrome'/ --
  !-- inherits name='com.google.gwt.user.theme.dark.Dark'/     --




  !-- Other module inherits                                      --




  !-- Specify the app entry point class.                         --
  entry-point class='rp.client.Rpctesting'/




  !-- Specify the paths for translatable code                    --
  source path='client'/
  source path='shared'/




/module




here is the GreetingService.java  the synchronous file




  package rp.client;




import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;




/**
 * The client side stub for the RPC service.
 */
@RemoteServiceRelativePath(greet)
public interface GreetingService extends RemoteService {
String greetServer(String name) throws IllegalArgumentException;
}












No other changes in the program given by the GWT web application
starter project




I have deployed the files inside the WAR folder to the prism folder of
my server




so that i can access my app by typing www.yellowlemon.in/prism/Rpctesting.html




But the server fails to map my servlet.




can you tell me ,where i have to change ?








url-pattern/rpctesting/greet/url-pattern




You said The url-pattern must be context-relative . I did not get
this line




i think the problem happening on the above line . It works fine on
local machine but not on server




Yes as you said rpctesting is the module name . and in the server log
i am getting error like




 File does not
exist: /home/spectrum/public_html/prism/rpctesting/greet, referer:
http://yellowlemon.in/prism/Rpctesting.html


Hope you can help me on this.



On Jan 27, 7:30 pm, Alan Chaney a...@mechnicality.com wrote:
 The problem is nothing to do with GWT, or really, Tomcat for that
 matter. Somewhere in your code you are making a URL request which has
 the path:

 /home/spectrum/public_html/prism/rpctesting/greet

 which looks an extremely unlikely URL to me.

 The things to check are:

 @RemoteServiceRelativePath in your RPC

 I suspect that it probably looks like:

 @RemoteServiceRelativePath(greet)

 and then the web.xml file for the server should look something like:

    !-- servlets --
    servlet
      servlet-namegreetServlet/servlet-name
         !-- this should be the class of the server-side implementation of 
 your 'Greet Service' which should
                 extend RemoteServiceServlet--
      
 servlet-classcom.mycompany.myproject.server.rpc.GreetServiceImpl/servlet 
 -class
    /servlet

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

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

 Where your GWT project is XXX.

 The url-pattern must be context-relative. What is often confusing about this 
 is that the default Jetty implementation in the development
 mode has a context of /, but when you deploy it to tomcat by default the 
 context becomes the name of the war, which is often also
 the project name.

 Consequently the actual request looks something 
 linkwww.myserver.com/XXX/XXX/greet. This is because the context relative path 
 for the JS files which make up your project are, by default, in a folder with 
 the same name as the gwt.xml module, or its 'shorthand' module name. Since 
 its common to make the module name the same as the project, the war ends up 
 with the same name as the module, and the deployed context is the project 
 name. Confused? Maybe this 

Re: Hosting issue

2012-01-27 Thread Alan Chaney
The problem is nothing to do with GWT, or really, Tomcat for that 
matter. Somewhere in your code you are making a URL request which has 
the path:


/home/spectrum/public_html/prism/rpctesting/greet

which looks an extremely unlikely URL to me.

The things to check are:

@RemoteServiceRelativePath in your RPC

I suspect that it probably looks like:

@RemoteServiceRelativePath(greet)

and then the web.xml file for the server should look something like:

  !-- servlets --
  servlet
servlet-namegreetServlet/servlet-name
!-- this should be the class of the server-side implementation of your 
'Greet Service' which should
extend RemoteServiceServlet--

servlet-classcom.mycompany.myproject.server.rpc.GreetServiceImpl/servlet-class
  /servlet

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

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

Where your GWT project is XXX.

The url-pattern must be context-relative. What is often confusing about this is 
that the default Jetty implementation in the development
mode has a context of /, but when you deploy it to tomcat by default the 
context becomes the name of the war, which is often also
the project name.

Consequently the actual request looks something link 
www.myserver.com/XXX/XXX/greet. This is because the context relative path for 
the JS files which make up your project are, by default, in a folder with the 
same name as the gwt.xml module, or its 'shorthand' module name. Since its 
common to make the module name the same as the project, the war ends up with 
the same name as the module, and the deployed context is the project name. 
Confused? Maybe this will explain it more clearly:

Eclipse project: Myproject
GWT module  com.mycompany.myproject.Mymodule
module contains module rename-to='mymodule'

Your eclipse project structure will haveworkspace/Myproject/war  (and src, 
test, etc)

in /Myproject/war there will be a folder called mymodule which will contain all 
your gwt compiler output (JS files) - this folder is
generated automatically by GWT and if you change the module name ('rename-to') 
it will generate a new folder with the new name.

If you deploy this to tomcat, you cannot use the Export--Web-War option 
because eclipse does not recognize a GWT project as a WebApplication project by 
default, but lets imagine that you call the war file mywar.war.


consequently any RPC requests will be:

http://www.mycompany.com/mywar/mymodule/greet
tomcat handles this |gwt handles this

I suggest that you read through what I've written above very carefully and 
compare it to your project and then trace the actual calls with Firebug or 
Wireshark and see what's happening. There are lots of opportunities for typos 
and misunderstandings.

If this does not help the next thing to do is to put some logging or debugging 
in your project and try and work out where in the code the problem is. That's 
not really an issue for this list, because only you can debug your program.


As for your earlier question does anyone actually host gwt files with tomcat, 
I've done maybe 10 or 15 separate installations of tomcat6 and tomcat7 hosting war files 
generated from GWT and they work just fine.



HTH

Alan


On 1/26/2012 8:58 PM, Nitheesh Chandran wrote:

Ok ,

Its just a web application starter project. I ran the project in the
development mode and in the local apache tomcat server . Its working
there. The same thing i have deployed to a remote server and i am
facing the issue.

  Our version of GWT is : GWT 2.3.0

  server OS : cent os 5.0

  The servlet container in the server is : Tomcat

  development platform is : windows 7

  I have deployed the WAR files to the server by using normal FTP
first. It was not working .So  we have tried by converting war to .war
file and deployed in the server. That is also not working now. The
same issue i am facing.


/home/spectrum/public_html/prism/rpctesting/greet , greet is the
remote servlet path to my servlet. The server is not mapping to this
servlet ,that is  why it is not working.But it works fine in local
machine and even in the app engine also.




On Jan 26, 6:24 pm, Alan Chaneya...@mechnicality.com  wrote:

On 1/26/2012 1:23 AM, Nitheesh Chandran wrote:  Hello ,


Please reply on the following issue , fed up with this one

You don't actually give very much information:

- version of GWT
- server OS
- are you running Jetty or Tomcat?
- development platform?

How are you deploying? Copying files to remote server? Bundling as a war?




I just tried to deploy a starter project in the remote server. I am
getting the following error in the server log
[Tue Jan 24 04:26:47 2012] [error] [client 14.140.69.18] File does not
exist: /home/spectrum/public_html/prism/rpctesting/greet, referer:
http://yellowlemon.in/prism/Rpctesting.html
[Tue Jan 24 04:26:47 2012] 

Hosting issue

2012-01-26 Thread Nitheesh Chandran
Hello ,

Please reply on the following issue , fed up with this one

I just tried to deploy a starter project in the remote server. I am
getting the following error in the server log

[Tue Jan 24 04:26:47 2012] [error] [client 14.140.69.18] File does not
exist: /home/spectrum/public_html/prism/rpctesting/greet, referer:
http://yellowlemon.in/prism/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://yellowlemon.in/prism/Rpctesting.html

Does anyone know or has anyone successfully hosted a GWT RPC
application on a server ?? please reply

-- 
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-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.



Re: Hosting issue

2012-01-26 Thread Alan Chaney

On 1/26/2012 1:23 AM, Nitheesh Chandran wrote:

Hello ,

Please reply on the following issue , fed up with this one

You don't actually give very much information:

- version of GWT
- server OS
- are you running Jetty or Tomcat?
- development platform?

How are you deploying? Copying files to remote server? Bundling as a war?



I just tried to deploy a starter project in the remote server. I am
getting the following error in the server log

[Tue Jan 24 04:26:47 2012] [error] [client 14.140.69.18] File does not
exist: /home/spectrum/public_html/prism/rpctesting/greet, referer:
http://yellowlemon.in/prism/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:

Where is the file

/home/spectrum/public_html/prism/rpctesting/greet ?

On your local machine? On the server? Why are you trying to read a file from 
the filing system?






http://yellowlemon.in/prism/Rpctesting.html




Does anyone know or has anyone successfully hosted a GWT RPC
application on a server ?? please reply



--
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: Hosting issue

2012-01-26 Thread Nitheesh Chandran
Ok ,

Its just a web application starter project. I ran the project in the
development mode and in the local apache tomcat server . Its working
there. The same thing i have deployed to a remote server and i am
facing the issue.

 Our version of GWT is : GWT 2.3.0

 server OS : cent os 5.0

 The servlet container in the server is : Tomcat

 development platform is : windows 7

 I have deployed the WAR files to the server by using normal FTP
first. It was not working .So  we have tried by converting war to .war
file and deployed in the server. That is also not working now. The
same issue i am facing.


/home/spectrum/public_html/prism/rpctesting/greet , greet is the
remote servlet path to my servlet. The server is not mapping to this
servlet ,that is  why it is not working.But it works fine in local
machine and even in the app engine also.




On Jan 26, 6:24 pm, Alan Chaney a...@mechnicality.com wrote:
 On 1/26/2012 1:23 AM, Nitheesh Chandran wrote: Hello ,

  Please reply on the following issue , fed up with this one

 You don't actually give very much information:

 - version of GWT
 - server OS
 - are you running Jetty or Tomcat?
 - development platform?

 How are you deploying? Copying files to remote server? Bundling as a war?



  I just tried to deploy a starter project in the remote server. I am
  getting the following error in the server log

  [Tue Jan 24 04:26:47 2012] [error] [client 14.140.69.18] File does not
  exist: /home/spectrum/public_html/prism/rpctesting/greet, referer:
 http://yellowlemon.in/prism/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:

 Where is the file

 /home/spectrum/public_html/prism/rpctesting/greet ?

 On your local machine? On the server? Why are you trying to read a file from 
 the filing system?







 http://yellowlemon.in/prism/Rpctesting.html
  Does anyone know or has anyone successfully hosted a GWT RPC
  application on a server ?? please reply

-- 
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 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


Hosting issue

2010-10-13 Thread Deepak Singh
Hi,

I developed one application using gwt 2.1m3. When i deploy the war file to
my local tomcat 5.5, it works fine. But i went for the hosting services  for
the same war file to hosting server tomcat 5.5, it is not working. The issue
i found is the rpc call not getting invoked on hosting server.
On local i see, http://localhost:8080/war/*.* as the URL for RPC call while
on hosting server it shows http://www.**.com/*.*
I hope somebody will have the issue faced.

-- 
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-tool...@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: Hosting issue

2010-10-13 Thread gopal bhalala
Hi

i will try my best to solved this problem after UI issue...

Best Regards  Thanking you,
Gopal Dhanjibhai Bhalala


On Thu, Oct 14, 2010 at 10:25 AM, Deepak Singh deepaksingh...@gmail.comwrote:

 Hi,

 I developed one application using gwt 2.1m3. When i deploy the war file to
 my local tomcat 5.5, it works fine. But i went for the hosting services  for
 the same war file to hosting server tomcat 5.5, it is not working. The issue
 i found is the rpc call not getting invoked on hosting server.
 On local i see, http://localhost:8080/war/*.* as the URL for RPC call
 while on hosting server it shows http://www.**.com/*.*
 I hope somebody will have the issue faced.

  --
 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-tool...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
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-tool...@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.