You sent what came back in the response from the method invocation but
not the WSDL itself.  Can you send that too?  It may be a bug.

Matt

-----Original Message-----
From: [email protected] [mailto:[EMAIL PROTECTED] On
Behalf Of augie3333
Sent: Tuesday, January 24, 2006 12:36 PM
To: [email protected]
Subject: [flexcoders] URN WSDL Error

Hi all,
I'm experiencing a huge problem trying to connect to this webservice
that is using URN for its namespace in the WSDL. Below is my error
message and simplified code to step you through the process. Any help
would be absolutely appreciated.


// --- My Exact Error Message
Element
urn:ruleFactoryConcepts:getTreeControlXML
not resolvable



//---- WebService is called on initialize of App
function getDivList(event):Void {
        webservice1.getTreeControlXML.send(); 
        
}

// --- WebService
<mx:WebService wsdl="(Path to WSDL)"  id="webservice1">
        <mx:operation name="getTreeControlXML" result="test(event)">
          <mx:request></mx:request>
        </mx:operation>
      </mx:WebService> 


//--- Binding For Tree
<mx:Binding source="webservice1.getTreeControlXml.result"
destination="treeNodes.dataProvider" /> 

// -- Tree      
<mx:HBox width="100%">
 <mx:Tree height="100%"   width="100%"  id="treeNodes" />
</mx:HBox>



// ---- XML RETURNED FROM WSDL ---------- \\

<?xml version="1.0" encoding="UTF-8" ?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; > 

<soapenv:Body> 

// -- This seems to be what it doesnt like -- \\
<treeControlXML xmlns="urn:rulefactory/concepts" > 

<node> 

<uqName xmlns="" >DocumentMaster_2</uqName> 

<prettyName xmlns="" >USA Patriot Act</prettyName> 

<child> 

<uqName xmlns="" >DocumentElement_5</uqName> 

<prettyName xmlns="" >Know Your Customer</prettyName> 

<child> 

<uqName xmlns="" >DocumentElement_7</uqName> 

<prettyName xmlns="" >Check OFAC</prettyName> 

</child> 

<child> 

<uqName xmlns="" >DocumentElement_8</uqName> 

<prettyName xmlns="" >Get Credit Report</prettyName> 

</child> 

</child> 

<child> 

<uqName xmlns="" >DocumentElement_6</uqName> 

<prettyName xmlns="" >Terrorists Are Bad</prettyName> 

</child> 

</node> 

</treeControlXML> 

</soapenv:Body> 

</soapenv:Envelope> 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to