On 05/31/2011 08:52 AM, Michaël wrote: > Hi, > > After a lot of research on the web I don't find how to validate a XML > file with a XSD (XML Schema) in GWT (2.3.0). > > I saw that on the JSE 6 there is a SchemaFactory class, but not in > GWT. So, how can I do this validation? > > Best regards. >
You won't be able to invoke a validating parser on the client side, You can use GWT RPC to cause your server to perform that task, and return the results to your client. -- 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.
