Re: Google Gadget: works in hosted mode, but not in web mode (iGoogle)

2009-12-14 Thread flokay
I have still difficulties with RPC call in a gadget. In hosted mode it works again, but not in iGoogle. Here is my Code: package com.google.gwt.sample.cnsnews_rpc_gadget.client; import java.io.Serializable; import com.google.gwt.sample.cnsnews_rpc_gadget.client.FakeResponse; import

Re: Google Gadget: works in hosted mode, but not in web mode (iGoogle)

2009-12-03 Thread flokay
Now if I want to make the rpc call the onFailureMethod is invoked and the error message: unable to initiate the asynchronous service invocation -- check the network connection What could be wrong here? On 1 Dez., 17:14, Eric Ayers zun...@google.com wrote: This may be a conflict between

Re: Google Gadget: works in hosted mode, but not in web mode (iGoogle)

2009-12-01 Thread flokay
OK thanks! So I have made it with RPC now and in hosted mode, it works well again! But if I want to change it in a gadget the compiler writes the following error message: Compiling module com.google.gwt.sample.cnsnews_rpc_gadget.CADENASNews_RPC_Gadget Computing all possible rebind results for

Re: Google Gadget: works in hosted mode, but not in web mode (iGoogle)

2009-12-01 Thread Eric Ayers
This may be a conflict between different versions of xerces, because this part of the code is creating a new XML document. You should be using the -noredist.jar file, and expecting to resolve xerces in your GWT build. Are you explicitly including xerces in your build classpath? It may help to

Google Gadget: works in hosted mode, but not in web mode (iGoogle)

2009-11-30 Thread flokay
Hi, I've got an issue with my Google Gadget: - I'm trying to read an XML file via RequestBuilder and show it in the gadget (only for testing purpose) - If I try it in hosted mode with onModuleLoad() method and so on, it works well - But if i add it to iGoogle the string variable of

Re: Google Gadget: works in hosted mode, but not in web mode (iGoogle)

2009-11-30 Thread Eric Ayers
See the Gadget RPC example in the gwt-google-apis project for how to set the proxy in request builder. http://code.google.com/p/gwt-google-apis On Mon, Nov 30, 2009 at 10:17 AM, flokay f.kar...@cadenas.de wrote: Hi, I've got an issue with my Google Gadget: - I'm trying to read an XML file