User-1000095884 posted
Hi,
I'm very new to SOA & SOAP and my main question is how do I start with this and where by using .NET 3.5 & ASP.Net.
The service is linked to my project by using "Add service reference" but what now?
If you are trying to consume the service from your client, yes, you can create a service proxy by adding a service reference, if the service is added properly, you can call the service at your client side, e.g
using (ServiceReference1.Service1Client proxy = new ServiceReference1.Service1Client())
{
Console.WriteLine(proxy.GetData(4).ToString());
};
Console.ReadLine();
Best Regards.