Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
.NET .DLL error with VFP
Message
 
À
05/02/2015 04:18:29
Metin Emre
Ozcom Bilgisayar Ltd.
Istanbul, Turquie
Information générale
Forum:
Visual FoxPro
Catégorie:
COMCodebook
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01614786
Message ID:
01614933
Vues:
40
>
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform