I have an ASP.NET application that I'm attempting to integrate with a
ColdFusion class that I created.  I have already done this invoking the
object from ColdFusion, and it works fine that way.  Here's an overview of
what I do in ColdFusion (that works):

MyCfc = CreateObject("mycfc")
MyCfc.init("relevant args");
x = MyCfc.doSomething();

This works fine from ColdFusion MX.

Now, I'm trying to basically do the same thing from ASP.NET.  I created a
wrapper class in .NET using the wsdl utility that comes with VS .NET.  I
then do the following:
MyCfcService = new MyCfcService();
MyCfcService.init("relevant args");
x = MyCfcService.doSomething();


The problem with doing this from ASP.NET is that the CFC does not appear to
maintain its state between the function calls.  The init function is
supposed to set values for certain private members of the CFC, and they do
not appear to be preserved when calling doSomething().

Anybody have an idea why this is?  Is this something that CFC web services
are capable of right now, or am I just doing something wrong?

Please help, thanks!

Kevin

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

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

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

Reply via email to