I have the following scenario:
- Program P (can take upto 30 minutes to complete) on box X.
- WinForms application on box Y - this gathers the input criteria for P.
- Because P takes so long I want it to always run on box X and not Y.
I was adviced to try using a WCF Service Application on X. Send a message to X from Y via a service contract and this would then fire program P.
Is this a valid use of a WCF Service App project?
I have followed these two walk-throughs:
I now have two projects that seem to talk to each other. I can run the following code from the console app, the method moveData that is in the WCF project successfully updates a database with some information based on the parameters:
static void Main(string[] args) {
Service1Client sc = new Service1Client();
sc.moveData(0,1);
sc.Close();
}
I'm very new to this sort of technology - please bear in mind re. the following questions:
It only works when I've got the WCF project open or running in Visual Studio - is this as expected? in other words should the consuming app throw an error if the WCF is not running?
i.e. If I close the instance of Vis Studio with the WCF project and then try running the consuming application I get an error System.ServiceModel.EndpointNotFoundException was unhandled There was no endpoint listening at...followed by address of service
How do I let box X make use of this WCF? What do need to install or deploy to that box?
app.config in the consumer console app looks like the following:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IService1" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://....svc" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IService1" contract="IService1"
name="BasicHttpBinding_IService1" />
</client>
</system.serviceModel>
</configuration>