C Sharp client - OpenKM 5.1
From OpenKM Documentation
Revision as of 08:14, 12 April 2010 by Pavila (talk | contribs) (Created page with '== Generating C# Webservices in Windows == .Net framework comes with wsdl.exe utility ( possible it's not in your default path) wsdl.exe http://localhost:8080/OpenKM/OKMAuth?ws…')
Generating C# Webservices in Windows
.Net framework comes with wsdl.exe utility ( possible it's not in your default path)
wsdl.exe http://localhost:8080/OpenKM/OKMAuth?wsdl /out:OKMAuthService.cs
Pay attention in public OKMAuthService class, it'll be generated some OKMAuthService() constructor that you would like to change to take advantatge of host variable
public OKMAuthService() {
this.Url = http://127.0.0.1:8080/OpenKM/OKMAuth;
}
change to (or create another method with this parameter):
public OKMAuthService(String host) {
this.Url = host;
}