Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
.NET .DLL error with VFP
Message
 
To
05/02/2015 04:18:29
Metin Emre
Ozcom Bilgisayar Ltd.
Istanbul, Turkey
General information
Forum:
Visual FoxPro
Category:
COMCodebook
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01614786
Message ID:
01614933
Views:
41
>
>but I couldn't use binding way. My service references name is Sorgula, I put Sorgula ;
>
>var client = Sorgula(binding, new EndpointAddress("http://www.nameofthewebsitehere.com"));
>
>gives error: 'TCKimlik.Sorgula' is a 'namespace' but is used like a 'variable'

You're missing the "new" in front of it.
var client = new Sorgula(binding, new EndpointAddress("http://www.nameofthewebsitehere.com"));
Just be aware that the class name might not match what you're currently using; I usually just type: var client = new S - then wait for the intellisense to pop up, then I'll go through the list of class names that sound like what I want and have the constructor parameters I want to pass. So don't be surprised if you have to do something like var client = new SorgulaClient(binding, new EndpointAddress("http://address.com"); or some other variant.
-Paul

RCS Solutions, Inc.
Blog
Twitter
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform