Hi everyone. I'm writing an app that make intense use (reading/writing) of xml configuration files. My first approach was to use a library that maps/binds xml files into java serializable classes, in order to be used via RPC and having them available at client-side. To be concrete, i have: - server-side: binds xml files to java classes using some kind of library; - shared-side: where business classes resides that are filled up by the server and all are Serializable. Of course shared-side is compiled to js.
But i'm stucked. I've dig around and tried a lot of libraries (JAXB, Xstream, XMLBeans...) that should makes this kind of things easier but, unfortunately, it seems to me that every one relies on reflection in some ways and while i can still use them in server-side, when i try to serialize them to the client, a lot of issues came up, because reflection is not part of the jre subset that can be freely compiled to js (am i right?). So, i was wondering if there a way to use such tools (whatever) and continue using the whole GWT-RPC mechanism and object serialization to client- side. Are there any better solutions? Thanks is advance, ciosbel. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
