The following operations are supported. For a formal definition,
please review the
Service Description.
Web Service Links
Namespace Children of ::wsdb::elements::aca::helloRequest
Namespace Code for ::wsdb::elements::aca::helloRequest
namespace eval ::wsdb::elements::aca::helloRequest {
variable Children {}
variable MaxOccurs
variable MinOccurs
variable facetList {form Value name helloRequest}
variable new ::wsdb::elements::aca::helloRequest::new
variable validate ::wsdb::elements::aca::helloRequest::ValidatehelloRequest
}
Procedures in ::wsdb::elements::aca::helloRequest
proc ::wsdb::elements::aca::helloRequest::new {
instanceNamespace
childValuesList
} {
set typeNS [::xml::element::append $instanceNamespace helloRequest]
return $typeNS
}
proc ::wsdb::elements::aca::helloRequest::ValidatehelloRequest {
namespace
} {
variable Children
variable MinOccurs
variable MaxOccurs
array set COUNT [array get ${namespace}::.COUNT]
set COUNT(.INVALID) 0
set ElementNames $Children
foreach ElementName $ElementNames {
if {$MinOccurs($ElementName) > 0} {
if {![info exists COUNT($ElementName)]} {
::wsdl::elements::noteFault $namespace [list 4 $ElementName 0 $MinOccurs($ElementName)]
incr COUNT(.INVALID)
return 0
} elseif {$COUNT($ElementName) < $MinOccurs($ElementName)} {
::wsdl::elements::noteFaunt $namespace [list 4 $ElementName $COUNT($ElementName) $MinOccurs($ElementName)]
incr COUNT(.INVALID)
return 0
}
}
if {[info exists COUNT($ElementName)] && $COUNT($ElementName) > $MaxOccurs($ElementName)} {
::wsdl::elements::noteFault $namespace [list 5 $ElementName $COUNT($ElementName) $MaxOccurs($ElementName)]
incr COUNT(.INVALID)
return 0
}
}
set PARTS [set ${namespace}::.PARTS]
set COUNT(.ELEMENTS) 0
foreach PART $PARTS {
incr COUNT(.ELEMENTS)
foreach {childName prefix childPart} $PART {}
set childPart [::xml::normalizeNamespace $namespace $childPart]
switch -exact -- $childName {
default {
::wsdl::elements::noteFault $namespace [list 3 $childName $childPart]
incr COUNT(.INVALID)
}
}
}
if {$COUNT(.INVALID)} {
return 0
} else {
return 1
}
}