Skip to content

Getting Started with ECGridOS and Visual Studio SOAP Connections

Greg Kolinski edited this page Oct 28, 2022 · 1 revision

Back To ECGridOS Home


.NET Core or .NET 5+ using SOAP and building the ServiceModel.

For .Net Core and .NET 5+ Apps please follow the steps for using the SrvUtil.exe from the docs.microsoft.com page or get the ServiceModel and Client from the Code Examples folder for a starting point. These frameworks do not automatically import in the class and calls from the WSDL and need to be built and developed within your code. The code examples provided are for reference only and intended to be used as a starting point and example of how you can build the SOAP service yourself. Please follow your companies policies and practices for software development. Set your own values for HTTP Bindings and don't store you passwords/secrets in plain text directly in the code.


Full .NET Framework using SOAP and Web References.

This document provides all the basic information you need to start using the ECGridOS API in your Visual Studio project. The following will guide you through getting connected and referencing the API. The following example uses Visual Studio Community Edition 2015 and .Net 4.5. It shows how to add the ECGridOS API web reference to a new C# console project.

The same or similar process for referencing the ECGridOS API should apply to other versions of Visual Studio. Please review your versions Visual Studio documentation on how to perform this. Here is a MSDN page for an additional instruction source.


  1. In your Solutions Explorer, right click on references and select "Add Service Reference".

Add Reference

  1. On the Add Service Reference window, click the "Advanced" button.

Add Service Reference

  1. On the Service Reference Setting window, click the "Add Web Reference" button.

Add Web Reference

  1. On the Add Web Services, enter the URL:https://ecgridos.net/v3.2/prod/ECGridOS.asmx and click the "->" button. Once the API is found click the "Add Reference" button.

Add Web Reference

  1. Once the reference has been added you should be able to see it in the Solution Explorer and .

ECGridOS Reference


Back To ECGridOS Home

Clone this wiki locally