Re: Issues calling RPC with GWT 2.8 RC1

2016-08-30 Thread nishantarya4
Hi Thomas, Thanks for your suggestions. I finally fixed this issue. The issue was that I was adding all jackson mapper code inside bean objects which gwt does not like during response conversion in RPC. I removed that and extracted out to a new factory class used as generic code from every wher

Re: Issues calling RPC with GWT 2.8 RC1

2016-08-29 Thread Thomas Broyer
On Monday, August 29, 2016 at 4:59:08 AM UTC+2, nishan...@gmail.com wrote: > > I am using gwt-servlet-2.8 RC1 jar on server too. I get 500 Internal > Server Error in Throwable. […] Any suggestion would be of great help to me > to nail down this issue. > Have a look at your server logs and/or t

Re: Issues calling RPC with GWT 2.8 RC1

2016-08-28 Thread nishantarya4
I did not try Rc2 yet. Is this issue fixed in Rc2, if you know ? Thanks, Nishant On Thursday, August 25, 2016 at 6:06:51 PM UTC+7, Juan Pablo Gardella wrote: > > Did you try 2.8 rc2? Which error are you seeing? > > On Thu, 25 Aug 2016 at 07:16 > wrote: > >> Hi, >> >> From our application whenever

Re: Issues calling RPC with GWT 2.8 RC1

2016-08-28 Thread nishantarya4
I am using gwt-servlet-2.8 RC1 jar on server too. I get 500 Internal Server Error in Throwable. Also I have not tried Gwt 2.8 RC2, I just updated to Rc1 for now. Is this issue fixed in Rc2 ? Also I just discovered that issue goes away if I stop using gwt jackson library which I have started usin

Re: Issues calling RPC with GWT 2.8 RC1

2016-08-25 Thread Thomas Broyer
What Throwable do you get in onFailure? Did you update the gwt-servlet.jar on server-side too? And to answer your question, yes, there have been changes to RPC since 2.7; the protocol should be backwards-compatible but there have also been changes to CustomerFieldSerializers and objects, to the

Re: Issues calling RPC with GWT 2.8 RC1

2016-08-25 Thread Juan Pablo Gardella
Did you try 2.8 rc2? Which error are you seeing? On Thu, 25 Aug 2016 at 07:16 wrote: > Hi, > > From our application whenever we make RPC calls, we reach to our remote > service and when we return any object successfully back, we get back in > onFailure method of "AsyncCallback". The same code us

Issues calling RPC with GWT 2.8 RC1

2016-08-25 Thread nishantarya4
Hi, >From our application whenever we make RPC calls, we reach to our remote service and when we return any object successfully back, we get back in onFailure method of "AsyncCallback". The same code use to work with gwt 2.7 and we are trying to migrate our application from 2.7 to 2.8 RC1. Does

Re: 404 Error message The requested URL 'path' was not found on this server, when calling RPC

2014-07-21 Thread Anna Amat
Dear Robinson, I'm having exactly the same problem. App working on local server, mocahost, same error! How did you solved it? Thanks, Anna. Il giorno giovedì 7 marzo 2013 02:08:43 UTC+1, Robinson De la hoz ha scritto: > > I uploaded my gwt application on a new hosting with shared tomcat. My

404 Error message The requested URL 'path' was not found on this server, when calling RPC

2013-03-07 Thread Robinson De la hoz
I uploaded my gwt application on a new hosting with shared tomcat. My application calls a RPC Servlet, but It looks like not working, because I get this error message. 404 404 Not Found Not Found The requested URL /wimb/wimbService was not found on this server. Additionally, a 404 Not Foun

Re: "wait" cursor when calling RPC

2011-04-02 Thread Jan Mostert
Setting the cursor is not the best design pattern for RPC calls, what if you have 10 widgets all making RPC calls, will each of them try to set and unset the cursor? Also expect some quirkiness between browsers if you set the cursor via the DOM. This is probably a better solution, show and hide so

"wait" cursor when calling RPC

2011-04-02 Thread jonty
Hi, I'm in the middle of a project and would like to display the wait cursor when until RPC onSuccess is called. I've tried directly setting and removing the style name of my panel with .waitCursor { cursor: wait;}. But it seems very glitchey(I'm using Chrome). Then I tried DOM.setStyleAttribute(Ro

Re: Calling RPC

2010-11-30 Thread Trung
If you want server --> server communication using GWT RPC, gwt- syncproxy is what you need. On Nov 15, 6:50 pm, Raju wrote: > Hi, > > I am new to GWT and had a requirement. > I have two applications running on two different servers. > And i need to make an asynchronous call from one application

Re: Calling RPC

2010-11-15 Thread Didier Durand
Depending on your requirements, you could also use some iframe mechamisms to have panels of the 2 applications on the same screen. It makes then inter-app communication a bit harder but possible. regards didier On Nov 15, 12:50 pm, Raju wrote: > Hi, > > I am new to GWT and had a requirement. >

Re: Calling RPC

2010-11-15 Thread Nicolas Antoniazzi
No it is not possible since RPC call are simple XmlHttpRequests and Security implementation in browser does not allow cross server call. But, you can forward your RPC requests from the Serve1r to your Server2 Client1 --> Server1 --> Server2. 2010/11/15 Raju > Hi, > > I am new to GWT and had a

Calling RPC

2010-11-15 Thread Raju
Hi, I am new to GWT and had a requirement. I have two applications running on two different servers. And i need to make an asynchronous call from one application to the other. Is it possible to call the Remote Procedure of one application running on a different server from a different application

Re: Getting com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException while calling RPC method

2009-08-07 Thread jonas
i have the same problem...any help? On 16 Jun., 11:23, ramraj wrote: > Hi, > > I am using gwt2.0,i have some RPC service classes,previously i have > used 1.6 at that all rpc functionlaities are working fine after > changed to 2.0 i am un able to call the RPC methods,while calling the > method i

Getting com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException while calling RPC method

2009-06-16 Thread ramraj
Hi, I am using gwt2.0,i have some RPC service classes,previously i have used 1.6 at that all rpc functionlaities are working fine after changed to 2.0 i am un able to call the RPC methods,while calling the method i am getting the exception like 2009-06-16 14:52:36.641:/:WARN: An IncompatibleRem

Re: Calling RPC Service inside another module

2009-05-11 Thread sim123
I think I got it, I had @RemoteServiceRelativePath("userinfo") missing in my service declaration inside application A and GWT 1.6 requires that. http://code.google.com/webtoolkit/doc/1.6/ReleaseNotes_1_6.html Thanks for the help. On May 11, 2:44 pm, sim123 wrote: > Its broke again!!, I apologi

Re: Calling RPC Service inside another module

2009-05-11 Thread sim123
Its broke again!!, I apologize for posting same thing again, but somehow its not working. Here is the configuration details : Project A : gwt 1.5 application has couple of RPC defined Project B : gwt 1.6 application, has inherited A, included project in eclipse, here is B.gwt.xml http://google-

Re: Calling RPC Service inside another module

2009-05-09 Thread Salvador Diaz
> any idea why I am > getting this warning and what can be done to remove the same. Normally there's a link to a more detailed description of that warning in the hosted mode console. Here's the detailed message: http://code.google.com/p/google-web-toolkit/source/browse/trunk/distro-source/core/sr

Re: Calling RPC Service inside another module

2009-05-08 Thread sim123
That works. Thanks for your help. I have other compilation warning like [WARN] Server class 'com.test.UserServiceImpl' could not be found in the web app, but was found on the system classpath [WARN] Adding classpath entry 'file:/Users/test/workspace/A/bin/' to the web app classpath for this sessi

Re: Calling RPC Service inside another module

2009-05-08 Thread Magius
Have you tried duplicating the mapping entries for both modules? UserService com.test.UserServiceImpl UserService /A/userinfo/* UserService /B/userinfo/* On May 8, 3:11 am, sim123 wrote: > in web.xml patterns are

Re: Calling RPC Service inside another module

2009-05-07 Thread sim123
in web.xml patterns are relative, I have given the path in web.xml, but my application appends /B/userinfo here is my web.xml configuration UserService com.test.UserServiceImpl UserService /A/userinfo/* if I don't add it in my module.

Re: Calling RPC Service inside another module

2009-05-07 Thread Vitali Lovich
In the web.xml for B, provide the proper paths for the RPC services. I think that'll work. On Thu, May 7, 2009 at 2:13 PM, sim123 wrote: > > Can some one please help me with this issue and guide me to right > directions?? > > Thanks a lot for your help. > > > On May 6, 5:04 pm, sim123 wrote: >

Re: Calling RPC Service inside another module

2009-05-07 Thread sim123
Can some one please help me with this issue and guide me to right directions?? Thanks a lot for your help. On May 6, 5:04 pm, sim123 wrote: > I have created two GWT projects A and B where A is an independent and > main application and B is more like test application for A, so I > inherit A as

Calling RPC Service inside another module

2009-05-06 Thread sim123
I have created two GWT projects A and B where A is an independent and main application and B is more like test application for A, so I inherit A as a module in B. I have a couple of RPC Service defined in A which I want to call from B to get the same data and use it in a different way. But when I

Re: calling RPC service from Java using GWT 1.5

2009-03-26 Thread Ian Petersen
On Thu, Mar 26, 2009 at 10:22 AM, gui@gmail.com wrote: > I'm trying to do what's stated in the subject.  I thought I could use > javaongems to do that with the following code : > > - > import org.javaongems.core.jclient.Gwt; > import com.google.gwt.user.client.rpc.

calling RPC service from Java using GWT 1.5

2009-03-26 Thread gui....@gmail.com
Hi I'm trying to do what's stated in the subject. I thought I could use javaongems to do that with the following code : - import org.javaongems.core.jclient.Gwt; import com.google.gwt.user.client.rpc.ServiceDefTarget; public class JavaRpcClient { sta

Re: Calling RPC from gwt-shell-hosted on netbeans

2009-01-09 Thread joe young
to /tomcat//webapps/ROOT/WEB-INF/classes/  ?? > > > On Jan 9, 11:36 am, "olivier FRESSE" wrote: > > > is com.sun.dmt.admin.server.login.LoginServiceImpl in the classpath of > > the > > > hosted browser ? > > > If you use the Tomcat instance of the hosted brow

Re: Calling RPC from gwt-shell-hosted on netbeans

2009-01-09 Thread Kevin Tarn
uld be > enough. > > > > 2009/1/9 joe young > > > > > > > > > I'm having trouble calling RPC in shell hosted mode. > > > > > Currently I have a simple login page that use rpc to validate the user/ > > > password. And when I tr

Re: Calling RPC from gwt-shell-hosted on netbeans

2009-01-09 Thread joe young
sspath of the > hosted browser ? > If you use the Tomcat instance of the hosted browser, that should be enough. > > 2009/1/9 joe young > > > > > I'm having trouble calling RPC in shell hosted mode. > > > Currently I have a simple login page that use rpc to validate

Re: Calling RPC from gwt-shell-hosted on netbeans

2009-01-09 Thread olivier FRESSE
is com.sun.dmt.admin.server.login.LoginServiceImpl in the classpath of the hosted browser ? If you use the Tomcat instance of the hosted browser, that should be enough. 2009/1/9 joe young > > I'm having trouble calling RPC in shell hosted mode. > > Currently I have a simple lo

Calling RPC from gwt-shell-hosted on netbeans

2009-01-09 Thread joe young
I'm having trouble calling RPC in shell hosted mode. Currently I have a simple login page that use rpc to validate the user/ password. And when I tried running with shell hosted mode, it always give me an onFailure() Error "ERROR" final AsyncCallback callback = ne

Re: error calling RPC when using -noserver

2008-10-17 Thread pepgrifell
Solved ! I was copying bad classes to WEB-INF/classes (an old directory (bin) I had). When I copied the classes generated by the GWT Compiler to WEB- INF/classes in my server then the call to the server was ok. On 17 oct, 12:17, pepgrifell <[EMAIL PROTECTED]> wrote: > hi there, > > I'm using GWT

error calling RPC when using -noserver

2008-10-17 Thread pepgrifell
hi there, I'm using GWT 1.5.2 and I wanted to use OC4J in hosted mode. I'm using Cypal to start GWTShell in Eclipse. I create an EAR with my application (WAR and some JARS). I start OC4J and EAR is deployed. With Cypal plugin, I start GWTSHell and I uncheck "use embedded tomcat server" and ente