I am using Restlet framework to build an application. On the server side, I return an XML Representation. On the client side, I parse the xml representation into a Vector. Here is the code on the client side:
get();
try
{
InputSource aInputSource = new InputSource(getResponseEntity().getStream());
XMLReader aXmlReader = XMLReaderFactory.createXMLReader();
HashtableHandler aHashtableHandler = new HashtableHandler();
aXmlReader.setContentHandler(aHashtableHandler);
aXmlReader.parse(aInputSource);
return aHashtableHandler.getVector();
}
catch (SAXException e)
{
throw e;
}
However, on the client side, sometimes I only receive part of the information in some xml element. For example, on the server side, I have an element value 'batch name 12', but on the client side, I only receive ' name 12'.
There is no problem when I directly call the web service from navigator. The xml contains the correct String value.
HashtableHandler is a class that implements a Sax parser to read hash tables in Xml streams, each node in the xml is a hashtable, and they are all stored in a vector
Any hints will be helpful.
Thanks!
getVector()method. – Paŭlo Ebermann Jun 27 '11 at 14:30HashtableandVectorare not idiomatic Java in 2011. Actually not in 20XX ... – Jarrod Roberson Jun 27 '11 at 15:42