Multiple RequestFactory servlets for a single GWT application

2012-02-16 Thread Gilad Egozi
Is it possible to have this? And how can this be achieved? The motivation - I want one secured (SSL) service for user- provisioning (passwords...), and one non-secured. Thanks, Gilad. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To po

Re: Multiple RequestFactory servlets for a single GWT application

2012-02-23 Thread Gilad Egozi
Hi Thomas I'm not talking about two instances of the same RequestFactory class, but rather on two different RFs with different services. Does your explanation apply in that case too? Thanks, Gilad. On Feb 18, 1:09 pm, Thomas Broyer wrote: > Because RF works with reflection and stores some state

Re: Multiple RequestFactory servlets for a single GWT application

2012-03-04 Thread Gilad Egozi
Broyer wrote: > > > > On Thursday, February 23, 2012 6:30:38 PM UTC+1, Gilad Egozi wrote: >> >> Hi Thomas >> >> I'm not talking about two instances of the same RequestFactory class, >> but rather on two different RFs with different services.

RequestFactory and offline clients

2012-03-08 Thread Gilad Egozi
Hello, I'm trying to create an application which is able to work even when network is down. The idea is to store data returned from RequestFactory on the localStorage, and to use localStorage when network isn't available. My problem - I'm not sure exactly how to differentiate between server err

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-05 Thread Gilad Egozi
+1 ! On Monday, April 2, 2012 6:19:16 PM UTC+3, Joshua Kappon wrote: > > With the rise of the new developers.google.com, and with Google trying to > rally up developers using Google technologies and products, and the rise of > Dart and unclear future of GWT, I think it's about time that Google w

Testing app with subdomains in development-mode

2012-04-17 Thread Gilad Egozi
Hello, I have a GWT application that supports multitenancy by subdomains. I want to be able to test my app in development mode. I am able to access my app using either: http://localhost:/MyApp.html?gwt.codesvr=127.0.0.1:9997

Re: Testing app with subdomains in development-mode

2012-04-17 Thread Gilad Egozi
miss some knowledge of the underlying infrastructure :-) On Tuesday, April 17, 2012 3:23:51 PM UTC+3, Qian Qiao wrote: > > On Tue, Apr 17, 2012 at 20:11, Gilad Egozi wrote: > > Hello, > > > > I have a GWT application that supports multitenancy by subdomains. > > I want to be

Re: Testing app with subdomains in development-mode

2012-04-17 Thread Gilad Egozi
No, I did not. :-) Could you refer me to some document for this? Thanks. On Tuesday, April 17, 2012 3:26:32 PM UTC+3, Olivier Scherler wrote: > > I have a GWT application that supports multitenancy by subdomains. >> I want to be able to test my app in development mode. > > > Did you add your dom

RF: error.getExceptionType() returns null in Receiver#onFailure

2012-05-04 Thread Gilad Egozi
*Hello* * * *In the server side i have:* public void throwException() throws Exception { throw new NullPointerException("fslkdjflks"); } *in the client side i have:* _requestFactory.myService().throwException().fire(new Receiver() { @Override public void onSuccess(Void response) { // TODO Auto-

DurationFormatUtils

2012-07-03 Thread Gilad Egozi
Anyone can recommend a good alternative to DurationFormatUtils for GWT? (*org.apache.commons.lang.time.DurationFormatUtils)* * * *thanks,* *Gilad.* -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit

Indexed DB support

2012-07-08 Thread Gilad Egozi
Hello, Having that LocalStorage is very limited in size and query functionality, and WebSQL being a deprecated specification, I'm more-or-less forced to use Indexed-DB (I have a demand for a rather big storage for offline data in my application). I find it rather surprising that there no *matur