New Posts New Posts RSS Feed: NullReferenceException during Entity creation
  FAQ FAQ  Forum Search   Calendar   Register Register  Login Login

NullReferenceException during Entity creation

 Post Reply Post Reply
Author
nazbrok View Drop Down
Newbie
Newbie
Avatar

Joined: 26-Jan-2011
Location: Paris
Posts: 21
Post Options Post Options   Quote nazbrok Quote  Post ReplyReply Direct Link To This Post Topic: NullReferenceException during Entity creation
    Posted: 28-Jul-2011 at 9:40am
Thanks this solved my problem.


Back to Top
kimj View Drop Down
IdeaBlade
IdeaBlade
Avatar

Joined: 09-May-2007
Posts: 1391
Post Options Post Options   Quote kimj Quote  Post ReplyReply Direct Link To This Post Posted: 28-Jul-2011 at 8:06am
Hi nazbrok,
 
Since the problem only occurs the first time you construct the entity, it's likely a timing issue between DevForce's loading of metadata for the dynamic content and your constructor call.  
 
When dynamic content is loaded there are two possible events to listen for, depending on how you load the content.  The CompositionHost will fire a Recomposed event, and if you're using a DynamicXap, that will fire a Loaded event.  In either case, the event signals that DevForce has finished loading the dynamic content.  In your case, DevForce hasn't yet constructed metadata for entities in your model, so that ugly NullReferenceException is thrown because the metdata is missing.
 
Here's information from the DRC on the various ways to load dynamic content, and how to listen for its events - http://drc.ideablade.com/xwiki/bin/view/Documentation/on-demand-discovery.
 
Back to Top
nazbrok View Drop Down
Newbie
Newbie
Avatar

Joined: 26-Jan-2011
Location: Paris
Posts: 21
Post Options Post Options   Quote nazbrok Quote  Post ReplyReply Direct Link To This Post Posted: 28-Jul-2011 at 6:29am
Well I still have the problem. 

during the ctor of my ViewModel I want to create an entity and it fails the first time but will success all the others times.
It's like the first time something is missing (an assembly not loaded or found ?).


in the server I have :
Patients.Server.Domain : this is were the edmx is located. This assembly is perfectly added into the CompositionHost 

In the client I have :
Patients.Server.Domain : hosting the Designer.cs file and my repository from the edmx above.
PreAdmission.Client.Implementation : hosting the Views/Viewmodels, this assembly have a reference to Patients.Server.Domain (copy local is set to true)


Here is the method loading the xap where my view/vewmodel is located.

       void LoadXap(){
            var catalog = new DeploymentCatalog(this._webUrl);
            catalog.DownloadCompleted += (s, a) =>{
                if (a.Error == null){

                    IdeaBlade.Core.Composition.CompositionHost.Add(catalog);
                    ...
              };
            catalog.DownloadAsync();  
       }

The uri of the catalog is "\ClientBin\PreAdmission\PreAdmission.Client.Implementation.xap" which is the assembly 
having a reference to Patients.Client.Domain


the exception raised by the first access to "var patient = new Patient();" :

{System.NullReferenceException: La référence d'objet n'est pas définie à une instance d'un objet.
   à IdeaBlade.EntityModel.Entity..ctor()
   à Patients.Server.Domain.Patient..ctor()
   à Patients.Server.Domain.Patient.InternalCreatePatient()
   à Patients.Server.Domain.Patient.CreatePatient()
   à Patients.Client.Domain.PatientClientRepository.CreatePatient() 
   à PreAdmission.Client.Implementation.PreAdAccueilViewModel..ctor(IUnityContainer container, INavigationManager navigationManager)
   à BuildUp_PreAdmission.Client.Implementation.PreAdAccueilViewModel(IBuilderContext )
   à Microsoft.Practices.ObjectBuilder2.DynamicMethodBuildPlan.BuildUp(IBuilderContext context)
   à Microsoft.Practices.ObjectBuilder2.BuildPlanStrategy.PreBuildUp(IBuilderContext context)
   à Microsoft.Practices.ObjectBuilder2.StrategyChain.ExecuteBuildUp(IBuilderContext context)}
   
   
 Below, the Logfile
 
 
 2011-07-28 15:17:36  IdeaBlade.Core.TraceFileXmlLogger:GetLogHeader ------------ Log Created ------------ 
2011-07-28 15:17:35  IdeaBlade.Core.IdeaBladeConfig:Initialize Initializing configuration ... 
2011-07-28 15:17:35  IdeaBlade.Core.Composition.PartsCatalog:LoadCatalog MEF assembly probing started: 28/07/2011 15:17:35. If this takes a long time, use IdeaBlade.Core.Composition.CompositionHost to specify/restrict which assemblies to probe. 
2011-07-28 15:17:35  IdeaBlade.Core.Composition.PartsCatalog:LoadCatalog MEF assembly probing completed: 28/07/2011 15:17:35 
2011-07-28 15:17:35  IdeaBlade.Core.Composition.CompositionHost:.ctor Probe Assemblies: Common.Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null :: Patients.Server.Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null :: Server.Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null If this list is unnecessarily large, use CompositionHost.SearchPatterns to modify the search critieria for probed assemblies. If this list does not contain the assembly(ies) holding your a) domain model, b) custom interface implementations, and c) POCO/known types then your application may not work correctly. Ensure that these assemblies are available in the exe/bin folder, and if using CompositionHost.SearchPatterns that the patterns are set appropriately. 
2011-07-28 15:17:35  IdeaBlade.Core.IdeaBladeConfig:InitializationStatusCallback IdeaBlade License: 'DataCenterServer, EnterpriseUniv', KeyDate: 07/01/2011, AllowedSessions: 10000. Found on Assembly: 'Patients.Server.Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' 
2011-07-28 15:17:35  IdeaBlade.Core.Configuration.ServerSettingsElement:ConstrainSettingsBasedOnLicenseCore The configured SupportedClientApplicationType is Both 
2011-07-28 15:17:35  IdeaBlade.Core.Configuration.ServerSettingsElement:ConstrainSettingsBasedOnLicenseCore Could not find a valid license to enable session-agnostic load balancing. 
2011-07-28 15:17:36  IdeaBlade.Core.Configuration.ServerSettingsElement:ConstrainSettingsBasedOnLicenseCore Could not find a valid license to enable session-agnostic load balancing. 
2011-07-28 15:17:36  IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for non-default 'ITraceLoggerProvider' and found no matching exports. 
2011-07-28 15:17:36  IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for default 'ITraceLoggerProvider' and found 'IdeaBlade.Core.DefaultLoggerProvider'. 
2011-07-28 15:17:36  IdeaBlade.Core.TraceFns:CompleteTracingInitialization IdeaBladeConfig resolution: File: C:\{Dev.SL}\DT\{Dev}\MyGap\Root\Web\Server.Web\web.config - found but failed to deserialize 
2011-07-28 15:17:36  IdeaBlade.Core.TraceFns:CompleteTracingInitialization IdeaBladeConfig resolution: File: C:\{Dev.SL}\DT\{Dev}\MyGap\Root\Web\Server.Web\logging.config - found but failed to deserialize 
2011-07-28 15:17:36  IdeaBlade.Core.TraceFns:CompleteTracingInitialization IdeaBladeConfig resolution: File: C:\{Dev.SL}\DT\{Dev}\MyGap\Root\Web\Server.Web\packages.config - found but failed to deserialize 
2011-07-28 15:17:36  IdeaBlade.Core.TraceFns:CompleteTracingInitialization IdeaBladeConfig resolution: File: C:\{Dev.SL}\DT\{Dev}\MyGap\Root\Web\Server.Web\Web.config - found but failed to deserialize 
2011-07-28 15:17:36  IdeaBlade.Core.TraceFns:CompleteTracingInitialization IdeaBladeConfig resolution: File: C:\{Dev.SL}\DT\{Dev}\MyGap\Root\Web\Server.Web\Web.Debug.config - found but failed to deserialize 
2011-07-28 15:17:36  IdeaBlade.Core.TraceFns:CompleteTracingInitialization IdeaBladeConfig resolution: File: C:\{Dev.SL}\DT\{Dev}\MyGap\Root\Web\Server.Web\Web.Release.config - found but failed to deserialize 
2011-07-28 15:17:36  IdeaBlade.Core.TraceFns:CompleteTracingInitialization IdeaBladeConfig resolution: Warning: No .config file found - using default configuration. 
2011-07-28 15:17:36  IdeaBlade.Core.TraceFns:CompleteTracingInitialization IdeaBladeConfig resolution: Logging file: C:\{Dev.SL}\DT\{Dev}\MyGap\Root\Web\Server.Web\log/DebugLog.xml 
2011-07-28 15:17:36  IdeaBlade.Core.TraceFns:CompleteTracingInitialization Bound to .NET runtime version 4.0.30319.235 
2011-07-28 15:17:36  IdeaBlade.Core.TraceFns:CompleteTracingInitialization DevForce version 6.1.1.1 
2011-07-28 15:17:57  IdeaBlade.EntityModel.RemoteServiceFns:AddSerializationBehavior Using DC serializer for EntityService 
2011-07-28 15:17:57  IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for any 'ServiceHostEvents' and found 'IdeaBlade.EntityModel.Server.ServiceHostEvents'. 
2011-07-28 15:17:57  IdeaBlade.EntityModel.Server.EntityServiceHostFactory:CreateServiceHost EntityService listening on http://localhost:27829/EntityService.svc 
2011-07-28 15:17:57  IdeaBlade.EntityModel.Server.EntityServiceHostFactory:CreateServiceHost EntityService listening on http://localhost:27829/EntityService.svc/sl 
2011-07-28 15:17:57  IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for any 'EntityServiceApplication' and found 'IdeaBlade.EntityModel.EntityServiceApplication'. 
2011-07-28 15:17:57  IdeaBlade.EntityModel.EntityServiceApplication:OnServiceStartup EntityService created 
2011-07-28 15:17:57  IdeaBlade.EntityModel.Server.EntityServer:.ctor EntityServer created for DataSourceExtension: [None], CompositionContext: -IbDefault- 
2011-07-28 15:17:57  IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for any 'IEntityQueryExecutor' and found 'IdeaBlade.EntityModel.Edm.EdmQueryExecutor'. 
2011-07-28 15:17:57  IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for any 'IEntityQueryExecutor' and found 'IdeaBlade.EntityModel.Edm.PassthruEsqlQueryExecutor'. 
2011-07-28 15:17:57  IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for any 'IEntityQueryExecutor' and found 'IdeaBlade.EntityModel.Edm.StoredProcQueryExecutor'. 
2011-07-28 15:17:57  IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for any 'IEntityQueryExecutor' and found 'IdeaBlade.EntityModel.Edm.UdtQueryExecutor'. 
2011-07-28 15:17:57  IdeaBlade.EntityModel.Server.SessionManager:GetLoginManager Anonymous access: enabled 
2011-07-28 15:17:57  IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for non-default 'IEntityLoginManager' and found no matching exports. 
2011-07-28 15:17:57  IdeaBlade.EntityModel.Server.SessionManager:GetLoginManager No Login Manager found. User will always be logged in as Guest, regardless of credentials. 
2011-07-28 15:17:57  IdeaBlade.EntityModel.KnownTypeHelper:<GetMarkedKnownTypes>b__13 Probed for known types and found Common.Domain.DtEntityBase 
2011-07-28 15:17:57  IdeaBlade.EntityModel.KnownTypeHelper:<GetMarkedKnownTypes>b__13 Probed for known types and found Patients.Server.Domain.Patient 
2011-07-28 15:17:57  IdeaBlade.EntityModel.KnownTypeHelper:<GetMarkedKnownTypes>b__13 Probed for known types and found Patients.Server.Domain.Tier 
2011-07-28 15:17:57  IdeaBlade.EntityModel.KnownTypeHelper:<GetMarkedKnownTypes>b__13 Probed for known types and found Patients.Server.Domain.Nationalites 
2011-07-28 15:17:57  IdeaBlade.EntityModel.KnownTypeHelper:<GetMarkedKnownTypes>b__13 Probed for known types and found Patients.Server.Domain.PatientObservations 
2011-07-28 15:17:57  IdeaBlade.EntityModel.KnownTypeHelper:<GetMarkedKnownTypes>b__13 Probed for known types and found Patients.Server.Domain.Personne 
2011-07-28 15:17:57  IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for non-default 'IKnownTypeProvider' and found no matching exports. 
2011-07-28 15:17:57  IdeaBlade.EntityModel.RemoteServiceFns:AddSerializationBehavior Using DC serializer for EntityServer 
2011-07-28 15:17:57  IdeaBlade.EntityModel.Server.EntityServerHostFactory:CreateServiceHost EntityServer listening on http://localhost:27829/EntityServer.svc 
2011-07-28 15:17:57  IdeaBlade.EntityModel.Server.EntityServerHostFactory:CreateServiceHost EntityServer listening on http://localhost:27829/EntityServer.svc/sl 
2011-07-28 15:17:58 Guest - 1 IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for any 'EntityServerQueryInterceptor' and found 'IdeaBlade.EntityModel.Server.EntityServerQueryInterceptor'. 
2011-07-28 15:17:58 Guest - 1 IdeaBlade.EntityModel.Server.EntityServerQueryInterceptor:ExecuteQuery Fetch ... value(IdeaBlade.EntityModel.EntityQueryProxy`1[Patients.Server.Domain.Patient]) 
2011-07-28 15:17:58 Guest - 1 IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for default 'IDataSourceKeyResolver' and found 'IdeaBlade.EntityModel.DefaultDataSourceKeyResolver'. 
2011-07-28 15:17:58 Guest - 1 IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for non-default 'IDataSourceKeyResolver' and found no matching exports. 
2011-07-28 15:17:58 Guest - 1 IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for any 'IIdGenerator' and found 'IdeaBlade.EntityModel.StoreGeneratedIdGenerator'. 
2011-07-28 15:17:58 Guest - 1 IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for non-default 'IConcurrencyStrategy' and found no matching exports. 
2011-07-28 15:17:58 Guest - 1 IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for default 'IConcurrencyStrategy' and found 'IdeaBlade.EntityModel.DefaultConcurrencyValueSetter'. 
2011-07-28 15:17:58 Guest - 1 IdeaBlade.EntityModel.Edm.EdmKey:FindClientAssembly DataSourceKey probing started at 28/07/2011 15:17:58 
2011-07-28 15:17:58 Guest - 1 IdeaBlade.EntityModel.Edm.EdmKey:FindClientAssembly DataSourceKey: 'PatientEntities' found in assembly 'Patients.Server.Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' at 28/07/2011 15:17:58 
2011-07-28 15:21:08  IdeaBlade.EntityModel.Server.RemoteEntityService:ShutdownEntityServers Shutting down Entity Servers 

Back to Top
nazbrok View Drop Down
Newbie
Newbie
Avatar

Joined: 26-Jan-2011
Location: Paris
Posts: 21
Post Options Post Options   Quote nazbrok Quote  Post ReplyReply Direct Link To This Post Posted: 26-Jul-2011 at 3:16am
It's ok I found it !
IdeaBlade.Core.Composition.CompositionHost.Add(catalog);
Back to Top
nazbrok View Drop Down
Newbie
Newbie
Avatar

Joined: 26-Jan-2011
Location: Paris
Posts: 21
Post Options Post Options   Quote nazbrok Quote  Post ReplyReply Direct Link To This Post Posted: 26-Jul-2011 at 2:13am
Hi Hi Denisk,

You were right. I forgot to add the .Clear and I didn't put it in the right place in the global.asax. Now it's the first operation I do on startutp and it probes my assembly.

The model isn't in the client, I didn't explain it right (english issue on my side :))

The model is in an assembly (name it AssemblyA) on the server. 
On the client I have another assembly (AssemblyB) where I did put the xxx.Designer.cs file and my repository.
Another assembly have my ViewModel (AssemblyC) and use the assemblyB. 

To works, I still have to put a reference of AssemblyB in my Silverlight Application. It doesn't discover the service ... Is this part also related to the CompositionHost ?


  

Back to Top
DenisK View Drop Down
IdeaBlade
IdeaBlade


Joined: 25-Aug-2010
Posts: 715
Post Options Post Options   Quote DenisK Quote  Post ReplyReply Direct Link To This Post Posted: 25-Jul-2011 at 6:19pm
Hi nazbrok;

Did you clear the SearchPatterns before adding to it? i.e.

IdeaBlade.Core.Composition.CompositionHost.SearchPatterns.Clear();
IdeaBlade.Core.Composition.CompositionHost.SearchPatterns.Add("MyClientAssemblyWithMyModel.dll");

If the above doesn't work, could you post the following information?

1. Your debug log or trace messages after adding the above 2 lines.

2. How your project is structured. A screenshot of your solution would help. I'm particularly interested in why you're hosting your models in the client application and not on your web project. Maybe I just misunderstood your statement.
Back to Top
nazbrok View Drop Down
Newbie
Newbie
Avatar

Joined: 26-Jan-2011
Location: Paris
Posts: 21
Post Options Post Options   Quote nazbrok Quote  Post ReplyReply Direct Link To This Post Posted: 25-Jul-2011 at 1:56pm
Hi,

I found out the problem, here is what I did :

1. I added to my silverlight application a reference to the assembly on the client hosting our Devforce autogenerated file. Before this reference existed only in the assembly where I have my ViewModel.
2. then I added to the web.config the connection string for my model.

Now I don't like this solution because I lose all the benefits from MEF, I need to be able to discover those services.

I tried to add in the global.asax (as suggested in the error message) the following line (without adding a reference to my assembly in the client) but it doesn't work : 
IdeaBlade.Core.Composition.CompositionHost.SearchPatterns.Add("MyClientAssemblyWithMyModel.dll"); 

Is there a way to not have to add a reference to all my assemblies hosting my models  in the client application ?


regards,
Back to Top
nazbrok View Drop Down
Newbie
Newbie
Avatar

Joined: 26-Jan-2011
Location: Paris
Posts: 21
Post Options Post Options   Quote nazbrok Quote  Post ReplyReply Direct Link To This Post Posted: 24-Jul-2011 at 2:10pm
Hi,

I have a problem accessing DevForce entities and  EntityManager from my silverlight app. It's an application using Unity and MEF for service discovery. The architecture of this application was initialy done for a RIA approach but I am testing it with DevForce.

In the ViewModel, whenever I try to create a new entity (using the syntax "new myentity()" or "myentitymanager.CreateEntity<myentity>().") I get a NullReferenceException.

In the .web service I added all the ideablade reference with copy local to true. In the global.asax I added  HostingEnvironment.RegisterVirtualPathProvider(new IdeaBlade.EntityModel.Web.ServiceVirtualPathProvider());

http://localhost:27829/EntityService.svc show a page saying something like "the metadata is actually desactivated"

Any idea what could be the problem or where should I look  ?


Here is the exception log :
   à IdeaBlade.EntityModel.Entity..ctor()
   à MyApp.Server.Web.Patients..ctor()
   à MyApp.Client.Implementation.PreAdAccueilViewModel..ctor(IUnityContainer container, INavigationManager navigationManager)
   à BuildUp_MyApp.Client.Implementation.PreAdAccueilViewModel(IBuilderContext )
   à Microsoft.Practices.ObjectBuilder2.DynamicMethodBuildPlan.BuildUp(IBuilderContext context)
   à Microsoft.Practices.ObjectBuilder2.BuildPlanStrategy.PreBuildUp(IBuilderContext context)
   à Microsoft.Practices.ObjectBuilder2.StrategyChain.ExecuteBuildUp(IBuilderContext context) 
 
Here are the TraceViewer's log :

21 24/07/2011 22:39:49 IdeaBlade.EntityModel.RemoteServiceFns:AddSerializationBehavior Using DC serializer for EntityService
22 24/07/2011 22:39:49 IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for any 'ServiceHostEvents' and found 'IdeaBlade.EntityModel.Server.ServiceHostEvents'.
23 24/07/2011 22:39:49 IdeaBlade.EntityModel.Server.EntityServiceHostFactory:CreateServiceHost EntityService listening on http://localhost:27829/EntityService.svc
24 24/07/2011 22:39:49 IdeaBlade.EntityModel.Server.EntityServiceHostFactory:CreateServiceHost EntityService listening on http://localhost:27829/EntityService.svc/sl
25 24/07/2011 22:39:49 IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for any 'EntityServiceApplication' and found 'IdeaBlade.EntityModel.EntityServiceApplication'.
26 24/07/2011 22:39:49 IdeaBlade.EntityModel.EntityServiceApplication:OnServiceStartup EntityService created
27 24/07/2011 22:39:49 IdeaBlade.EntityModel.Server.EntityServer:.ctor EntityServer created for DataSourceExtension: [None], CompositionContext: -IbDefault-
28 24/07/2011 22:39:49 IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for any 'IEntityQueryExecutor' and found 'IdeaBlade.EntityModel.Edm.EdmQueryExecutor'.
29 24/07/2011 22:39:49 IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for any 'IEntityQueryExecutor' and found 'IdeaBlade.EntityModel.Edm.PassthruEsqlQueryExecutor'.
30 24/07/2011 22:39:49 IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for any 'IEntityQueryExecutor' and found 'IdeaBlade.EntityModel.Edm.StoredProcQueryExecutor'.
31 24/07/2011 22:39:49 IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for any 'IEntityQueryExecutor' and found 'IdeaBlade.EntityModel.Edm.UdtQueryExecutor'.
32 24/07/2011 22:39:49 IdeaBlade.EntityModel.Server.SessionManager:GetLoginManager Anonymous access: enabled
33 24/07/2011 22:39:49 IdeaBlade.Core.Composition.CompositionHost:CheckSingleExport CompositionContext: '-IbDefault-' - Probed for non-default 'IEntityLoginManager' and found no matching exports.
34 24/07/2011 22:39:49 IdeaBlade.EntityModel.Server.SessionManager:GetLoginManager No Login Manager found. User will always be logged in as Guest, regardless of credentials.
35 24/07/2011 22:39:49 IdeaBlade.Core.Composition.CompositionHost:CheckMultiExport CompositionContext: '-IbDefault-' - Probed for non-default 'IKnownTypeProvider' and found no matching exports.
36 24/07/2011 22:39:49 IdeaBlade.EntityModel.RemoteServiceFns:AddSerializationBehavior Using DC serializer for EntityServer
37 24/07/2011 22:39:49 IdeaBlade.EntityModel.Server.EntityServerHostFactory:CreateServiceHost EntityServer listening on http://localhost:27829/EntityServer.svc
38 24/07/2011 22:39:49 IdeaBlade.EntityModel.Server.EntityServerHostFactory:CreateServiceHost EntityServer listening on http://localhost:27829/EntityServer.svc/sl

Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down