I can't get remoting to work for anything including Project Tracker using CSLA 3 and .NET 3.0
I keep getting HTTP 500 errors Service Not Found. I've tried it on IIS6 and IIS7 and there are no errors in the event viewer on either server.
First I'm wondering if any one has remoting running with CSLA targeting .Net 3?
Everything works fine and WCF worked but we are having problems with limitation in maxRecievedMessageSize.
Thanks,
John
Well we got the WCF working. One thing is DTC is locked down on Vista so we had to enable access.
Still can't get remoting to work on anything with VS2008, CSLA 3.03, and .NET 3
I keep getting HTTP 500 errors Service Not Found. I've tried it on 3 different machines with not success. There are no other errors but what is stated above. This is when I try to go to the portal through the url. I have the web.config configured properly. I also can't get the Project Tracker Remoting working on any of these boxes. All I get is the HTTP 500 error. I've checked all the event logs and nothing is reported.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<add key="CslaAuthentication" value="Csla" />
</appSettings>
<connectionStrings>
<remove name="LocalSqlServer" />
<add name="****" connectionString="data source=***** \Test;initial catalog=****;user id=******;password=******" providerName="System.Data.SqlClient" />
<add name="****" connectionString="data source=*****\Test;initial catalog=****;user id=******" ;password=******" " providerName="System.Data.SqlClient" />
</connectionStrings>
<system.runtime.remoting>
<application>
<service>
<wellknown mode="SingleCall" objectUri="RemotingPortal.rem" type="Csla.Server.Hosts.RemotingPortal, Csla" />
</service>
<channels>
<channel ref="http">
<serverProviders>
<provider ref="wsdl" />
<formatter ref="soap" typeFilterLevel="Full" />
<formatter ref="binary" typeFilterLevel="Full" />
</serverProviders>
</channel>
</channels>
</application>
</system.runtime.remoting>
<system.web>
<compilation debug="true" defaultLanguage="c#">
<assemblies>
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Runtime.Remoting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
</assemblies>
</compilation>
</system.web>
</configuration>
Copyright (c) Marimer LLC