> Any thoughts? Yes, this is basically what you need to do. Fetch the cookies sent when you visit the form, then send those to the action page.
I didn't think to ask this earlier, but what are you trying to accomplish, exactly? Are you trying to let your CF app interact with the .NET app, or are you trying to log your user into .NET so that later, when that user visits the .NET app directly, that user is logged in? If the former, you're on your way. If the latter, things get a little more complicated. In that case, you may need to provide the token you get from the .NET app to your user. If your app and the .NET app are in the same domain, this is pretty straightforward - just set a cookie containing the token, and make sure you use the DOMAIN attribute of CFCOOKIE so that the user will send the cookie back to the .NET app. If your app and the .NET app are not in the same domain, you will probably not be able to set a cookie that will be sent to the .NET app. In that case, the .NET app would need to have some other mechanism for accepting a token, such as a URL parameter. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259046 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

