Problems Remoting CSLA 3.0.3

Problems Remoting CSLA 3.0.3

Old forum URL: forums.lhotka.net/forums/t/4069.aspx


MrPogo posted on Thursday, December 20, 2007

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

http://www.summerfest.com

 

MrPogo replied on Thursday, December 20, 2007

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

 

ajj3085 replied on Thursday, December 20, 2007

I have remoting working in that configuration.  What is the exact problem? 

MrPogo replied on Friday, December 21, 2007

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>

ajj3085 replied on Friday, December 21, 2007

Are you sure the virtual directory is an application, and that its running under .Net 2.0?

MrPogo replied on Friday, December 21, 2007

I set it up as an application in IIS and assign it to the DefaultAppPool.  It is also set to ASP.NET 2.0 on all tests.  It also is set to Annynomous access since I'm using CSLA authinticaion.

Copyright (c) Marimer LLC