jcricket / gwt-syncproxy

Provides Synchronous and Asynchronous access to GWT-RPC servlets from Java and Android
http://www.blueesoteric.com/open-source/gwt-syncproxy
Apache License 2.0
23 stars 14 forks source link

Decoding gwt request with SyncProxy #52

Open dinalkobi opened 7 years ago

dinalkobi commented 7 years ago

Hi Everyone, I am trying to decode GWT request by using SyncProxy, I saw there is a way to decode GWT response but I couldn't find way to decoding request. am I missing something? Thank you, Dina

jcricket commented 7 years ago

Typically, this is done by the service interface created in the SyncProxy class, but if you're looking for some of the indepth details, the entire SyncProxy system uses code directly from GWT to do the decoding back into an object. See the #doInvoke method in the RemoteServicesSyncProxy class for some details: RemoteServiceSyncProxy. Best practice is the read through the Wiki QuickStart.

If i'm missing what, youi're asking, please advise. Thanks