The following operations are supported. For a formal definition, please review the Service Description.

Web Service Links

Namespace Children of ::wsdb::operations::stock::QuotesOperation

Namespace Code for ::wsdb::operations::stock::QuotesOperation

namespace eval ::wsdb::operations::stock::QuotesOperation {
    variable conversionList {Symbol List Verbose Value}
    variable inputElementData {
    {Symbol!stock::symbol {maxOccurs 3}}
    {Verbose!stock::verbose {minOccurs 0 default 0}}
}
    variable invoke ::wsdb::operations::stock::QuotesOperation::Invoke
    variable messages {{input QuotesRequestMsg} {output QuotesResponseMsg}}
    variable operationProc ::stock::Quotes
    variable procSignature {Symbol {{Verbose 0}}}

}

Procedures in ::wsdb::operations::stock::QuotesOperation


proc ::wsdb::operations::stock::QuotesOperation::Invoke {
    inputXMLNS
    outputXMLNS
} {
    variable conversionList
    set Verbose 0
    ::xml::childElementsAsListWithConversions $inputXMLNS $conversionList

    return [::wsdb::elements::stock::QuotesResponse::new $outputXMLNS [::stock::Quotes $Symbol $Verbose]]
}