I can start up the EntityService in ServerConsole just find. I can see it waiting and the debuglog says that the EntityService was created.
I try to run my app and as soon as it tries to get the DefaultManager it crashes. Here my ServerConsole.exe.config
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="ideablade.configuration" type="IdeaBlade.Core.Configuration.IdeaBladeSection, IdeaBlade.Core"/>
</configSections>
<logging logFile="DebugLog.xml"/>
<objectServer remoteBaseURL="
http://192.168.1.101" serverPort="9009" serviceName="EntityService" >
<clientSettings isDistributed="true" />
</objectServer>
<!-- Additional configuration can be added to override defaults.
See the sample config files in the Learning Resources for more information.
-->
</ideablade.configuration>
<connectionStrings>
<add name="TicketWareEntities" connectionString="metadata=res://*/TicketWare.csdl|res://*/TicketWare.ssdl|res://*/TicketWare.msl;provider=System.Data.SqlClient;provider connection string="Data Source=192.168.1.103:1433;Initial Catalog=SEIU99;User ID=ususer;Password=thithanh;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient" />
</connectionStrings>
</configuration>
and here is my app.config
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="ideablade.configuration" type="IdeaBlade.Core.Configuration.IdeaBladeSection, IdeaBlade.Core"/>
</configSections>
<logging logFile="DebugLog.xml"/>
<objectServer remoteBaseURL="
http://192.168.1.101" serverPort="9009" serviceName="EntityService.svc" >
<clientSettings isDistributed="true" />
</objectServer>
<!-- Additional configuration can be added to override defaults.
See the sample config files in the Learning Resources for more information.
-->
</ideablade.configuration>
<!--<connectionStrings>
<add name="TicketWareEntities" connectionString="metadata=res://*/TicketWare.csdl|res://*/TicketWare.ssdl|res://*/TicketWare.msl;provider=System.Data.SqlClient;provider connection string="Data Source=DBSERVER;Initial Catalog=SEIU99;User ID=ususer;Password=thithanh;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient" />
</connectionStrings>-->
</configuration>
Am I missing something here?
Bill