just read this in the release notes for MX 6.1

44924  CFCs didn't work as web services when nonalphanumeric characters were
used in CFC names, method names, or argument names.

maybe this is the issue?

regards,

Gunther

-----Original Message-----
From: Ruggiero, Kevin D. [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 6 August 2003 9:03 AM
To: CF-Talk
Subject: Problem with Web Service (WSDL Hanging)


I've created a web service that I'm having difficulty getting the WSDL for.
However, it appears to work fine as a normal, public function.  When I try
to get the WSDL for it after setting the function to access="remote",
ColdFusion just hangs when I retrieve it (go to the CFC address with ?wsdl
attached to the URL).  It doesn't error out on me, and I can't find anything
in the CF logs- so I'm pretty much stuck on what the problem could be.  I
tried setting the returntype="void" in addition to access="remote", and that
didn't help.

Any ideas?  I'm stuck.

This is my function:

        <cffunction name="email_pending" access="remote" hint="E-mails all
individuals of all groups who's signature is pending (and who can sign
immediately), but have not yet signed-off on a process" output="no">
                <cfargument name="subject" type="string" required="true">
                <cfargument name="message" type="string" required="true">
                <cfargument name="from" type="string" required="true">
                <cfargument name="at_position" type="numeric"
default="#instance.position_ondeck#">

                <cfscript>
                        for( i=1; i lte ArrayLen(instance.reqd_Signers);
i=i+1 )
                        {
                                if(instance.reqd_Signers[i].getPosition() eq
Arguments.at_position AND
                                  instance.reqd_Signers[i].getFulfilled() eq
false) {
        
instance.reqd_Signers[i].emailMembers(Arguments.subject, Arguments.message,
Arguments.from);
                                }
                        }
                </cfscript>
        </cffunction>


Thanks!

Kevin D Ruggiero

Software Development Engineer
Northrop Grumman Corporation
Information Technology
Amherst Systems
tel: 716-626-4600 x2595
[EMAIL PROTECTED]


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to