Package org.jboss.ws.extensions.validation

Examples of org.jboss.ws.extensions.validation.SchemaExtractor


   }

   public void testEndpointWsdlValidation() throws Exception
   {
      URL wsdlURL = new URL("http://" + getServerHost() + ":8080/jaxws-jbws1172/noval?wsdl");
      Map<String, byte[]> xsdStreams = new SchemaExtractor().getSchemas(wsdlURL);
      String inxml = "<tns:performTest xmlns:tns='http://www.my-company.it/ws/my-test'><Code>1000</Code></tns:performTest>";
      new SchemaValidationHelper(xsdStreams).validateDocument(inxml);
   }
View Full Code Here

TOP

Related Classes of org.jboss.ws.extensions.validation.SchemaExtractor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.