VB.Net API application from E9 to E10

I misunderstood didn’t realize it was an external program. For this you can use various methods
WCF Services Directly
REST Services
or DLL’s which already implement the WCF Services

Here’s how to use REST

Here’s how to use WCF Services
https://epicweb.epicor.com/doc/Docs/Epicor10_techrefWCFServices_101400.pdf#search=WCF

Here is how to use the DLL’s / WCF Implementations

/* You'll need to reference
    Epicor.ServiceModel
    Erp.Contract.BO.Part.dll (or whatever BO you need)
    System.ServiceModel
*/
var wcfBinding = NetTcp.UsernameWindowsChannel();
	var appServer = new Uri("net.tcp://localhost/epicor10/erp/bo/part.svc");
	using (var partClient = new PartImpl(wcfBinding, appServer))
	{
		partClient.ClientCredentials.UserName.UserName = "Manager";
		partClient.ClientCredentials.UserName.Password = "Epicor123";
		bool morePages;
		var myPartDataset = partClient.GetList("", 10, 1, out morePages);
		foreach (var partRec in myPartDataset.PartList.Rows.Cast<PartListDataSet.PartListRow>())
		{
			Console.WriteLine(partRec.PartNum);
		}
		partClient.Close();
	}
1 Like