Almost all of the docs and learning modules and postings and such are about deploying the Windows Client as a One Click on IIS.
I have been struggling with a Silverlight deployment ALL DAY!
Please help.
I have tried so many things. The Silverlight client is downloading, the bootstrapper is running, the EntityServer is running, but I can't get the Silverlight Client to connect to the Entity Server no matter how I configure it.
Here's the web config changes I made:
<services>
<service name="EntityService">
<endpoint address="http://devserver/GcsAg/EntityService.svc" binding="customBinding" bindingConfiguration="customBinaryBinding" contract="IdeaBlade.EntityModel.IEntityServiceContract" />
</service>
<service name="IdeaBlade.EntityModel.Server.EntityServer">
<endpoint address="http://devserver/GcsAg/EntityServer.svc" binding="customBinding" bindingConfiguration="customBinaryBinding" contract="IdeaBlade.EntityModel.IEntityServerContract" />
</service>
</services> |
The endpoint tags used to have nothing inside the address="".
I am getting the following error:
The remote server returned an error: NotFound.. If the service is available, then also make sure that the endpoint bindings match between client and server.
The client app.config shows:
<objectServer isDistributed="true" remoteBaseURL="http://devserver/GcsAg" serverPort="80" serviceName="EntityService.svc" /> |
What am I doing wrong? How do I get this to work? Thanks, Simon.
Edited by skingaby - 17-Aug-2009 at 3:17pm