I am using GWT RPC to communicate between the client and the servlet, but from that same servlet, I need to send XML data through a POST HTTP Request to an External web service.
Basically, I send it some XML data, the Web Service processes it and returns some other XML Data that I will be using.
I tried using com.google.gwt.http.client.RequestBuilder but I was getting an Exception error (java.lang.UnsatisfiedLinkError). From what I've read, this is due because that class is a CLIENT class, and therefore cannot be used in the servlet (server-side).
What else can I use to build POST HTTP Requests?
Thanks in advance.
(Since the servlet is some java bytecode running, instead of java translated to Javascript on the client, I can basically use Java classes from the JRE/JDK)