<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>DevForce Community Forum : More client projects connecting to one server</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2010 : More client projects connecting to one server</description>
  <pubDate>Wed, 29 Jul 2026 20:33:58 -700</pubDate>
  <lastBuildDate>Thu, 05 May 2011 07:46:10 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_post_feed.asp?TID=2124</WebWizForums:feedURL>
  <image>
   <title>DevForce Community Forum</title>
   <url>http://www.ideablade.com/forum/forum_images/IdeaBlade_logo_tm.png</url>
   <link>http://www.ideablade.com/forum/</link>
  </image>
  <item>
   <title>More client projects connecting to one server : Woohoo! I have data now! Thanks...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10595#10595</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=308" rel="nofollow">skingaby</a><br /><strong>Subject:</strong> 2124<br /><strong>Posted:</strong> 05-May-2011 at 7:46am<br /><br />Woohoo! &nbsp;I have data now! &nbsp;Thanks for the tip kimj. &nbsp;Once again you have pointed me in the right direction.<div>In my implementation, I added one line that registers the downloaded component with Ideablade and now the unknown type issue is resolved.&nbsp;</div><div>In the end, I have data in a grid in the host app, from an EF Model that was dynamically downloaded and dynamically queried, where the host app has no reference to the query builder and knows nothing about the EF model or resultant type that is displayed in the grid. &nbsp;Cool.</div><div>Here's the code. &nbsp;The one line is highlighted pink.</div><div><br></div><div><pre style="font-family: C&#111;nsolas; font-size: 13px; -: initial; -attachment: initial; -origin: initial; -clip: initial; : white; -: initial initial; -repeat: initial initial; "><span ="Apple-tab-span" style="white-space: pre; color: black; ">	</span>&#091;<span style="color: rgb43, 145, 175; ">Import</span>&#093;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">public</span>&nbsp;<span style="color: rgb43, 145, 175; ">IQueryBuilder</span>&nbsp;QueryBuilder&nbsp;{&nbsp;<span style="color: blue; ">get</span>;&nbsp;<span style="color: blue; ">set</span>;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">private</span>&nbsp;<span style="color: blue; ">void</span>&nbsp;GetQueryBuilderAsync()&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">if</span>&nbsp;(<span style="color: blue; ">this</span>.IsInDesignMode)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">return</span>;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: green; ">//use&nbsp;MEF&nbsp;to&nbsp;get&nbsp;a&nbsp;catalog&nbsp;of&nbsp;the specific report query builder</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">var</span>&nbsp;catalog&nbsp;=&nbsp;<span style="color: blue; ">new</span>&nbsp;<span style="color: rgb43, 145, 175; ">DeploymentCatalog</span>(<span style="color: blue; ">this</span>.SelectedReportType.ReportSpecificXap);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catalog.DownloadCompleted&nbsp;+=&nbsp;<span style="color: blue; ">this</span>.CatalogDownloadCompleted;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catalog.DownloadAsync();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">void</span>&nbsp;CatalogDownloadCompleted(<span style="color: blue; ">object</span>&nbsp;sender,&nbsp;System.ComponentModel.<span style="color: rgb43, 145, 175; ">AsyncCompletedEventArgs</span>&nbsp;e)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">var</span>&nbsp;catalog&nbsp;=&nbsp;(<span style="color: rgb43, 145, 175; ">DeploymentCatalog</span>)sender;<b><font ="Apple-style-span" color="#FF00FF">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;IdeaBlade.Core.Composition.CompositionHost.Add(catalog);</font></b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">var</span>&nbsp;container&nbsp;=&nbsp;<span style="color: blue; ">new</span>&nbsp;<span style="color: rgb43, 145, 175; ">CompositionContainer</span>(catalog);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;container.ComposeParts(<span style="color: blue; ">this</span>);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">this</span>.RaisePropertyChanged(<span style="color: rgb163, 21, 21; ">"ShowFiltersRow"</span>);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</pre></div>]]>
   </description>
   <pubDate>Thu, 05 May 2011 07:46:10 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10595#10595</guid>
  </item> 
  <item>
   <title>More client projects connecting to one server :   You have to tell DevForce...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10593#10593</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=11" rel="nofollow">kimj</a><br /><strong>Subject:</strong> 2124<br /><strong>Posted:</strong> 04-May-2011 at 7:51pm<br /><br />You have to tell DevForce about the new content too, by calling CompositionHost.Add.&nbsp; Are you doing this and still seeing the error?<div>&nbsp;</div><div>Here's more info&nbsp;- <a href="http://drc.ideablade.com/xwiki/bin/view/&#068;ocumentati&#111;n/&#111;n-demand-discovery" target="_blank">http://drc.ideablade.com/xwiki/bin/view/Documentation/on-demand-discovery</a></div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Wed, 04 May 2011 19:51:54 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10593#10593</guid>
  </item> 
  <item>
   <title>More client projects connecting to one server : I have a main app that is loading...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10591#10591</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=308" rel="nofollow">skingaby</a><br /><strong>Subject:</strong> 2124<br /><strong>Posted:</strong> 04-May-2011 at 12:16pm<br /><br /><div>I have a main app that is loading a separate module using MEF. &nbsp;The separate module has its own EntityModel diagram and its own client.SL and server DLL's. &nbsp;The web.config for the host web app has the EDMKEYs set up for both the main app and the separate module. &nbsp;The client DLL is getting loaded from it's XAP correctly and the call is being made as shown below. &nbsp;ExecuteBaseQuery is inside the SL client of the separate module. &nbsp;It is called from the main app. &nbsp;It, in turn, uses the seperate module's EntityManager to get a query and calls ExecuteAsync on it. &nbsp;The BaseQueryCallback method is reached and the code fails on the line "var queryResults = args.Results" because args.Results contains the error shown below.</div><div><span ="Apple-style-span" style="font-family: C&#111;nsolas; font-size: 13px; line-height: 18px; white-space: pre; "><span style="color:blue;"><span ="Apple-tab-span" style="white-space:pre">	</span></span><span style="color: blue; ">public</span>&nbsp;<span style="color: blue; ">void</span>&nbsp;ExecuteBaseQuery(<span style="color: rgb43, 145, 175; ">Action</span>&lt;<span style="color: rgb43, 145, 175; ">QueryExecutionResult</span>&gt;&nbsp;userCallback,&nbsp;<span style="color: blue; ">object</span>&nbsp;userState&nbsp;=&nbsp;<span style="color: blue; ">null</span>)</span></div><div><pre style="font-family: C&#111;nsolas; font-size: 13px; -: initial; -attachment: initial; -origin: initial; -clip: initial; : white; ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">this</span>.BuildBaseQuery().ExecuteAsync(<span style="color: blue; ">this</span>.BaseQueryCallback,&nbsp;<span style="color: blue; ">new</span>&nbsp;<span style="color: rgb43, 145, 175; ">QueryExecutionPayload</span>(userCallback,&nbsp;userState));&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <span style="color:blue;"><span ="Apple-tab-span" style="white-space:pre">	</span>public</span>&nbsp;<span style="color:#2b91af;">IEntityQuery</span>&nbsp;BuildBaseQuery()</pre><pre style="font-family: C&#111;nsolas; font-size: 13px; -: initial; -attachment: initial; -origin: initial; -clip: initial; : white; -: initial initial; -repeat: initial initial; ">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">return</span>&nbsp;((<span style="color: rgb43, 145, 175; ">EdiTransactionReportModelContainer</span>)<span style="color: blue; ">this</span>.EntityManager).EdiTransactionViews;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">public</span>&nbsp;<span style="color: blue; ">void</span>&nbsp;BaseQueryCallback(<span style="color: rgb43, 145, 175; ">EntityQueryOperation</span>&nbsp;args)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">var</span>&nbsp;payload&nbsp;=&nbsp;(<span style="color: rgb43, 145, 175; ">QueryExecutionPayload</span>)&nbsp;args.UserState;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">var</span>&nbsp;queryResults&nbsp;=&nbsp;args.Results;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: blue; ">var</span>&nbsp;result&nbsp;=&nbsp;<span style="color: blue; ">new</span>&nbsp;<span style="color: rgb43, 145, 175; ">QueryExecutionResult</span>(queryResults,&nbsp;payload.UserState);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;payload.UserCallback.Invoke(result);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</pre></div><div>My error messages are:</div><div><br></div><blockquote ="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: n&#111;ne; padding: 0px;"><div>There was an error while trying to serialize parameter http://ideablade.com/EntityModel:entityQuerySurrogate. The InnerException message was 'Type 'IdeaBlade.EntityModel.EntityQueryProxy`1&#091;&#091;EdiTransactionReport.EdiTransactionView, EdiTransactionReport, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null&#093;&#093;' with data contract name 'EntityQueryProxyOfEdiTransactionViewaJAXY_PMZ:http://ideablade.com/EntityModel' is not expected. Add any types not known statically to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding them to the list of known types passed to DataContractSerializer.'. &nbsp;Please see InnerException for more details.</div></blockquote><div><br></div><div>and</div><div><br></div><blockquote ="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: n&#111;ne; padding: 0px;"><div><div>{System.ServiceModel.CommunicationException: There was an error while trying to serialize parameter http://ideablade.com/EntityModel:entityQuerySurrogate. The InnerException message was 'Type 'IdeaBlade.EntityModel.EntityQueryProxy`1&#091;&#091;EdiTransactionReport.EdiTransactionView, EdiTransactionReport, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null&#093;&#093;' with data contract name 'EntityQueryProxyOfEdiTransactionViewaJAXY_PMZ:http://ideablade.com/EntityModel' is not expected. Add any types not known statically to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding them to the list of known types passed to DataContractSerializer.'. &nbsp;Please see InnerException for more details. ---&gt; System.Runtime.Serialization.SerializationException: Type 'IdeaBlade.EntityModel.EntityQueryProxy`1&#091;&#091;EdiTransactionReport.EdiTransactionView, EdiTransactionReport, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null&#093;&#093;' with data contract name 'EntityQueryProxyOfEdiTransactionViewaJAXY_PMZ:http://ideablade.com/EntityModel' is not expected. Add any types not known statically to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding them to the list of known types passed to DataContractSerializer.</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeAndVerifyType(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, Boolean verifyKnownType, RuntimeTypeHandle declaredTypeHandle)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeWithXsiType(XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle objectTypeHandle, Type objectType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle, Type declaredType)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerialize(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)</div><div>&nbsp;&nbsp; at WriteConstantExpressionBlockToXml(XmlWriterDelegator , Object , XmlObjectSerializerWriteContext , ClassDataContract )</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.ClassDataContract.WriteXmlValue(XmlWriterDelegator xmlWriter, Object obj, XmlObjectSerializerWriteContext context)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.WriteDataContractValue(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle declaredTypeHandle)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeAndVerifyType(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, Boolean verifyKnownType, RuntimeTypeHandle declaredTypeHandle)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeWithXsiType(XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle objectTypeHandle, Type objectType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle, Type declaredType)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerialize(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)</div><div>&nbsp;&nbsp; at WriteSerializedExpressionToXml(XmlWriterDelegator , Object , XmlObjectSerializerWriteContext , ClassDataContract )</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.ClassDataContract.WriteXmlValue(XmlWriterDelegator xmlWriter, Object obj, XmlObjectSerializerWriteContext context)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.WriteDataContractValue(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle declaredTypeHandle)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeWithoutXsiType(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle declaredTypeHandle)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerialize(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle)</div><div>&nbsp;&nbsp; at WriteEntityQuerySurrogateToXml(XmlWriterDelegator , Object , XmlObjectSerializerWriteContext , ClassDataContract )</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.ClassDataContract.WriteXmlValue(XmlWriterDelegator xmlWriter, Object obj, XmlObjectSerializerWriteContext context)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.WriteDataContractValue(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle declaredTypeHandle)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeAndVerifyType(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, Boolean verifyKnownType, RuntimeTypeHandle declaredTypeHandle)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializerWriteContext.SerializeWithXsiTypeAtTopLevel(DataContract dataContract, XmlWriterDelegator xmlWriter, Object obj, RuntimeTypeHandle originalDeclaredTypeHandle)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.DataContractSerializer.InternalWriteObjectContent(XmlWriterDelegator writer, Object graph)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.DataContractSerializer.InternalWriteObject(XmlWriterDelegator writer, Object graph)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializer.WriteObjectHandleExceptions(XmlWriterDelegator writer, Object graph)</div><div>&nbsp;&nbsp; at System.Runtime.Serialization.XmlObjectSerializer.WriteObject(XmlDictionaryWriter writer, Object graph)</div><div>&nbsp;&nbsp; at System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter.SerializeParameterPart(XmlDictionaryWriter writer, PartInfo part, Object graph)</div><div>&nbsp;&nbsp; --- End of inner exception stack trace ---</div><div>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityServerProxy.ExecFunc&#091;T&#093;(Func`1 func, Boolean funcWillHandleException)</div><div>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityServerProxy.ExecuteOnServer&#091;T&#093;(Func`1 func, Boolean funcWillHandleException)</div><div>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityServerProxy.Fetch(SessionBundle bundle, IEntityQuerySurrogate query)</div><div>&nbsp;&nbsp; at IdeaBlade.EntityModel.EntityManager.AsyncFetchWorker(AsyncEventArgs asyncArgs)}</div></div></blockquote>]]>
   </description>
   <pubDate>Wed, 04 May 2011 12:16:27 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10591#10591</guid>
  </item> 
  <item>
   <title>More client projects connecting to one server : Yes. I just finished upgrading...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10590#10590</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=308" rel="nofollow">skingaby</a><br /><strong>Subject:</strong> 2124<br /><strong>Posted:</strong> 04-May-2011 at 12:06pm<br /><br />Yes. &nbsp;I just finished upgrading to 6.0.9 and I am still getting this error. &nbsp;Is there something I need to do in the config files to activate this feature?]]>
   </description>
   <pubDate>Wed, 04 May 2011 12:06:40 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10590#10590</guid>
  </item> 
  <item>
   <title>More client projects connecting to one server : This should work with the dynamic...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10254#10254</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=11" rel="nofollow">kimj</a><br /><strong>Subject:</strong> 2124<br /><strong>Posted:</strong> 22-Mar-2011 at 9:50pm<br /><br />This should work with the dynamic module support introduced in 6.0.8.&nbsp; Are you still seeing a problem?<DIV>&nbsp;</DIV><DIV>We also have a DevForce-Caliburn application framework using MEF available on CodePlex if you're interested - <a href="http://devforcecaliburn.codeplex.com/" target="_blank">http://devforcecaliburn.codeplex.com/</A></DIV>]]>
   </description>
   <pubDate>Tue, 22 Mar 2011 21:50:50 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10254#10254</guid>
  </item> 
  <item>
   <title>More client projects connecting to one server : Is there any chance this feature...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10250#10250</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=881" rel="nofollow">jkattestaart</a><br /><strong>Subject:</strong> 2124<br /><strong>Posted:</strong> 22-Mar-2011 at 2:35pm<br /><br /><p>Is there any chance this feature will be available soon, now it is possible to load XAPs on demand.... in v6.0.8</p><div></div>]]>
   </description>
   <pubDate>Tue, 22 Mar 2011 14:35:47 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=10250#10250</guid>
  </item> 
  <item>
   <title>More client projects connecting to one server : In order to send complex queries...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=8405#8405</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=11" rel="nofollow">kimj</a><br /><strong>Subject:</strong> 2124<br /><strong>Posted:</strong> 08-Sep-2010 at 5:46pm<br /><br />In order to send complex queries and their results between a client application and the BOS services, DevForce needs to discover the "known types" involved.&nbsp; These types are the entity types in your domain model, plus any other types which you send between client and server.&nbsp; Currently, DevForce will only find this information from the main application XAP, so if your domain model assembly is in a dynamically loaded XAP DevForce won't find it.&nbsp;<DIV></DIV><DIV></DIV><DIV></DIV><DIV>&nbsp;</DIV><DIV>There is currently not a workaround for this, other than to place your domain model in the main XAP, which may defeat what you're trying to do with MVVM and MEF.&nbsp; We do have an open feature request to support this, but it's not currently on the schedule.</DIV>]]>
   </description>
   <pubDate>Wed, 08 Sep 2010 17:46:05 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=8405#8405</guid>
  </item> 
  <item>
   <title>More client projects connecting to one server : I&amp;#039;n new to DevForce Silverlight...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=8349#8349</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=881" rel="nofollow">jkattestaart</a><br /><strong>Subject:</strong> 2124<br /><strong>Posted:</strong> 03-Sep-2010 at 11:59am<br /><br /><DIV>I'n new to DevForce Silverlight and trying to test some scenario's.</DIV><DIV>&nbsp;</DIV><DIV>The one i am testing now is a Claiburn Micro MVVM application using MEF.</DIV><DIV>this works ok, but now i added an extra siliverlight application to my solution with its own XAP, which is loaded when i click a button trough a MEF catalog functionality. This works ok until i want to reachs the server Devforce model.</DIV><DIV>It returns the following error. I already tried to add a suggested ServiceReferences.ClientConfig with no luck.</DIV><DIV>I think it has someting to do with accessing the webserver objects.</DIV><DIV>&nbsp;</DIV><DIV>---</DIV><DIV>&nbsp;</DIV><DIV>Query failed: IdeaBlade.EntityModel.EntityServerException: There was an error while trying to serialize parameter <a href="http://ideablade.com/EntityModel:entityQuerySurrogate" target="_blank">http://ideablade.com/EntityModel:entityQuerySurrogate</A>. The InnerException message was 'Type 'IdeaBlade.EntityModel.EntityQueryProxy`1&#091;&#091;SKComCenter.Customer, SKComCenter.CustomerModule, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null&#093;&#093;' with data contract name 'EntityQueryProxyOfCustomermuN0sGwD:http://ideablade.com/EntityModel' is not expected. Add any types not known statically to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding them to the list of known types passed to DataContractSerializer.'.&nbsp; Please see InnerException for more details. ---&gt; System.ServiceModel.CommunicationException: There was an error while trying to serialize parameter <a href="http://ideablade.com/EntityModel:entityQuerySurrogate" target="_blank">http://ideablade.com/EntityModel:entityQuerySurrogate</A>. The InnerException message was 'Type 'IdeaBlade.EntityModel.EntityQueryProxy`1&#091;&#091;SKComCenter.Customer, SKComCenter.CustomerModule, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null&#093;&#093;' with data contract name 'EntityQueryProxyOfCustomermuN0sGwD:http://ideablade.com/EntityModel' is not expected. Add any types not known statically to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding them to the list of known types passed to DataContractSerializer.'.&nbsp; Please see InnerException for more details. ---&gt; System.Runtime.Serialization.SerializationException: Type 'IdeaBlade.EntityModel.EntityQueryProxy`1</DIV>]]>
   </description>
   <pubDate>Fri, 03 Sep 2010 11:59:04 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=2124&amp;PID=8349#8349</guid>
  </item> 
 </channel>
</rss>