Vibrant discussion about CSLA .NET and using the framework to build great business applications.
I am using CSLA 3.8 in my application. I am trying to set up data portal in the application server with the following section in the web.config:
<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>
The above does not seem to work. Is it not possible to use this code block to server up CSLA 3.8 data portal? Or do I HAVE to use WCF with CSLA 3.8 data portal?
Any help is highly appreciated.
Thanks,
Sameer
This is how I have mine setup:
<
system.runtime.remoting> <
application> <
service> <
wellknown mode="SingleCall" objectUri="RemotingPortal.rem" type="Csla.Server.RemotingPortal, Csla"/> </
</
channels> <
channel ref="http"> <
serverProviders> <
provider ref="wsdl"/> <
formatter ref="binary" typeFilterLevel="Full"/> </
serverProviders> </
channel> </
channels> </
application> </
system.runtime.remoting>