One Service, multiple users

2010-06-23 Thread Ralf B
I have a service that instantiates and keeps state (variables in the back end that is controlled by the service) until the user logs out. What happens exactly when two users access my GWT service; will there be one service instance for each user or will one be shared between them? I try to figure

Re: Few Openings in UI

2010-03-29 Thread Ralf B
Details? On Mon, Mar 29, 2010 at 5:56 AM, sridevi macherla sridevimache...@gmail.com wrote: Hi, Few openings in User Interface on Java/J2EE in my organization, anyone willing to relocate to bangalore and are interested.  Can send me their resumes at the earliest. Profile: Exp 4+ UI:

Re: Few Openings in UI

2010-03-29 Thread Ralf B
Amazing. I think I will take it, I don't need to know about anything about your project -- if you have one -- logistics, pay, company/team information etc. I guess for you its enough to tell that you have a job and an internet connection. Good luck! :D Ralf On Mon, Mar 29, 2010 at 1:25 PM,

Re: Example: (simple) Label with image?

2010-03-23 Thread Ralf B
, 20:01, Ralf B ralf.bie...@gmail.com wrote: Is there a very very simple way to create a label with an image without using CSS, or is the only way to use HTML objects? I was hoping for a constructor like this: Image myImage = new Image(url); Label myLabel = new Label(myimage, This is the text

Example: (simple) Label with image?

2010-03-22 Thread Ralf B
Is there a very very simple way to create a label with an image without using CSS, or is the only way to use HTML objects? I was hoping for a constructor like this: Image myImage = new Image(url); Label myLabel = new Label(myimage, This is the text); Best Regards :) -- You received this

Multiple Services at a time

2010-03-16 Thread Ralf B
Hi GWT fans, Is it possible to have multiple RPC-based GWT Services at a time and what are the usual pitfalls when doing that? Does anybody here know a good tutorial about setting up multiple services, configuring them? What are the special things one should consider when setting up cascading

Re: Does Image not serialize? How to transfer image back to client?

2010-02-11 Thread Ralf B
Thank you for your help. I realized that I approached the problem too complicated and one actually never needs to transfer pictures themselves but should actually use HTTP to do that work. Please see my other thread about images and links. Generating an image and leaving it on the server and just

Does Image not serialize? How to transfer image back to client?

2010-02-10 Thread Ralf B
Hello everybody, I am new to GWT and want to have a service that transfers an Image object (com.google.gwt.user.client.ui.Image) back to the client. (Using GWT 2.0.0 with Eclipse Galileo and Eclipse GWT plugin). On the client, I have the following service method: import