RE: Translating already compiled Java?

2010-09-09 Thread Armishev, Sergey
You can automatically generate POJO classes from the same WSDL. Why are you doing this manually? In my GWT app I used SUN jax rpc for that http://java.sun.com/webservices/jaxrpc/overview.html Let me know if you need more info -Sergey -Original Message- From:

Re: Translating already compiled Java?

2010-09-09 Thread lineman78
I have been battling this issue for a while and the solution really depends on your architecture. The question is are they truly POJOs or do they have JAXB annotations? If they have JAXB annotations GWT will blow up, if not you can trick the GWT compiler into letting you use an external library,

Re: Translating already compiled Java?

2010-09-08 Thread dolcra...@gmail.com
I don't think it can, although if you can get the wsdl tool to include the source and a module xml (maybe during your build process) then it could access the jar appropriately, but the source would need to be there along with a module xml (you know to exclude non translatable code). On Sep 8,