I am running my GWT application in development mode. In my client side code (Classes that implements Entrypoint), I have created one object and assigned it to a static variable of another class (Suppose Class A).
Now, expectedly I can access the object by he reference of the static variable of class A from anywhere from the client side but can't access it from the server side code. Can anybody explain me why I can't access the object the same way I accessed it from client side code as both the client and server running within the same session scope on the same JVM in development mode.