It looks like you're new here. Sign in or register to get started.
SystemService _ws = new SystemService(); _ws.Url = "http://" + 'your-navserver' + ":" + 'your-navwebport' + "/" + 'your-navservice' + "/WS/SystemService"; _ws.UseDefaultCredentials = true; string[] _Company = _ws.Companies();
Comments
If your are using the c#, you can get company list by below code.
Best Regards,
Yukon
This is exactly what I need.