How can I send xml file in an HTTP GET or HTTP put request ? I am using restlet framework. Im new to this, and according to what I've read, I should serialize the xml. After doing this, how can I send it in the HTTP request ?
|
|
It is rather simple, even if you do not use a library that combines pieces (I assume Restlet does offer some simplifications): like you mention, all you need is an HTTP connection/request, and ability to produce (and probably, consume) XML. So aside from Restlet-specific things (which hopefully others can explain), here's a "guerilla" approach, using just stand-alone pieces. To get HTTP connection, you can just use JDK functionality (if that does not work, apache http client or async-http-client can offer more functionality); something like:
now, as to producing/consume XML, you can use all the usual tools that read/write XML using input/output streams. If you like data binding (Java POJOs to/from XML), JAXB is the way to go (javax.xml.bind.*); JDK 1.6 and above bundle default implementation. Alternatively you may simply use Stax (javax.xml.stream.*) implementation such as Woodstox, to read/write XML with simple calls; for bonus points, check out StaxMate that simplifies this style quite a bit. |
||||
|
|