/**
 *
 * Copyright (c) 2002-2004 Bluetetra Software.  All rights reserved.
 *
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL BLUETETRA SOFTWARE BE LIABLE FOR 
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 
 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 
 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 
 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *  
 * http://www.bluetetra.com
 *
 */

var target = "content";
var ciFileName = "componentIndex.htm";
var nsFilterFileName = "nsFilter.htm";

function CN (href, name, appendNSFlag, children) {
	this.href = href;
	this.name = name;
	this.appendNSFlag = appendNSFlag;

	this.children = children;
	this.hasChild = (children != null) && (children.length>0);	
	
	this.namespace = null;
}

function C (attributeList, attributeGroupList,
						simpleTypeList, complexTypeList,
						modelGroupList, elementList, 
						notationList) 
{
	this.attributes = attributeList;
	this.attributegroups = attributeGroupList;
	this.simpletypes = simpleTypeList;
	this.complextypes = complexTypeList;
	this.modelgroups = modelGroupList;
	this.elements = elementList;
	this.notations = notationList;
}

function component_showAllComponents() {
	parent._nsFilter = null;
	parent.componentIndex.location.href=ciFileName;
}

function component_filterComponents () {
	parent._href = ciFileName;
	window.open(nsFilterFileName, "_blank", 
		"height=200,width=400,location=no,menubar=no,scrollbars=yes,status=yes,resizable=yes,toolbar=no");

}

function component_groupByNS (flag) {
	parent._groupByNSFlag = flag;
	parent.componentIndex.location.href=ciFileName;	
}

function component_setFilterToAll() {
	var nsList = new Array();
	var i = 0;

	for (var ns in componentDB) {
		nsList[i] = ns; 		
		i++;
	}

	parent._nsFilter = nsList;
}

function component_showComponentsNoNS (nsList, componentList) {

	var components = new Array ();
	var n = 0;

	for (var i=0; i<componentList.length; i++) {
		var list = componentList [i];
		var namespace = nsList[i];

		if (list == null) {
			continue;
		}
	
		for (var j=0; j<list.length; j++) {
			components[n] = list[j];
			components[n].namespace = namespace;
			n++;	
		}	
	}
	
	components = components.sort(function (n1,n2) {return n1.name.toLowerCase().localeCompare (n2.name.toLowerCase());});

	component_outputList (null, components);	
}


function component_showComponentsNS (nsList, componentList) {

	for (var i=0; i<componentList.length; i++) {
		var list = componentList [i];
		var namespace = nsList[i];

		if (list == null) {
			continue;
		}
	
		for (var j=0; j<list.length; j++) {
			list[j].namespace = namespace;
		}	

		component_outputList (namespace, list);	
	}
}


function component_showComponents (nsList, componentList) {
	if (parent._groupByNSFlag) {
		component_showComponentsNS (nsList, componentList)
	} else {
		component_showComponentsNoNS (nsList, componentList)
	}
}

function component_showAttributes() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var attributes = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		attributes [i] = componentDB [nsList[i]].attributes;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, attributes);
}

function component_showAttributeGroups() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var attributegroups = new Array();
	var nss = new Array();		

	for (var i=0; i<nsList.length; i++) {
		attributegroups [i] = componentDB [nsList[i]].attributegroups;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, attributegroups);
}

function component_showSimpleTypes() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var simpletypes = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		simpletypes [i] = componentDB [nsList[i]].simpletypes;	
		nss [i] = nsList[i];
	}		

	component_showComponents (nss, simpletypes);
}

function component_showComplexTypes() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var complextypes = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		complextypes [i] = componentDB [nsList[i]].complextypes;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, complextypes);
}

function component_showElements() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var elements = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		elements [i] = componentDB [nsList[i]].elements;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, elements);
}

function component_showModelGroups() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var modelgroups = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		modelgroups [i] = componentDB [nsList[i]].modelgroups;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, modelgroups);
}

function component_showNotations() {
	if (parent._nsFilter == null) {
		component_setFilterToAll();		
	}
	
	var nsList = parent._nsFilter;
	var notations = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		notations [i] = componentDB [nsList[i]].notations;	
		nss[i] = nsList[i];
	}		

	component_showComponents (nss, notations);

}


function component_getNodeText(node) {
	if (node.appendNSFlag) {
		return node.name + "("+encodeURI(node.namespace)+")";
	} else {
		return node.name;
	} 
}

function component_outputLeaf (node) {
	var str = '<span class="leaf">'+
			  '<nobr><img src="img/leaf.gif" hspace="2" align="middle">'+
			  '<a class="chref" href="'+node.href+
			  '" title="'+component_getNodeText(node)+
			  '" target="'+target+'">'+component_getNodeText(node)+'</a></nobr>'+
			  '</span><br />'
	
	document.write (str);
}

function component_outputNonLeaf (node) {
	//initially, the childnodes are hidden

	var str = '<div><div class="nonleaf">'+
			'<nobr><img style="cursor: pointer" src="img/plus.gif" hspace="2" align="middle" onclick="IClick(this)">'+
			'<a class="chref" href="'+node.href+
			'" title="'+component_getNodeText(node)+
			'" target="'+target+'">'+component_getNodeText(node)+'</a></nobr></div>'+
			'<div style="display:none;margin-left: 0.8em">';

	document.write (str);

	var childs = node.children;
	for (var i=0; i<childs.length; i++) {
		component_outputTree (childs[i]);
	}					

	document.write ('</div></div>');
}

function component_outputTree (node) {
	if (node.hasChild == false) {
		component_outputLeaf (node);
	} else {
		component_outputNonLeaf (node);
	}
}

function component_outputList (ns, list) {	
	
	if (list == null || list.length<=0) {
		return;
	}

	if (parent._groupByNSFlag) {
		var fpath = componentNSMap[ns];

		var str = '<div class="nsBox"><div class="itemNS">'+
				'<nobr><img style="cursor: pointer" src="img/minus.gif" hspace="2" align="middle" onclick="IClick(this)">'+
				'<a class="chref" href="'+fpath+
				'" title="'+encodeURI(ns)+
				'" target="'+target+'">'+encodeURI(ns)+'</a></nobr></div>'+
				'<div style="margin-left: 0.5em">';

		document.write (str);
	}

	for (var i=0; i<list.length; i++) {
		component_outputTree (list[i]);
	}
	
	if (parent._groupByNSFlag) {
		document.write ('</div></div>');
	}
}


var componentDB = new Array();
var componentNSMap = new Array();

componentDB ["http://www.w3.org/2003/06/wsdl"] =  new C (new Array(new CN("http___www_w3_org_2003_06_wsdl/attribute/required.htm#attributeDeclaration_required","required",false,null)),
					new Array(),
					new Array(),
					new Array(new CN("http___www_w3_org_2003_06_wsdl/complextype/Binding.htm#complexTypeDefinition_Binding","Binding",false,new Array(new CN("http___www_w3_org_2003_06_wsdl/element/0_feature0.htm#localElementDeclaration_feature","feature",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_property0.htm#localElementDeclaration_property","property",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_operation0.htm#localElementDeclaration_operation","operation",false,null))),new CN("http___www_w3_org_2003_06_wsdl/complextype/BindingOperation.htm#complexTypeDefinition_BindingOperation","BindingOperation",false,new Array(new CN("http___www_w3_org_2003_06_wsdl/element/0_BindingOperation_feature0.htm#localElementDeclaration_feature","feature",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_BindingOperation_property0.htm#localElementDeclaration_property","property",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_BindingOperation_input0.htm#localElementDeclaration_input","input",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_BindingOperation_output0.htm#localElementDeclaration_output","output",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_BindingOperation_infault0.htm#localElementDeclaration_infault","infault",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_BindingOperation_outfault0.htm#localElementDeclaration_outfault","outfault",false,null))),new CN("http___www_w3_org_2003_06_wsdl/complextype/BindingOperationFault.htm#complexTypeDefinition_BindingOperationFault","BindingOperationFault",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/BindingOperationMessage.htm#complexTypeDefinition_BindingOperationMessage","BindingOperationMessage",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/Definitions.htm#complexTypeDefinition_Definitions","Definitions",false,new Array(new CN("http___www_w3_org_2003_06_wsdl/element/0_import0.htm#localElementDeclaration_import","import",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_include0.htm#localElementDeclaration_include","include",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_types0.htm#localElementDeclaration_types","types",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_message0.htm#localElementDeclaration_message","message",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_interface0.htm#localElementDeclaration_interface","interface",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_Definitions_binding0.htm#localElementDeclaration_binding","binding",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_service0.htm#localElementDeclaration_service","service",false,null))),new CN("http___www_w3_org_2003_06_wsdl/complextype/Documentation.htm#complexTypeDefinition_Documentation","Documentation",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/Documented.htm#complexTypeDefinition_Documented","Documented",false,new Array(new CN("http___www_w3_org_2003_06_wsdl/element/0_Documented_documentation0.htm#localElementDeclaration_documentation","documentation",false,null))),new CN("http___www_w3_org_2003_06_wsdl/complextype/Endpoint.htm#complexTypeDefinition_Endpoint","Endpoint",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/ExtensibilityElement.htm#complexTypeDefinition_ExtensibilityElement","ExtensibilityElement",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/ExtensibleDocumented.htm#complexTypeDefinition_ExtensibleDocumented","ExtensibleDocumented",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/Feature.htm#complexTypeDefinition_Feature","Feature",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/Import.htm#complexTypeDefinition_Import","Import",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/Include.htm#complexTypeDefinition_Include","Include",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/Interface.htm#complexTypeDefinition_Interface","Interface",false,new Array(new CN("http___www_w3_org_2003_06_wsdl/element/0_Interface_operation0.htm#localElementDeclaration_operation","operation",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_Interface_feature0.htm#localElementDeclaration_feature","feature",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_Interface_property0.htm#localElementDeclaration_property","property",false,null))),new CN("http___www_w3_org_2003_06_wsdl/complextype/InterfaceOperation.htm#complexTypeDefinition_InterfaceOperation","InterfaceOperation",false,new Array(new CN("http___www_w3_org_2003_06_wsdl/element/0_InterfaceOperation_feature0.htm#localElementDeclaration_feature","feature",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_InterfaceOperation_property0.htm#localElementDeclaration_property","property",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_InterfaceOperation_input0.htm#localElementDeclaration_input","input",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_InterfaceOperation_output0.htm#localElementDeclaration_output","output",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_InterfaceOperation_infault0.htm#localElementDeclaration_infault","infault",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_InterfaceOperation_outfault0.htm#localElementDeclaration_outfault","outfault",false,null))),new CN("http___www_w3_org_2003_06_wsdl/complextype/Message.htm#complexTypeDefinition_Message","Message",false,new Array(new CN("http___www_w3_org_2003_06_wsdl/element/0_Message_part0.htm#localElementDeclaration_part","part",false,null))),new CN("http___www_w3_org_2003_06_wsdl/complextype/MessageRef.htm#complexTypeDefinition_MessageRef","MessageRef",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/MessageRefFault.htm#complexTypeDefinition_MessageRefFault","MessageRefFault",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/Part.htm#complexTypeDefinition_Part","Part",false,null),new CN("http___www_w3_org_2003_06_wsdl/complextype/Property.htm#complexTypeDefinition_Property","Property",false,new Array(new CN("http___www_w3_org_2003_06_wsdl/element/0_Property_value0.htm#localElementDeclaration_value","value",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/0_Property_constraint0.htm#localElementDeclaration_constraint","constraint",false,null))),new CN("http___www_w3_org_2003_06_wsdl/complextype/Service.htm#complexTypeDefinition_Service","Service",false,new Array(new CN("http___www_w3_org_2003_06_wsdl/element/0_Service_endpoint0.htm#localElementDeclaration_endpoint","endpoint",false,null))),new CN("http___www_w3_org_2003_06_wsdl/complextype/Types.htm#complexTypeDefinition_Types","Types",false,null)),
					new Array(),
					new Array(new CN("http___www_w3_org_2003_06_wsdl/element/bindingAndServiceExt.htm#elementDeclaration_bindingAndServiceExt","bindingAndServiceExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/bindingExt.htm#elementDeclaration_bindingExt","bindingExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/bindingOpExt.htm#elementDeclaration_bindingOpExt","bindingOpExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/bindingOpFaultExt.htm#elementDeclaration_bindingOpFaultExt","bindingOpFaultExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/bindingOpMsgExt.htm#elementDeclaration_bindingOpMsgExt","bindingOpMsgExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/bindingPostOpExt.htm#elementDeclaration_bindingPostOpExt","bindingPostOpExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/bindingPreOpExt.htm#elementDeclaration_bindingPreOpExt","bindingPreOpExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/definitions.htm#elementDeclaration_definitions","definitions",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/endpointExt.htm#elementDeclaration_endpointExt","endpointExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/featureExt.htm#elementDeclaration_featureExt","featureExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/globalExt.htm#elementDeclaration_globalExt","globalExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/inImportInclude.htm#elementDeclaration_inImportInclude","inImportInclude",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/interfaceExt.htm#elementDeclaration_interfaceExt","interfaceExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/interfaceOpExt.htm#elementDeclaration_interfaceOpExt","interfaceOpExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/interfaceOpFaultExt.htm#elementDeclaration_interfaceOpFaultExt","interfaceOpFaultExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/interfaceOpMsgExt.htm#elementDeclaration_interfaceOpMsgExt","interfaceOpMsgExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/interfacePostOpExt.htm#elementDeclaration_interfacePostOpExt","interfacePostOpExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/interfacePreOpExt.htm#elementDeclaration_interfacePreOpExt","interfacePreOpExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/msgAndinterfaceExt.htm#elementDeclaration_msgAndinterfaceExt","msgAndinterfaceExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/msgExt.htm#elementDeclaration_msgExt","msgExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/msginterfaceAndBindingExt.htm#elementDeclaration_msginterfaceAndBindingExt","msginterfaceAndBindingExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/msginterfaceBindingServiceExt.htm#elementDeclaration_msginterfaceBindingServiceExt","msginterfaceBindingServiceExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/msgPartExt.htm#elementDeclaration_msgPartExt","msgPartExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/msgPostPartExt.htm#elementDeclaration_msgPostPartExt","msgPostPartExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/msgPrePartExt.htm#elementDeclaration_msgPrePartExt","msgPrePartExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/postTypes.htm#elementDeclaration_postTypes","postTypes",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/preImportInclude.htm#elementDeclaration_preImportInclude","preImportInclude",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/preTypes.htm#elementDeclaration_preTypes","preTypes",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/propertyExt.htm#elementDeclaration_propertyExt","propertyExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/serviceExt.htm#elementDeclaration_serviceExt","serviceExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/servicePostEndpointExt.htm#elementDeclaration_servicePostEndpointExt","servicePostEndpointExt",false,null),new CN("http___www_w3_org_2003_06_wsdl/element/servicePreEndpointExt.htm#elementDeclaration_servicePreEndpointExt","servicePreEndpointExt",false,null)),
					new Array());

componentNSMap ["http://www.w3.org/2003/06/wsdl"] = "http___www_w3_org_2003_06_wsdl/index.htm";
componentDB ["http://www.w3.org/2003/06/wsdl/soap12"] =  new C (new Array(),
					new Array(),
					new Array(new CN("http___www_w3_org_2003_06_wsdl_soap12/simpletype/styleChoice.htm#simpleTypeDefinition_styleChoice","styleChoice",false,null)),
					new Array(new CN("http___www_w3_org_2003_06_wsdl_soap12/complextype/addressType.htm#complexTypeDefinition_addressType","addressType",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/complextype/bindingType.htm#complexTypeDefinition_bindingType","bindingType",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/complextype/bodyType.htm#complexTypeDefinition_bodyType","bodyType",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/complextype/faultType.htm#complexTypeDefinition_faultType","faultType",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/complextype/headerfaultType.htm#complexTypeDefinition_headerfaultType","headerfaultType",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/complextype/headerType.htm#complexTypeDefinition_headerType","headerType",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/complextype/moduleType.htm#complexTypeDefinition_moduleType","moduleType",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/complextype/operationType.htm#complexTypeDefinition_operationType","operationType",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/complextype/propertyConstraintType.htm#complexTypeDefinition_propertyConstraintType","propertyConstraintType",false,null)),
					new Array(),
					new Array(new CN("http___www_w3_org_2003_06_wsdl_soap12/element/address.htm#elementDeclaration_address","address",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/element/binding.htm#elementDeclaration_binding","binding",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/element/body.htm#elementDeclaration_body","body",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/element/fault.htm#elementDeclaration_fault","fault",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/element/header.htm#elementDeclaration_header","header",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/element/headerfault.htm#elementDeclaration_headerfault","headerfault",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/element/module.htm#elementDeclaration_module","module",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/element/operation.htm#elementDeclaration_operation","operation",false,null),new CN("http___www_w3_org_2003_06_wsdl_soap12/element/propertyConstraint.htm#elementDeclaration_propertyConstraint","propertyConstraint",false,null)),
					new Array());

componentNSMap ["http://www.w3.org/2003/06/wsdl/soap12"] = "http___www_w3_org_2003_06_wsdl_soap12/index.htm";
								   



