return converter.deserialize(input,validate);
}
private String cfml2js(Object input) throws ConverterException {
if(toplevelvariable==null)missingTopLevelVariable();
JSConverter converter =new JSConverter();
return converter.serialize(input,toplevelvariable);
}
private String wddx2js(String input) throws ConverterException, IOException, FactoryConfigurationError {
if(toplevelvariable==null)missingTopLevelVariable();
JSConverter converter =new JSConverter();
return converter.serialize(wddx2cfml(input),toplevelvariable);