It’s been over a decade since I read VB but I think so.
There are a variety of mechanisms to make server calls. See the ‘Integration Examples’ doc I pushed up here some time ago.
I am hoping to expand this a bit and get into the EDU courses.
snippet:
var userName = “manager”;
var password = “Epicor123”;
var sysConfigFile = @“C:_projects\ice3\Current\Deployment\Client\config\local.sysConfig”;
using (var session = new Session(userName, password, Session.LicenseType.Default, sysConfigFile))
{
var bo = WCFServiceSupport.CreateImpl<TipImpl>(session, Ice.Proxy.BO.TipImpl.UriPath);
bo.DoSomething();
}