*/
private void loadSchema() throws Exception {
InputStream fIn = this.getClass().getResourceAsStream(this.schemaFile);
BufferedReader bfIn = new BufferedReader(new InputStreamReader(fIn));
int i = 0;
this.schema = new WSSchema(this.strClassName, this.requestHostUrl);
this.schema.loadSchema(bfIn);
bfIn.close();
fIn.close();
while(i < this.webMethods.size()){