(I posted this to [email protected] but there's more activity 
here)

I can't seem to debug this issue.

I've got a web service set up like this:

<mx:WebService id="ws" 
wsdl="https://www.it.dev.duke.edu/components/dukemagsearch/checkMaili
ng2.cfc?wsdl"
         useProxy="false">
         <mx:operation name="queryDB" result="queryDBResult()" 
fault="queryDBFault(event)"/>
         <mx:operation name="getListData" result="getListDataResult
()" 
fault="getListDataFault()"/>
     </mx:WebService>

getListData() takes no args and runs fine, and populates my list 
boxes.

However, the queryDB() method causes a mysterious fault.

To call the web service, I'm actually using actionscript to set some 
variables and then pass them in as arguments to the .send() method, 
like 
this:

                 
ws.queryDB.send
(RUNDATE,ENTITYID,LASTNAME,FIRSTNAME,MINITIAL,PRFSCHCD,PRRECTYP,PRFCL
ASS);

I've also tried using the <mx:request> tag with the arguments linked 
in there, to no avail.

I'm browsing the flex app locally using a FILE url (C:\Inetpub...) 
but this shouldn't affect anything because the getListData() web 
service responses just fine.

my fault function:

        public function queryDBFault(e:Event):void
        {
                Alert.show(e.toString(), "Oops!", Alert.OK);
        }

produces the following alert:

[FaultEvent fault=[RPC Fault faultString="HTTP request error" 
faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent 
type="ioError" bubbles=false cancelable=false eventPhase=2 
text="Error 
#2032: Stream Error, URL: 
https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cf
c"]. 
blah blah blah

Nothing shows up in the coldfusion application log or the exception 
log.

Anyone got any ideas?

Rick







--
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