I am playing around with GWT a bit.
I created a small Test-Application (Dummy-Webshop) with an GWT-RPC connection for the Client to Server communication.
The ServiceImpl that is started from the WebXML uses @Inject to get a CDI-Bean with @SessionScope to store same Variables in the session on the server side.
In my Case this is a DummyWebshop-Cart.
I know I could handle the Cart in the GWT-Client but I use the addItem and removeItem from the Service to change the CartList.
This works fine for any Desktop-Browser and Android based Systems. But iOS Devices like iPhone and iPads (only Tested with iOS 6.0.1) does not Work. There it seems like Safari, Chrome or the Dolphin web browsers are not holding the Sessions. So my Cart on the server side is always empty...
If it is important, I hold the service-Variable in the EntryPoint-Class as a static Variable. So if I use RPC-Method I call MyEntryPoint.getService.addItem(1).
Any GWT-Webdeveloper out there has an Idea on where to Problem might be?
Thanks for all hints, ideas or even better the answer ;-)