Fixed some warnings and did some speed improvments to json parsers

This commit is contained in:
Ziver Koc 2013-08-06 13:46:31 +00:00
parent b9a662e4b3
commit 7aa5bc2a0e
6 changed files with 106 additions and 558 deletions

View file

@ -47,7 +47,7 @@ import zutil.net.ws.WSParameterDef;
import zutil.net.ws.WSReturnObject;
import zutil.net.ws.WSReturnObject.WSValueName;
import zutil.net.ws.WebServiceDef;
import zutil.parser.wsdl.WSDLWriterOld;
import zutil.parser.wsdl.WSDLWriter;
/**
* This is an HTTPPage for the HTTPServer that
@ -88,7 +88,7 @@ public class SOAPHttpPage implements HttpPage{
/** This instance of the web service class is used if session is disabled **/
private WSInterface ws;
/** The WSDL document **/
private WSDLWriterOld wsdl;
private WSDLWriter wsdl;
/** Session enabled **/
private boolean session_enabled;
@ -96,7 +96,7 @@ public class SOAPHttpPage implements HttpPage{
this.wsDef = wsDef;
this.session_enabled = false;
wsdl = new WSDLWriterOld( wsDef );
wsdl = new WSDLWriter( wsDef );
}
/**
@ -238,7 +238,7 @@ public class SOAPHttpPage implements HttpPage{
/**
* Converts an String XML to an Element
*
* @param msg is the string XML
* @param xml is the string XML
* @return the XML root Element
*/
private Element getXMLRoot(String xml) throws Exception {