For client testing purposes (no dedicated server yet), I want to configure a windows app in CSLA4 without using the WcfPortal. What settings do I need to do?
Thank you.
To run everything inline in the same process remove/comment the following setting in app.config
<add key="CslaDataPortalProxy" value="-....."/>
If you wish to run a local app server you will need to edit the settings to f.ex:
<add key="CslaDataPortalProxy" value="Csla.DataPortalClient.WcfProxy, Csla"/>
<add key ="CslaDataPortalUrl" value ="http://localhost:21647/WcfPortal.svc"/>
To use the local "server".
JonnyBee,
where will I specify the connection strings?
Thanks.
Any additional settings required for the "server" must be added to the app.config in your windows app.
Got it!
Thanks JonnyBee.
Copyright (c) Marimer LLC