Re: One Session(HTTP) for multiple GWT-Modules?

2011-03-22 Thread Johannes Stein
for users without cookies enabled? Or is there another way? Regards On 18 Mrz., 05:04, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: No. SessionId is create. 2011/3/17 Johannes Stein johannes.st...@googlemail.com Cookies are fine, but what happens if cookies are disabled

Re: One Session(HTTP) for multiple GWT-Modules?

2011-03-22 Thread Johannes Stein
Any ideas? Or would you recommend to use Cookies only? On 22 Mrz., 16:12, Johannes Stein johannes.st...@googlemail.com wrote: And how can i track the session id? I can store the sessionId at the client-side (for users which have cookies disabled), but if they reload the client-side

Re: One Session(HTTP) for multiple GWT-Modules?

2011-03-17 Thread Johannes Stein
But if i have two seperate modules each client will get a different sessionId from the server (rpc-call), because the servers interprets each module as a single client!? On 16 Mrz., 20:00, Johannes Stein johannes.st...@googlemail.com wrote: No ideas? On 16 Mrz., 18:58, Johannes Stein

Re: One Session(HTTP) for multiple GWT-Modules?

2011-03-17 Thread Johannes Stein
Cookies are fine, but what happens if cookies are disabled? Then two sessions will be created by the server, or not? On 17 Mrz., 12:40, Uemit uemit.se...@gmail.com wrote: It depends how session management is done on the client.  If you use cookies to store the session id it should make no

Re: One Session(HTTP) for multiple GWT-Modules?

2011-03-16 Thread Johannes Stein
? Is there a way to rewrite the url like in JSP or Servlets? On 16 Mrz., 18:47, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: The modules is in client side. Session is in the server side. Juan 2011/3/16 Johannes Stein johannes.st...@googlemail.com hello, im implementing a little

Re: One Session(HTTP) for multiple GWT-Modules?

2011-03-16 Thread Johannes Stein
No ideas? On 16 Mrz., 18:58, Johannes Stein johannes.st...@googlemail.com wrote: Yes, thats right. But will it then be possible to make in each module a gwt-rpc-call which checks, if the user is logged-in? Will the Session be the same, or will each call (from different modules) deliver

GWT + JSP = AdSense-Content?

2011-01-31 Thread Johannes Stein
Whats about the idea to load content and keywords for adSense seperately via JSP and to embed the GWT-Module into this JSP pages? So it will be possible to load content and keywords synchronously , so that Google-Bot has something to read. What do you think? Could this be an elegant solution? Or

Re: GWT + JSP = AdSense-Content?

2011-01-31 Thread Johannes Stein
load. On Mon, Jan 31, 2011 at 7:31 PM, Johannes Stein johannes.st...@googlemail.com wrote: Whats about the idea to load content and keywords for adSense seperately via JSP and to embed the GWT-Module into this JSP pages? So it will be possible to load content and keywords synchronously

GWT Session Handling - user HTTP Session or own solution?

2011-01-16 Thread Johannes Stein
Hello, im thinking about how to handle user-sessions. As i can remember there is the possibility to use HTTPSession (Servlet). Is this recommendable? Or is it a better idea to use an own solution? Im thinking about storing the session-id in a NoSQL database named redis. The session id will be

Tomcat vhost - Servlets not available

2011-01-13 Thread Johannes Stein
Hey, i deployed a gwt-application in tomcat 6.0.18 without any problems. I pointed a url to the ip-adress and deployed the application unter webapps/myfolder, so that the app was reachable unter http://mydomain/myfolder. It worked fine. But since im using a vhost in tomcat i got a problem. Every

Re: Tomcat vhost - Servlets not available

2011-01-13 Thread Johannes Stein
Please help me. ;) On 13 Jan., 15:55, Johannes Stein johannes.st...@googlemail.com wrote: Hey, i deployed a gwt-application in tomcat 6.0.18 without any problems. I pointed a url to the ip-adress and deployed the application unter webapps/myfolder, so that the app was reachable unterhttp

Connecting GWT-Modules / Rewrite URL

2011-01-12 Thread Johannes Stein
hello, i am developing a little online-game with gwt. the application contains several little modules. these modules are embedded in some html files. we have one html file for a latest-news-module, one for a category-listing and for the game itself. currently we access each module by url, for ex.

Re: Connecting GWT-Modules / Rewrite URL

2011-01-12 Thread Johannes Stein
But will then there be a way to rewrite the history tokens ? e.g. from http://myurl/play:12345 to http://myurl/play/quiz123 ? Could it be rewrited by URLRewriteFilter? MVP is an good idea, but not practicable for us. This would be even more search engine unfriendly. By the way, is there a

Re: Connecting GWT-Modules / Rewrite URL

2011-01-12 Thread Johannes Stein
No one who can give me a tip? Will GWT be able to get the current historyitem, if i rewrite for e.g. http://myurl/play:12345 to http://myurl/play/quiz123? On 12 Jan., 11:17, Johannes Stein johannes.st...@googlemail.com wrote: But will then there be a way to rewrite the history tokens ? e.g

URL rewriting (UrlRewriteFilter) = passing parameters

2011-01-12 Thread Johannes Stein
Hey guys, i have a rewrite rule like the following: rule from^/quiz/play/([0-9]+)$/from to/index.html?action=playid=$1/to /rule The rewriting works fine, but gwt seems not to be able to get the parameter. Im using this command: Window.Location.getParameter(id) This does

AdSense and GWT

2010-12-30 Thread Johannes Stein
Hello, could anyone say me how i can intergrate adSense in my GWTApplication? The Application is fully developed in GWT and we want to show content- relevant Ads. Is there a possbility without breaking the AdSense policies? Hope you can help me. Regards -- You received this message because you

Re: AdSense and GWT

2010-12-30 Thread Johannes Stein
No one who could help me? On 30 Dez., 14:51, Johannes Stein johannes.st...@googlemail.com wrote: Hello, could anyone say me how i can intergrate adSense in my GWTApplication? The Application is fully developed in GWT and we want to show content- relevant Ads. Is there a possbility without

Re: Serialization Error with own class while compiling

2010-04-01 Thread Johannes Stein
nobody has a solution? On 1 Apr., 07:46, Johannes Stein johannes.st...@googlemail.com wrote: Hey folks, thank you for your help. I got it fixed. I missed to implement a zero-argument constructor in Kontakt... Damn... im so blind! But sometimes you need to have a night to rethink

Serialization Error with own class while compiling

2010-03-31 Thread Johannes Stein
Hey, ive got a problem and im searching for hours to find a solution. My problem is the following: I have a little RPC-Service which returns as a result a Domain- Object (Own custom-class). But this Domain-Object could not be serialized, though i have made this Domain-class serializable with

Re: Serialization Error with own class while compiling

2010-03-31 Thread Johannes Stein
On Wed, Mar 31, 2010 at 2:41 PM, Sean slough...@gmail.com wrote: Don't have a constructor with arguments, only use Set/Gets. What's a Kontakt? Is that serializable? Fix the constructor and verify Kontakt is serializable and it should work. On Mar 31, 10:43 am, Johannes Stein johannes.st