/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ var WebServiceProvider1 = { 'wsdlLocation': 'file:./wsdl/hello_world.wsdl', 'serviceName': 'SOAPService1', 'portName': 'SoapPort1', 'targetNamespace': 'http://apache.org/hello_world_soap_http', 'ServiceMode': 'MESSAGE', }; var SOAP_ENV = new Namespace('SOAP-ENV', 'http://schemas.xmlsoap.org/soap/envelope/'); var xs = new Namespace('xs', 'http://www.w3.org/2001/XMLSchema'); var xsi = new Namespace('xsi', 'http://www.w3.org/2001/XMLSchema-instance'); var ns = new Namespace('ns', 'http://apache.org/hello_world_soap_http/types'); var soapMsg = ; WebServiceProvider1.invoke = function(req) { var resp = soapMsg; var name = (req..ns::requestType)[0]; default xml namespace = SOAP_ENV; resp.Body.ns::greetMeResponse = ; resp.Body.ns::greetMeResponse.ns::responseType = 'Hi ' + name; return resp; }