Just curious, do all web services with .NET require this procedure or is it only because it's written in CF?
----- Original Message ----- From: "Scott Van Vliet" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 6:14 PM Subject: RE: SOAP, CF, ASP and web services > If .NET is what you are trying to use, then you will first need to create a > proxy for the ColdFusion web service. > > This can be done by adding a web reference (as Dave mentioned in his email). > However, it can also be done using the .NET command line tools. > > Here are the steps to follow to create the proxy, and then consume it. > > 1) Open a command window. > 2) Use the WSDL Utility 'wsdl.exe' to create the web service proxy class > 'C:\wsdl http://www.tinetics.com/webservices/securitylevel.cfc?WSDL' > This will create the proxy class, 'securitylevelService.cs' > 3) Use the C# Compiler 'csc.exe' to compile the class into a .NET Assembly > 'C:\csc /target:library securitylevelService.cs' > This will create the DLL you need to use to consume the service > 4) Now, copy the Assembly ' securitylevelService.dll' into the 'bin' > directory of you web application. > > That's it - now you can consume the ColdFusion web service in ASP.NET. > > Here's some sample code of how to consume the service we just created: > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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 Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

