Live Framework ForumDiscuss and ask questions about the Live Framework, the Live Framework SDK, and the Live Framework Tools© 2009 Microsoft Corporation. All rights reserved.Wed, 25 Nov 2009 15:51:34 Z69520c48-6c92-427a-a87c-30f88ac1bb39http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/130912c6-7437-4e11-aafb-42bb00dcd9f0http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/130912c6-7437-4e11-aafb-42bb00dcd9f0Dean Wardhttp://social.msdn.microsoft.com/Profile/en-US/?user=Dean%20WardLive ID with Active STS / WS-TrustHi all,<br/> <br/> I'm attempting to use Geneva's WSTrustClient to retrieve a token from Live ID that is subsequently passed to a WCF service hosted in Azure, using .NET Access Control Services as its STS.<br/> <br/> Whenever I execute an Issue request from WSTrustClient to the endpoint at https://dev.login.live.com/wstlogin.srf, I get an Internal Server Error 500 with no other information<br/> <br/> Looking at the outgoing traffic using fiddler shows the following SOAP envelope (names changed to protect the innocent!):<br/> <br/> <div style="color:Black;background-color:White"> <pre lang=x-xml>&lt;s:Envelope xmlns:s=&quot;http://www.w3.org/2003/05/soap-envelope&quot; xmlns:a=&quot;http://www.w3.org/2005/08/addressing&quot; xmlns:u=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd&quot;&gt; &lt;s:Header&gt; &lt;a:Action s:mustUnderstand=&quot;1&quot;&gt;http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue&lt;/a:Action&gt; &lt;ClientInfo xmlns=&quot;http://schemas.microsoft.com/wlid&quot;&gt; &lt;ApplicationID&gt;1234567890&lt;/ApplicationID&gt; &lt;/ClientInfo&gt; &lt;a:MessageID&gt;urn:uuid:dbc9fbc5-e051-41e4-8700-037cb6809de9&lt;/a:MessageID&gt; &lt;a:ReplyTo&gt; &lt;a:Address&gt;http://www.w3.org/2005/08/addressing/anonymous&lt;/a:Address&gt; &lt;/a:ReplyTo&gt; &lt;a:To s:mustUnderstand=&quot;1&quot;&gt;https://dev.login.live.com/wstlogin.srf&lt;/a:To&gt; &lt;o:Security s:mustUnderstand=&quot;1&quot; xmlns:o=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt; &lt;u:Timestamp u:Id=&quot;_0&quot;&gt; &lt;u:Created&gt;2009-06-28T03:53:28.052Z&lt;/u:Created&gt; &lt;u:Expires&gt;2009-06-28T03:58:28.052Z&lt;/u:Expires&gt; &lt;/u:Timestamp&gt; &lt;o:UsernameToken u:Id=&quot;uuid-617af7d6-fd7e-496c-8828-e32323c58018-1&quot;&gt; &lt;o:Username&gt;username@domain.com&lt;/o:Username&gt; &lt;o:Password o:Type=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText&quot;&gt;password&lt;/o:Password&gt; &lt;/o:UsernameToken&gt; &lt;/o:Security&gt; &lt;/s:Header&gt; &lt;s:Body&gt; &lt;t:RequestSecurityToken xmlns:t=&quot;http://schemas.xmlsoap.org/ws/2005/02/trust&quot;&gt; &lt;wsp:AppliesTo xmlns:wsp=&quot;http://schemas.xmlsoap.org/ws/2004/09/policy&quot;&gt; &lt;a:EndpointReference&gt; &lt;a:Address&gt;http://solutionname.accesscontrol.windows.net/issued_for_certificate&lt;/a:Address&gt; &lt;/a:EndpointReference&gt; &lt;/wsp:AppliesTo&gt; &lt;t:RequestType&gt;http://schemas.xmlsoap.org/ws/2005/02/trust/Issue&lt;/t:RequestType&gt; &lt;/t:RequestSecurityToken&gt; &lt;/s:Body&gt; &lt;/s:Envelope&gt;</pre> <br/></div> The ApplicationID was retrieved from the project settings in the Azure development portal. Am I doing something wrong here? It looks as though it should work?! The code I'm using is:<br/> <pre lang="x-c#">class Program { static void Main(string[] args) { SecurityToken securityToken; using (WSTrustClient wsTrustClient = CreateWSTrustClient()) { wsTrustClient.ClientCredentials.UserName.UserName = &quot;username@domain.com&quot;; wsTrustClient.ClientCredentials.UserName.Password = &quot;password&quot;; RequestSecurityToken requestToken = new RequestSecurityToken(RequestTypeConstants.Issue); requestToken.AppliesTo = new EndpointAddress(&quot;http://solutionname.accesscontrol.windows.net/issued_for_certificate&quot;); using (new OperationContextScope(wsTrustClient.InnerChannel)) { OperationContext.Current.OutgoingMessageHeaders.Add( new LiveClientInfoHeader { ApplicationId = &quot;1234567890&quot; }); RequestSecurityTokenResponse requestTokenResponse; securityToken = wsTrustClient.Issue(requestToken, out requestTokenResponse); } } } private static WSTrustClient CreateWSTrustClient() { WSHttpBinding wsHttpBinding = new WSHttpBinding(SecurityMode.TransportWithMessageCredential); wsHttpBinding.Security.Message.EstablishSecurityContext = false; wsHttpBinding.Security.Message.NegotiateServiceCredential = false; wsHttpBinding.Security.Message.ClientCredentialType = MessageCredentialType.UserName; wsHttpBinding.Security.Transport.ClientCredentialType = HttpClientCredentialType.None; return new WSTrustClient( wsHttpBinding, new EndpointAddress(&quot;https://dev.login.live.com/wstlogin.srf&quot;), TrustVersion.WSTrustFeb2005, new ClientCredentials()); } } private class LiveClientInfoHeader : MessageHeader { public override string Name { get { return &quot;ClientInfo&quot;; } } public override string Namespace { get { return &quot;http://schemas.microsoft.com/wlid&quot;; } } public string ApplicationId { get; set; } protected override void OnWriteHeaderContents(XmlDictionaryWriter writer, MessageVersion messageVersion) { writer.WriteStartElement(&quot;ApplicationID&quot;, this.Namespace); writer.WriteValue(this.ApplicationId); writer.WriteEndElement(); } }</pre> <div style="color:Black;background-color:White"></div> Any help would be greatly appreciated!<br/> <br/> Thanks &amp; Regards,<br/> <br/> Dean Ward<br/> Developer<br/> iPrinciples LtdSun, 28 Jun 2009 04:12:01 Z2009-11-25T15:51:33Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/fb7d1b1e-a361-494f-a183-461fb65b760chttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/fb7d1b1e-a361-494f-a183-461fb65b760cjerry johnhttp://social.msdn.microsoft.com/Profile/en-US/?user=jerry%20johnWhy <p>Why all browsers not work in my computer</p>Wed, 25 Nov 2009 13:33:12 Z2009-11-25T13:33:13Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/32d07166-915d-4047-9aa2-6828365e30b6http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/32d07166-915d-4047-9aa2-6828365e30b6Munish Bhargavhttp://social.msdn.microsoft.com/Profile/en-US/?user=Munish%20BhargavWhat is the status of Live Framework after PDC-09?Hi, <div>As we all know that Live Framework CTP got closed on Aug 08,2009 at that time Microsoft announced that live</div> <div>framework will be available after PDC-09. </div> <div>Now I want to know what is the status of Live Framework Now.</div> <div>Also I want to read the all the announced in PDC -09. Please refer something. </div> <div>Thanks</div>Wed, 25 Nov 2009 06:47:45 Z2009-11-25T08:45:53Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/c92d8184-039b-4e3c-99d6-bc7a64c0c9eahttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/c92d8184-039b-4e3c-99d6-bc7a64c0c9eaDonBaechtelhttp://social.msdn.microsoft.com/Profile/en-US/?user=DonBaechtelLive Mesh Beta Check for Updates Fails with ErrorI am running the Live Framework SDK and Live Mesh on Win XP SP3. I am signed into Live Mesh Beta and it seems to be working OK. But I ask Live Mesh Beta to Check for Updates using the applet, after some time I get an error &quot;Some updats were not configured. [80072EFD].&quot;<br/><br/>I signed out of Live Mesh, exited, restarted Live Mesh and signed in. Everytime I run the Check for Updates, I get the same error. <br/><br/>How can I find out what is wrong and fix it?Wed, 19 Aug 2009 21:09:07 Z2009-11-20T06:16:51Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/23b1a5b8-4f9c-4a24-8d46-392dfc039153http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/23b1a5b8-4f9c-4a24-8d46-392dfc039153Fishy Petehttp://social.msdn.microsoft.com/Profile/en-US/?user=Fishy%20PeteDeveloping Against The Live FrameworkI built a Live Framework application on the CTP some months back. I have been recently been asked to bring that back to life so I can demonstrate the types of applications we could build on the live framework. However, I noticed that the CTP came offline in Sept. What are my options here. I really need to get this back up and running.  <div><br/></div> <div>Thanks</div> <div>Pete</div><hr class="sig">PeteWed, 04 Nov 2009 17:38:00 Z2009-11-11T10:11:46Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/6bd2d735-100b-40fe-8043-3c6fe1ee1eabhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/6bd2d735-100b-40fe-8043-3c6fe1ee1eabFabio Castagninohttp://social.msdn.microsoft.com/Profile/en-US/?user=Fabio%20CastagninoThe domain name is already in use by another developer or project. <p>Hi all,</p> <p>I have the following problem:<br/>i trying to register my web site to a live services and I get the following error: <br/>The domain name is already in use by another developer or project.</p> <p>This is true.. because the domain was registered with an old user accout. Now that user account is closed.. <br/>And I'll trying to register with another user account. :)</p> <p>It is possible to deregister the old live services? or it is possible to reassociate the old service to the new account?<br/><br/>I can't post on this forum all data of my live service for security reason, but I konw all LiveID, AppID, secret key, domain, around this problem.<br/>It is possible to contact Microsoft Support for the Azure Live Services by mail?<br/>This is an urgent problem..<br/><br/>Any solutions are welcome! :)<br/><br/><br/>Fabio Castagnino</p><hr class="sig">Fabio, Microsoft Student EvangelistFri, 30 Oct 2009 22:51:19 Z2009-11-04T14:11:08Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/6b5558cc-1d04-4528-b401-af79ae42ace6http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/6b5558cc-1d04-4528-b401-af79ae42ace6Clark Liuhttp://social.msdn.microsoft.com/Profile/en-US/?user=Clark%20LiuWhat is the problem with my domain name? Why I get "Invalid application domain name"?Hi all,<br/><br/>I am very worried that my domain can not be accepted during adding delegated authentication for my own live service. I alway get the warning message &quot;<span style="color:red">Invalid application domain name</span>&quot;, but that is a real and correct domain, why Azure does not accept it?<br/><br/>Did anyboby encounter this issue same with it? Is the that domain was broken or filtered out? <br/><br/>Any assistance would be appreciated.<br/>Wed, 05 Aug 2009 14:18:41 Z2009-10-27T07:35:06Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/6eb76559-8029-47d8-a29e-b49730ca17d2http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/6eb76559-8029-47d8-a29e-b49730ca17d2Munish Bhargavhttp://social.msdn.microsoft.com/Profile/en-US/?user=Munish%20BhargavHow to add and delete mesh object locally.<div>I am able to connect to Live Framework &quot;locally&quot;. Even able to retrieve the mesh object and the resources under them.</div> <div>But not able add and delete mesh object locally.</div> <div>Is it possible to add and delete mesh object locally? If yes then how?</div> <div>Thanks in advance</div> <div>Munish</div>Fri, 23 Oct 2009 11:49:55 Z2009-10-26T04:03:58Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/f67f7aa7-3c3e-4474-88e4-22b24ff60a85http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/f67f7aa7-3c3e-4474-88e4-22b24ff60a85Muralicharanhttp://social.msdn.microsoft.com/Profile/en-US/?user=MuralicharanProblem accessing the project in Azure servixes developer portal<h1><font style="font-size:10px">Hi</font></h1>I am getting the following problem while accessing my project configured in the azure services developer portal for accessing the windows live access. Previously I was able to view my settings and I was able to edit the settings. But now when I click on the project name, I am getting the following error report. Please advise me on what I need to do to resolve this issue.<br><br><h1><font style="font-size:10px">Problem Report</font></h1> <h2><font style="font-size:10px"> Please supply the following reference information when contacting support. </font></h2> <h2><font style="font-size:10px">Reference #:</font></h2><font style="font-size:10px"><span>76b909a9-7baa-4dee-8868-3754e758dc36 / 02</span><br></font> <h2><font style="font-size:10px">Reference Time:</font></h2><font style="font-size:10px"><span>2/8/2009 8:11:39 PM</span></font> Mon, 09 Feb 2009 06:45:50 Z2009-10-22T07:28:28Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/228b20ae-4ad8-4493-8102-7fc80585a34ehttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/228b20ae-4ad8-4493-8102-7fc80585a34ehrusakhttp://social.msdn.microsoft.com/Profile/en-US/?user=hrusakreturn URL does not updateHi,<br /> I needed to update the return URL for the delegated authentication. I did so in the Service Component Properties, consequently tested it, but I was redirected to the old URL. I logged back in to Azure to recheck the new URL is set, and it is all right there. Is there a time delay before the updated URL is used? Or do I have to regenerate the Secret Key upon changing the return URL? (I didn't)<br /> Thanks.Fri, 16 Oct 2009 14:51:37 Z2009-10-16T21:41:49Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/7f155757-1772-4362-9be8-5f2726e3bfcdhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/7f155757-1772-4362-9be8-5f2726e3bfcddanlucrafthttp://social.msdn.microsoft.com/Profile/en-US/?user=danlucraftLost control of my application domain on Azure forever?Hi <div><br /></div> <div>rather embarrassingly, I created a Windows Live account for my company to register our Live application, and then lost the Live ID. I have created a new account (and carefully written down the new ID) but because I had created a Service Component in the previous account associated with my application's domain, it now won't let me create another Service Component for that domain. So I'm a a bit stuck.</div> <div><br /></div> <div>Is it possible to, or can anyone from Microsoft help me, get control of my domain back?</div> <div><br /></div> <div>Thanks</div> <div><br /></div> <div>Dan</div>Wed, 14 Oct 2009 15:42:51 Z2009-10-20T10:27:18Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/83437e22-6ca9-4a5f-9744-b33a818b798dhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/83437e22-6ca9-4a5f-9744-b33a818b798dKevin Hoffmanhttp://social.msdn.microsoft.com/Profile/en-US/?user=Kevin%20HoffmanConnectivity Issues to user-ctpI'm having sporadic connectivity issues to user-ctp. I authenticate just fine, but then when I get to step 2 of my deploy process, it fails to connect to the user-ctp site. I am currently having this problem on roughly 75% of my attempts to debug. <hr size="1" align="left" width="25%">The .NET Addict - http://dotnetaddict.dotnetdevelopersjournal.comSun, 09 Nov 2008 15:58:14 Z2009-10-14T23:00:43Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/253ecc41-a105-41ae-8012-41716a59b058http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/253ecc41-a105-41ae-8012-41716a59b058nick.hauensteinhttp://social.msdn.microsoft.com/Profile/en-US/?user=nick.hauensteinLive SkyDrive APIsRight now on the Live Services SDK documentation on the MSDN library, it lists Live Services User Data, but then that expands only to Contacts, Photos, and Application Based Storage.<br><br>It seems like there are a lot of other Live offerings with APIs provided, but there's a big gap when it comes to SkyDrive. Are there any plans to develop a fully featured SkyDrive API?Tue, 28 Oct 2008 20:07:09 Z2009-10-16T21:18:19Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/3b00e071-a83c-4793-978f-63ed898435c4http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/3b00e071-a83c-4793-978f-63ed898435c4ntom-taylorhttp://social.msdn.microsoft.com/Profile/en-US/?user=ntom-taylorActually make it to the 'Create a new service component' page<p class=MsoNormal>I am having an absolute nightmare of a time trying to test my windows live login scripts (PHP) on the live server.</p> <p class=MsoNormal>I’m being sent all over the place by multiple sites telling me to do lots of different things;</p> <p class=MsoNormal> </p> <p class=MsoListParagraph style="text-indent:-18pt"><span style="font-family:Symbol"><span>·<span style="font-family:'Times New Roman';font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal">         </span> </span> </span> This page (<a href="http://msdn.microsoft.com/en-us/library/bb676626.aspx">http://msdn.microsoft.com/en-us/library/bb676626.aspx</a> ) tells me I need to go to the ‘Azure Services Developer Portal’ and create a project.</p> <p class=MsoNormal> </p> <p class=MsoListParagraph style="text-indent:-18pt"><span style="font-family:Symbol"><span>·<span style="font-family:'Times New Roman';font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal">         </span> </span> </span> So I go to <a href="http://go.microsoft.com/fwlink/?LinkID=144070">http://go.microsoft.com/fwlink/?LinkID=144070</a></p> <p class=MsoNormal> </p> <p class=MsoListParagraph style="text-indent:-18pt"><span style="font-family:Symbol"><span>·<span style="font-family:'Times New Roman';font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal">         </span> </span> </span> It says after filling in a few pages of info I should see the ‘Create a new service component’ page. I don’t see t his.</p> <p class=MsoNormal style="text-indent:36pt">Instead I see: “If you want to create a new project you will have to purchase a new Azure Platform subscription on the <a href="http://azure.msolctp.com/">Microsoft Online Services Portal.</a> ”</p> <p class=MsoListParagraph> </p> <p class=MsoListParagraph style="text-indent:-18pt"><span style="font-family:Symbol"><span>·<span style="font-family:'Times New Roman';font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal">         </span> </span> </span> Once I then get to <a href="https://azure.msolctp.com/Site/Services/Azure/Signup.aspx">https://azure.msolctp.com/Site/Services/Azure/Signup.aspx</a> I can then not proceed because I do not have a promotion code.</p> <p class=MsoListParagraph> </p> <p class=MsoListParagraph style="text-indent:-18pt"><strong><span style="font-family:Symbol;font-weight:normal"><span>·<span style="font-family:'Times New Roman';font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal">         </span> </span> </span> </strong> I have also been over to ‘Microsoft Connect’ and registered / setup to get myself a Windows Azure product key, from here: <a href="https://connect.microsoft.com/productkey/myproductkeys.aspx?SiteID=681">https://connect.microsoft.com/productkey/myproductkeys.aspx?SiteID=681</a>  - This gives me a project in the <a href="https://windows.azure.com/">https://windows.azure.com</a> page, but the project page only allows me to create 1 of 2 new services, Storage or Hosted Services...  I still cannot find the ‘<strong><span style="font-family:'Calibri','sans-serif'">Create a new service component</span> </strong> <strong><span style="font-family:'Calibri','sans-serif';font-weight:normal">’ page.</span> </strong></p> <p class=MsoNormal> </p> <p class=MsoNormal>Please help me get the <strong>‘Live Services: Api’</strong> so I can get this windows Live Login plugged into my site.</p>Wed, 23 Sep 2009 09:50:15 Z2009-09-26T04:25:17Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/75595aea-c147-451e-9ca9-365a43de19aahttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/75595aea-c147-451e-9ca9-365a43de19aaQuilnuxhttp://social.msdn.microsoft.com/Profile/en-US/?user=QuilnuxMissing link on new pagesI saw the Windows Azure (Cloud) team changed the look of the Azure and .NET pages (SQL Azure looks the same on my end). These new pages (<a href="https://windows.azure.com">https://windows.azure.com</a>) are missing a link to Live Services. In order for me to get there I have to access SQL Azure (from the other CTP link) and get to it that way. Once I'm on the Live Services page it looks like the new layout so that's why I thought you guys may have forgotten to add it to the new pages.<hr class="sig">Owner, Quilnet SolutionsFri, 18 Sep 2009 14:22:49 Z2009-09-21T13:02:20Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/5f391058-9080-433f-aa4b-14fe6f9e666fhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/5f391058-9080-433f-aa4b-14fe6f9e666fRandolph Widjajahttp://social.msdn.microsoft.com/Profile/en-US/?user=Randolph%20Widjajaafter deploying bidnow in azure, cant use live services<p>After deploying project bidnow, I want to login or register with my live account. But after a couple a seconds it returns to the homepage, without showing the  live login windows. Is there something wrong in my configuration file or is it a bug in bidnow application?<br/><br/> <table class=section border=0 cellspacing=0 cellpadding=0> <tbody> <tr> <td class=sectionLeft>Subscription ID:</td> <td>5DBFEE7F-8E0C-4BA9-A7E5-0A4E6AA5BE83</td> </tr> </tbody> </table> http://rwservices1.cloudapp.net<br/><br/><br/>Here is my configuration file:<br/><br/>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;<br/>&lt;ServiceConfiguration xmlns:xsi=&quot;<a href="http://www.w3.org/2001/XMLSchema-instance">http://www.w3.org/2001/XMLSchema-instance</a>&quot; xmlns:xsd=&quot;<a href="http://www.w3.org/2001/XMLSchema">http://www.w3.org/2001/XMLSchema</a>&quot; serviceName=&quot;&quot; xmlns=&quot;<a href="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration">http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration</a>&quot;&gt;<br/>  &lt;Role name=&quot;BidNow.Web&quot;&gt;<br/>    &lt;ConfigurationSettings&gt;<br/>      &lt;Setting name=&quot;AccountName&quot; value=&quot;rwstorage1&quot; /&gt;<br/>      &lt;Setting name=&quot;AccountSharedKey&quot; value=&quot;hidden&quot; /&gt;<br/>      &lt;Setting name=&quot;BlobStorageEndpoint&quot; value=&quot;<a href="http://blob.core.windows.net">http://blob.core.windows.net</a>&quot; /&gt;<br/>      &lt;Setting name=&quot;QueueStorageEndpoint&quot; value=&quot;<a href="http://queue.core.windows.net">http://queue.core.windows.net</a>&quot; /&gt;<br/>      &lt;Setting name=&quot;TableStorageEndpoint&quot; value=&quot;<a href="http://table.core.windows.net">http://table.core.windows.net</a>&quot; /&gt;<br/>      &lt;Setting name=&quot;wll_appid&quot; value=&quot;hidden&quot; /&gt;<br/>      &lt;Setting name=&quot;wll_secret&quot; value=&quot;hidden&quot; /&gt;<br/>      &lt;Setting name=&quot;wll_securityalgorithm&quot; value=&quot;wsignin1.0&quot; /&gt;<br/>      &lt;Setting name=&quot;wll_returnurl&quot; value=&quot;<a href="http://rwservices1.cloudapp.net/LiveIdHandler.aspx">http://rwservices1.cloudapp.net/LiveIdHandler.aspx</a>&quot; /&gt;<br/>      &lt;Setting name=&quot;wll_policyurl&quot; value=&quot;<a href="http://rwservices1.cloudapp.net/policy.html">http://rwservices1.cloudapp.net/policy.html</a>&quot; /&gt;<br/>      &lt;Setting name=&quot;wll_appurl&quot; value=&quot;Mesh/Applications/HUEEJABAWI4UBPM4NUDT5FJDJ4&quot; /&gt;<br/>      &lt;Setting name=&quot;bidnow_url&quot; value=&quot;<a href="http://rwservices1.cloudapp.net&quot;/">http://rwservices1.cloudapp.net&quot;/</a>&gt;<br/>    &lt;/ConfigurationSettings&gt;<br/>    &lt;Instances count=&quot;1&quot; /&gt;<br/>    &lt;Certificates /&gt;<br/>  &lt;/Role&gt;<br/>  &lt;Role name=&quot;BidNow.Worker&quot;&gt;<br/>    &lt;ConfigurationSettings&gt;<br/>      &lt;Setting name=&quot;AccountName&quot; value=&quot;rwstorage1&quot; /&gt;<br/>      &lt;Setting name=&quot;AccountSharedKey&quot; value=&quot;hidden&quot; /&gt;<br/>      &lt;Setting name=&quot;BlobStorageEndpoint&quot; value=&quot;<a href="http://blob.core.windows.net">http://blob.core.windows.net</a>&quot; /&gt;<br/>      &lt;Setting name=&quot;QueueStorageEndpoint&quot; value=&quot;<a href="http://queue.core.windows.net">http://queue.core.windows.net</a>&quot; /&gt;<br/>      &lt;Setting name=&quot;TableStorageEndpoint&quot; value=&quot;<a href="http://table.core.windows.net">http://table.core.windows.net</a>&quot; /&gt;<br/>      &lt;Setting name=&quot;bidnow_url&quot; value=<a href="http://rwservices1.cloudapp.net">http://rwservices1.cloudapp.net</a> /&gt;<br/>    &lt;/ConfigurationSettings&gt;<br/>    &lt;Instances count=&quot;2&quot; /&gt;<br/>    &lt;Certificates /&gt;<br/>  &lt;/Role&gt;<br/>&lt;/ServiceConfiguration&gt;<br/><br/><br/></p>Fri, 11 Sep 2009 23:29:52 Z2009-09-18T13:00:38Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/8109d1f6-88d6-4037-8731-716bdb84187fhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/8109d1f6-88d6-4037-8731-716bdb84187fJohnWei777http://social.msdn.microsoft.com/Profile/en-US/?user=JohnWei777Access Windows Live Space Photo by Live Framework SDK?<p>Hi <br>Dear all<br><br>I have survied to find out how to aceess my photos on the windows live space.<br><br>There was a Windows live photo API CTP , but it seems to be deprecated.<br><br>It seems that there is no official api (except RSS feed)to access photos in windows live space.<br><br>So I switch to Live Framework SDK, try to figure out if this one can help to access my data such as <br>photo,blogs in windows live space. <br><br>As my understanding, the live framework sdk seems possible to access data in live mesh but imposssbile to access data in windows live space. <br><br>The data in windows live space and in live mesh were not connected and different. <br><br>Am I right? Do I miss something?<br><br>Please show me some directions to access (include download/upload) my photo in Windows live space.<br>Or just tell me there is no way to do this.<br><br><br>Thanks for a thousand times.<br><span style="font-size:32pt"><span style="font-family:Arial">Regards<br><br></span></p></span>Fri, 06 Mar 2009 03:14:01 Z2009-09-18T07:40:57Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/07288003-5feb-44d6-9f11-b95f1e80a188http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/07288003-5feb-44d6-9f11-b95f1e80a188Cryptyyhttp://social.msdn.microsoft.com/Profile/en-US/?user=CryptyyLive Service - Msn Contact List ASP sample<div> <div> <div>Hi, </div> <div><br/></div> <div>Classic asp and &quot;Live Service - MSN Contact List&quot; I want to receive data. &quot;Live service&quot; is not about the classic asp example I can not find the solution. I'm getting the error code, error description could not reach the solution, but it still researched. I wonder where I would make mistakes. </div> <div><br/></div> <div>Sample code and error output ... </div> <div><br/></div> <div>Regards.</div> </div> </div> <div><br/></div> <div>&lt;%</div> <div><br/></div> <div><span style="white-space:pre"> </span>ConsentToken = URLDecode(Request(&quot;ConsentToken&quot;))</div> <div><span style="white-space:pre"> </span></div> <div><span style="white-space:pre"> </span>deltData = Split(ConsentToken,&quot;=&quot;)</div> <div><span style="white-space:pre"> </span>lidData = Split(ConsentToken,&quot;=&quot;)</div> <div><span style="white-space:pre"> </span>delt = Replace(deltData(1),&quot;&amp;skey&quot;,&quot;&quot;)</div> <div><span style="white-space:pre"> </span>lid = lidData(5)</div> <div><br/></div> <div>Set xmlHTTP = Server.CreateObject(&quot;MSXML2.ServerXMLHTTP&quot;)</div> <div><span style="white-space:pre"> </span>xmlHTTP.open &quot;GET&quot;, &quot;https://livecontacts.services.live.com/users/@L@<strong>&quot;&amp; lid &amp;&quot;</strong>/rest/LiveContacts/Contacts&quot;, false, &quot;&quot;,&quot;utf-8&quot;</div> <div>        xmlHTTP.setRequestHeader &quot;Content-Type&quot;, &quot;application/xml; charset=utf-8&quot;</div> <div>        xmlHTTP.SetRequestHeader &quot;Authorization&quot;, &quot;DelegatedToken dt=<strong>&quot;&amp; delt &amp;&quot;</strong>&quot;</div> <div>        xmlHTTP.send </div> <div><span style="white-space:pre"> </span></div> <div><span style="white-space:pre"> </span></div> <div><br/></div> <div>        strStatus = xmlHTTP.Status</div> <div><span style="white-space:pre"> </span>statusText = xmlHTTP.statusText</div> <div>%&gt;</div> <div><br/></div> <div><br/></div> <div>Response:</div> <div><br/></div> <div>4 (status)</div> <div>401</div> <div><br/></div> <div> </div> <div>--------------------</div> <div> <div>'Error Codes.</div> <div>'http://msdn.microsoft.com/en-us/library/bb463952.aspx</div> </div> <div><br/></div> <div> <table style="border-collapse:collapse;width:827px;font-size:11px;margin-bottom:5px;margin-left:5px;margin-top:5px;margin-right:10px;border:1px solid #dddddd" border=0> <tbody> <tr style="vertical-align:top"> <td style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#ffffff;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:#cccccc;border-right-color:#d5d5d3;border-bottom-color:#cccccc;border-left-color:#cccccc;font-family:Verdana;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;text-align:left;vertical-align:top;font-size:11px;margin-top:1px;margin-right:1px;margin-bottom:1px;margin-left:1px;overflow-x:auto;overflow-y:auto"> <p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px">401</p> </td> <td style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#ffffff;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:#cccccc;border-right-color:#d5d5d3;border-bottom-color:#cccccc;border-left-color:#cccccc;font-family:Verdana;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;text-align:left;vertical-align:top;font-size:11px;margin-top:1px;margin-right:1px;margin-bottom:1px;margin-left:1px;overflow-x:auto;overflow-y:auto"> <p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px">Unauthorized</p> </td> <td style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#ffffff;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:#cccccc;border-right-color:#d5d5d3;border-bottom-color:#cccccc;border-left-color:#cccccc;font-family:Verdana;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;text-align:left;vertical-align:top;font-size:11px;margin-top:1px;margin-right:1px;margin-bottom:1px;margin-left:1px;overflow-x:auto;overflow-y:auto"> <p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px">The caller is not authorized to perform this action on the target address book.</p> </td> </tr> <tr style="vertical-align:top"> <td style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#ffffff;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:#cccccc;border-right-color:#d5d5d3;border-bottom-color:#cccccc;border-left-color:#cccccc;font-family:Verdana;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;text-align:left;vertical-align:top;font-size:11px;margin-top:1px;margin-right:1px;margin-bottom:1px;margin-left:1px;overflow-x:auto;overflow-y:auto"> <p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px">401</p> </td> <td style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#ffffff;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:#cccccc;border-right-color:#d5d5d3;border-bottom-color:#cccccc;border-left-color:#cccccc;font-family:Verdana;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;text-align:left;vertical-align:top;font-size:11px;margin-top:1px;margin-right:1px;margin-bottom:1px;margin-left:1px;overflow-x:auto;overflow-y:auto"> <p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px">Unauthorized</p> </td> <td style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#ffffff;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:#cccccc;border-right-color:#d5d5d3;border-bottom-color:#cccccc;border-left-color:#cccccc;font-family:Verdana;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;text-align:left;vertical-align:top;font-size:11px;margin-top:1px;margin-right:1px;margin-bottom:1px;margin-left:1px;overflow-x:auto;overflow-y:auto"> <p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px">Invalid <em>CallerID</em>, Missing <em>CallerID</em> value or the Family Safety Assertion failed.</p> </td> </tr> </tbody> </table> </div> <div><br/></div> <div><br/></div>Thu, 10 Sep 2009 08:15:24 Z2009-10-20T03:26:11Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/15f09359-a2e8-4c7b-a169-44a182b1c65bhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/15f09359-a2e8-4c7b-a169-44a182b1c65bVikas-Ahujahttp://social.msdn.microsoft.com/Profile/en-US/?user=Vikas-AhujaImportant Update to Live Services<p><span style="font-family:'Calibri','sans-serif'"><span style="font-size:small">David Treadwell announced Friday, August 21, 2009 that the Live Framework CTP will be unavailable as of September 8. First, a very big thanks to all who tried out our CTP and provide invaluable feedback. All that we learned will be used to in future offerings. As David says in his post:</span></span></p> <p style="margin-left:0.5in"><span style="font-family:'Calibri','sans-serif'"><span style="font-size:small">&quot;At the Professional Developer Conference 2008, we gave the developer community access to the technical preview of the Live Framework. The Live Framework is core to our vision of providing you with a consistent programming interface. Now we are working to integrate existing services, controls and the Live Framework into the next release of Windows Live. Your feedback continues to help us build the best possible offerings for Windows Live users, for you and for your customers. &quot;</span></span></p> <p><span style="font-family:'Calibri','sans-serif'"><span style="font-size:small">Read the full announcement </span><a href="http://dev.live.com/blogs/devlive/archive/2009/08/21/500.aspx"><span style="font-size:small">here</span></a><span style="font-size:small">. </span></span></p> <p><span style="font-family:'Calibri','sans-serif'"><span style="font-size:small">We will set the Live Framework Forum to read-only as of Sept. 15, 2009</span></span></p> <p><span style="font-family:'Calibri','sans-serif'"><span style="font-size:small">The Live Framework Team</span></span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-size:12pt"><span style="font-family:Calibri"> </span></span></p><hr class="sig">This posting is provided &quot;AS IS&quot; with no warranties, and confers no rights.Tue, 25 Aug 2009 02:18:56 Z2009-10-29T13:58:06Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/6600858d-5876-4181-8b79-ef0dc4852e30http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/6600858d-5876-4181-8b79-ef0dc4852e30DonBaechtelhttp://social.msdn.microsoft.com/Profile/en-US/?user=DonBaechtelLive Framework Client MeshAppMonitor.exe consumes too much CPU and RAM when IdleI have an Intel Xeon based Windows Server 2008 system. When the <strong>Live Framework Client's MeshAppMonitor.exe</strong> is loaded and running <strong>Idle</strong>, it consumes too much memory and CPU resources and the system runs <strong>very slow and sluggish</strong>. With the MeshAppMonitor.exe shut down the system runs quickly and is much more responsive.<br/><br/>There is no reason why an <strong>Idle</strong> system monitor should have such a huge affect on Server performance.<br/><br/>MSFT should do some work to drastically reduce the impact of the MeshAppMonitor when Live Framework is not being used.<br/><br/>What can be done to reduce the impact of the <strong>MeshAppMonitor.exe</strong> when <strong>idle,</strong> other than terminating it?<br/>Why does <strong>MeshAppMonitor.exe</strong> consume so much CPU and RAM when Idle?Fri, 12 Jun 2009 18:03:54 Z2009-09-08T05:56:24Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/15b6ecf6-04f2-48cb-a86b-f5b39589f060http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/15b6ecf6-04f2-48cb-a86b-f5b39589f060Nicholas Bedworthhttp://social.msdn.microsoft.com/Profile/en-US/?user=Nicholas%20BedworthMesh scalingSo let's say I invite 10,000, or perhaps 100,000l, or maybe 1,000,000 of my closest friends to connect to a Mesh object, which could be a shared data file, or a Silverlight MEWA.<br/><br/>What happens? Is it fundamentally Mesh's &quot;problem&quot; to bring in the resources to make a &quot;hot&quot; file available with reasonable responsiveness? In other words, can we essentially use Mesh as a high abstracted service that allows us to &quot;fire and forget&quot; with respect to &quot;publishing&quot; data or applications?<br/><br/>I'm not sure if this question is part of the throttling limit discussion, but would like to hear people's idea on this.<hr class="sig">Nicholas Bedworth, CTO DigitalDirect Development CorporationWed, 15 Jul 2009 18:54:41 Z2009-09-08T05:55:41Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/9edb2a55-c55e-4d2c-ad72-1eddf167e6f0http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/9edb2a55-c55e-4d2c-ad72-1eddf167e6f0T.M.tw09http://social.msdn.microsoft.com/Profile/en-US/?user=T.M.tw09Windows Live contacts retrieval is unstable (404 error)dear there:<br/> <br/> I already finished a web project registered on Azure, which retrieves Windows Live contacts. It works, from the web server. However, when I try to use the web site to repeat the contacts retrieval, some PCs work, but some other PCs don't work (I saw 404 error). I tried both Internet Explorer 7.0/8.0 and Firefox, the result are all the same. Can anybody give me some clue? Your help is extremely appreciated!<br/> <br/> tm1813@gmail.com<br/>Mon, 20 Jul 2009 00:02:08 Z2009-09-08T05:54:51Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/041b6bab-e7c8-4421-a215-6f55c7647f40http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/041b6bab-e7c8-4421-a215-6f55c7647f40jz5http://social.msdn.microsoft.com/Profile/en-US/?user=jz5How to refresh a token? mesh-ctp.com always return error 1 <span class=weaslResult><span class=weaslSentence>Hi. <br/> <br/> </span> <span class=weaslSentence>I tried to <span class=weaslCritique>refresh</span> an authentication token <span class=weaslCritique>with Live</span> Framework and Delegated Authentication. <br/> </span> <span class=weaslSentence>I refer to <span class=weaslCritique>MSDN</span> Library and team blog.<br/> <br/> http://msdn.microsoft.com/en-us/library/dd239047.aspx<br/> http://blogs.msdn.com/liveframework/archive/2009/01/12/delegated-authentication-part-ii-managing-tokens.aspx<br/> <br/> The sample code on that blog doesn't work. </span> <span class=weaslSentence>Probably, the reason is Refresh Token URL that create by <span class=weaslCritique>&quot;GetRefreshConsentTokenUrl&quot; method</span> is wrong. </span> <span class=weaslSentence><br/> First, the URL inclde invalid file name `` appconsent.aspx''. </span> <span class=weaslSentence>`` RefreshToken.aspx'' is correct. Second,</span> <span class=weaslSentence> not include required <span class=weaslCritique>parameter</span> &quot;delt&quot;. <br/> </span> <span class=weaslSentence><br/> I fixed the two thing and tried to get new token. </span> <span class=weaslSentence>But The consent-refresh site retruns {`` error'': '' 1''} <br/> How can I get new token? <br/> <br/> </span> <span class=weaslSentence>Thanks </span> </span>Mon, 29 Jun 2009 12:15:21 Z2009-09-08T05:53:55Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/a52245a8-f0d0-460f-986e-802b336c99c6http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/a52245a8-f0d0-460f-986e-802b336c99c6shashank yaduvanshihttp://social.msdn.microsoft.com/Profile/en-US/?user=shashank%20yaduvanshiremoval from datafeedsHi, <div>I am facing a problem in removing entries from datafeeds. Once in a while, the datafeed removal fails (Web.Exception found) and I cant seem to decipher why it happens. The following is the code snippet:</div> <div> <div>            </div> <div>            DataEntry de;</div> <div>            lock (devaddlock)</div> <div>            {</div> <div>                if (SyncLevel &gt;= 1) dfdtom.DataEntries.Load();</div> <div>                de = dfdtom.DataEntries.Entries.FirstOrDefault();</div> <div>                if (de == null)</div> <div>                {</div> <div>                    operations.Release();</div> <div>                    break;</div> <div>                }</div> <div>                dfdtom.DataEntries.Remove(de);</div> <div>                if (SyncLevel &gt;= 2) dfdtom.Update();</div> <div>            }</div> <div><br/></div> <div>dfdtom is the datafeed. This is the only place where I remove entries from this datafeed and the snippet is protected by a lock. Can someone please help me with this?</div> <div>Thanks</div> <div>Shashank</div> </div>Thu, 16 Jul 2009 05:26:35 Z2009-09-08T05:53:15Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/e5bf0429-753a-4ca7-864e-d0d1a217ba09http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/e5bf0429-753a-4ca7-864e-d0d1a217ba09shashank yaduvanshihttp://social.msdn.microsoft.com/Profile/en-US/?user=shashank%20yaduvanshiProblem with notifications on datafeeds<p class=MsoNormal>Hi,</p> <p class=MsoNormal>As part of my project, I have to use live mesh framework for communication between different devices through different datafeeds.</p> <p class=MsoNormal> </p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">dfdtomadd.DataEntries.ChangeNotificationReceived += (s, e) =&gt;</span></p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">            {</span></p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">                <span style="color:blue">if</span> (verbose)</span></p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">                    <span style="color:#2b91af">Console</span>.WriteLine(<span style="color:#a31515">&quot;Syncing on device addition dtom - Stage:{0}&quot;</span>, numDevices);</span></p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">                OndtomaddNotification();</span></p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">            };</span></p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">            dfdtomdel.DataEntries.ChangeNotificationReceived += (s, e) =&gt;</span></p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">            {</span></p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">                <span style="color:blue">if</span> (verbose)</span></p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">                    <span style="color:#2b91af">Console</span>.WriteLine(<span style="color:#a31515">&quot;Syncing on device deletion dtom - Stage:{0}&quot;</span>, numDevices);</span></p> <p class=MsoNormal style="text-autospace:none"><span style="font-size:10.0pt;font-family:'Courier New'">                OndtomdelNotification();</span></p> <p class=MsoNormal><span style="font-size:10.0pt;font-family:'Courier New'">            };</span></p> <p class=MsoNormal><span style="font-size:10.0pt;font-family:'Courier New'"> </span></p> <p class=MsoNormal><span style="font-size:10.0pt;font-family:'Courier New'">When there are changes made to different feeds (almost simultaneously or very close to each other), I seem to receuive only one notification for one of the feeds and the notifications for the other feeds are never received. Can someone tell me what the problem is and what sort of guarantees are given by notifications in the live mesh framework? Also, what is the workaround for my problem?</span></p> <p class=MsoNormal><span style="font-size:10.0pt;font-family:'Courier New'"> </span></p> <p class=MsoNormal><span style="font-size:10.0pt;font-family:'Courier New'">Thanks</span></p> <p class=MsoNormal><span style="font-size:10.0pt;font-family:'Courier New'">Shashank Yaduvanshi</span></p> <p class=MsoNormal><span style="font-size:10.0pt;font-family:'Courier New'">Intern</span></p> <p class=MsoNormal><span style="font-size:10.0pt;font-family:'Courier New'">RSE, MSR India</span></p>Thu, 04 Jun 2009 06:44:45 Z2009-09-08T05:51:57Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/e9943298-57ec-4be5-b63d-4825546943b0http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/e9943298-57ec-4be5-b63d-4825546943b0Sonia Bansalhttp://social.msdn.microsoft.com/Profile/en-US/?user=Sonia%20BansalLive Resource BrowserHi,<br/><br/>When I try to connect to Cloud/ local by the browser, it asks me for the User Id and Passowrd , and then just it just gets hanged,<br/><br/>It does not give me any error also.<br/><br/>Can anyone tell me what me the problem?Mon, 27 Jul 2009 04:11:39 Z2009-09-08T05:50:59Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/0fdc319f-296d-4aa6-a6a0-00c397af94e4http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/0fdc319f-296d-4aa6-a6a0-00c397af94e4Shawn Davisonhttp://social.msdn.microsoft.com/Profile/en-US/?user=Shawn%20DavisonWhat are the length limitations for DataEntryResource fields?By trial and error, we have found that the length limitation for the 'Title' field in a DataEntryResource is 254 characters.  If you exceed this length, HTTP 413 errors will be returned.<br/><br/>Summary is presumeably longer; however, we don't' know what the max length is.<br/><br/>I am looking for length limitations for Summary and other Live Framework Resource Model fields, including:<br/><br/> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:small"><span style="font-family:Calibri">AttributeExtensions </span></span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:small"><span style="font-family:Calibri">Authors </span></span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:small"><span style="font-family:Calibri">Categories </span></span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:small"><span style="font-family:Calibri">Contributors </span></span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:small"><span style="font-family:Calibri">Copyright </span></span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:small"><span style="font-family:Calibri">ElementExtensions </span></span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:small"><span style="font-family:Calibri">Links </span></span></p> <p class=MsoNormal style="margin:0in 0in 10pt"><span style="font-size:small"><span style="font-family:Calibri">Summary </span></span></p> Please advise.  thanks, -Shawn.<br/>Fri, 03 Jul 2009 17:55:46 Z2009-09-08T05:50:08Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/5fff9bd6-bea0-482c-96cb-a5f0275021d2http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/5fff9bd6-bea0-482c-96cb-a5f0275021d2Seshasai.Shttp://social.msdn.microsoft.com/Profile/en-US/?user=Seshasai.SError e25207:The developer does not exist<p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small">I am getting an error while creating a new service. Below is the sequence…</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small">Live Services -&gt; Live framework Community Technology Preview -&gt; Create a Mesh Enabled application and click on “Create”.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small"><br/>Error Message <br/>--------------------------------------------------------------<br/>e25207:The developer does not exist<br/> <table class=Wizard style="border-collapse:collapse" border=0 cellspacing=0 cellpadding=0> <tbody> <tr> <td class=WizardHeader><span style="color:red"> <table border=0 width="100%"> <tbody> <tr> <td width="50%"> <h2>Reference #:</h2> P: b252a71c-d064-473b-b877-ac2e8f78fb03 / 04</td> <td width="50%"> <h2>Reference Time:</h2> 8/14/2009 5:56:01 AM</td> </tr> </tbody> </table> </span></td> </tr> <tr style="height:100%"> <td class=WizardStep> <p>Provide a convenient label and description for the service component. The information is used only on the Developer Portal.</p> </td> </tr> </tbody> </table>  Reference #:<br/>P: b252a71c-d064-473b-b877-ac2e8f78fb03 / 04  Reference Time:<br/>8/14/2009 5:56:01 AM  <br/>Provide a convenient label and description for the service component. The information is used only on the Developer Portal.<br/>--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- <br/><br/> <table class=Wizard style="border-collapse:collapse" border=0 cellspacing=0 cellpadding=0> <tbody> <tr> <td class=WizardHeader><span style="color:red"> <table border=0 width="100%"> <tbody> <tr> <td width="50%"> <h2>Reference #:</h2> P: b252a71c-d064-473b-b877-ac2e8f78fb03 / 04</td> <td width="50%"> <h2>Reference Time:</h2> 8/14/2009 5:56:01 AM</td> </tr> </tbody> </table> </span></td> </tr> <tr style="height:100%"> <td class=WizardStep> <p>Provide a convenient label and description for the service component. The information is used only on the Developer Portal.</p> </td> </tr> </tbody> </table> </span></p> <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Calibri;font-size:small">Has anyone faced similar issue? I am struck here. Timely help is highly appreciated.<br/></span></p>Fri, 14 Aug 2009 12:59:26 Z2009-09-08T05:49:04Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/814113d5-816c-4ef6-b7e7-623ab55fdf3dhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/814113d5-816c-4ef6-b7e7-623ab55fdf3dChris Lamont Mankowski - Testhttp://social.msdn.microsoft.com/Profile/en-US/?user=Chris%20Lamont%20Mankowski%20-%20TestWhen is it appropriate to port a SL app to MEWA? ... when is it not?I have a few applications under development and I'm trying to determine which applications should be ported to MEWA. Can anyone look at this list of criteria and help me define where MEWA is appropriate/not appropriate... or point me in a direction where I can understand the application vision of MESH?<br/> <br/> Target Audience (of MESH in general),<br/> Application type (game, CRUD, monitoring, forum, chat, etc.)<br/> Application Size (mb),<br/> Application Size (in display pixels width/length),<br/> Frame Rate,<br/> ...?<br/>Mon, 17 Aug 2009 18:13:21 Z2009-09-08T05:45:50Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/1f478a30-8d4e-4bb6-8ed4-a7739b1dc288http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/1f478a30-8d4e-4bb6-8ed4-a7739b1dc288Wouter Vogelhttp://social.msdn.microsoft.com/Profile/en-US/?user=Wouter%20VogelLive Mesh and Snow Leopard compatabilityWe all know the latest version of the Mesh client does not function on Mac Snow Leopard. It worries me that there is no topic on this issue at all. A fix is eagerly awaited by many. Is there anyone who can confirm awareness of this problem, and can provide a status update on the fix? <div>Thanks.</div>Mon, 07 Sep 2009 15:49:35 Z2009-09-08T05:23:42Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/a2138224-3299-49de-bc2f-f864a708b2d2http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/a2138224-3299-49de-bc2f-f864a708b2d2Footballarhttp://social.msdn.microsoft.com/Profile/en-US/?user=FootballarSilverlight Streaming Service : Can't upload right now, asks id and passwordHi, <div>I am using silverlight video streaming and I cannot upload at the moment. it sometimes ask id and password with a popup window. besides it, I managed to upload a 20mb movie and I clicked RETRY button like 70 times.</div> <div><br/></div> <div>What is wrong with sl streaming ?</div> <div>When will it go to gold ?</div> <div><br/></div> <div>and in less than a week ago, SL streaming wasnot working even on silverlight.live.com.</div> <div><br/></div> <div>Thanks</div>Mon, 31 Aug 2009 20:38:25 Z2009-09-07T10:32:40Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/d170cbe6-0705-4d72-8ec2-1b54dfe61f90http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/d170cbe6-0705-4d72-8ec2-1b54dfe61f90Zia Khanhttp://social.msdn.microsoft.com/Profile/en-US/?user=Zia%20KhanIs the Live Framework being cancelled?<p><span style="font-family:'Arial','sans-serif';font-size:10pt">My company has been investing heavily in product development based on Live Framework. There has been no CTP since April and the general lack of activity/news is making us very nervous. Is the Framework being cancelled? If this is the case at least we developers should be informed ASAP so that we can minimize our losses. </span></p>Wed, 19 Aug 2009 21:06:32 Z2009-09-05T16:50:07Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/9af6fd6b-5127-423c-893a-7b04b3612942http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/9af6fd6b-5127-423c-893a-7b04b3612942Adam Malcontenti-Wilsonhttp://social.msdn.microsoft.com/Profile/en-US/?user=Adam%20Malcontenti-Wilson"What's New for my network" API RequestHi. <div>Is there a REST API or XML feed of a user's <span style="font-family:Arial, Arial, Helvetica, sans-serif;font-size:13px;white-space:pre">&quot;What's New for my network&quot; (see<span style="font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;white-space:normal"> <a href="http://home.live.com/whatsnew.aspx">http://home.live.com/whatsnew.aspx</a>).</span></span></div> <div>Also, how does a web service authenticate themselves to obtain access to that data (does it use OAuth, Authorisation headers, or something completely different).</div> <div><br/></div> <div>I've looked around on the MSDN Docs but I'm not sure really where to start or what section it would be under.</div> <div><br/></div> <div>Thanks,</div> <div>Adam</div>Fri, 28 Aug 2009 16:42:22 Z2009-09-04T11:04:26Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/5cebc573-f496-424b-a35e-39ce7783feb9http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/5cebc573-f496-424b-a35e-39ce7783feb9jdownerhttp://social.msdn.microsoft.com/Profile/en-US/?user=jdownerThe domain name contains forbidden words?When entering <span>Service Component Properties in live services i get &quot;The domain name contains forbidden words&quot; .  The Domain I'm trying to register is www.mygloballearningcommunity.com.  Is there a list of forbiden words or some way to get my domain name oked manuly? <br/> <br/> Thanks!<br/> Justin<br/> </span>Thu, 03 Sep 2009 16:36:55 Z2009-09-03T16:36:56Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/2a19b8bc-2351-4129-90f6-9cfa39bfb90bhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/2a19b8bc-2351-4129-90f6-9cfa39bfb90bMunish Bhargavhttp://social.msdn.microsoft.com/Profile/en-US/?user=Munish%20BhargavAzure Cloud Service is running locally very smoothly But showing error after deployee to azure portal <div><br/></div> <div>Hi,</div> <div><br/></div> <div>I have made an cloud service it is running very smoothly but when i deploy it onto the azure portal it is showing the runtime error. Could any body help me. Is there any changes have to done in the web.config before deploy it onto Azure portal.</div> <div>The Error that i got at </div> <div><br/></div> <div>Stack Trace is</div> <div> <pre>[SecurityException: That assembly does not allow partially trusted callers.] WebRole1.Connect.btnConnect_Click(Object sender, EventArgs e) +0 System.EventHandler.Invoke(Object sender, EventArgs e) +0 System.Web.UI.WebControls.Button.OnClick(EventArgs e) +90 System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +138 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +32 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5028 System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +390 System.Web.UI.Page.ProcessRequest() +91 System.Web.UI.Page.ProcessRequest(HttpContext context) +169 ASP.default_aspx.ProcessRequest(HttpContext context) +52 System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +586 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously) +177 </pre> </div> <div><br/></div> <div>Regards </div> <div>Munish Bhargav</div>Thu, 03 Sep 2009 06:48:58 Z2009-09-04T04:37:53Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/82112ba2-046d-4660-97c0-f340608c5f72http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/82112ba2-046d-4660-97c0-f340608c5f72AA2020http://social.msdn.microsoft.com/Profile/en-US/?user=AA2020Live Mesh on Windows MobileJeff,<p> </p><p>Have a related question. I would like to access files on Live mesh folders on my windows mobile. Is your answer same? Do you think we can get live mesh on Windows mobile sometime in 2009? Thanks in adv.<br></p> Fri, 23 Jan 2009 18:48:11 Z2009-09-01T19:57:50Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/a5faa889-4aed-460f-b9bb-bdcbdb75f92fhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/a5faa889-4aed-460f-b9bb-bdcbdb75f92fMunish Bhargavhttp://social.msdn.microsoft.com/Profile/en-US/?user=Munish%20BhargavError in deploying azure cloud service at the staging Side.....Hello dear,<br/>When i am trying to deploy the azure cloud service at the staging side i am getting this error.. others threads are related to same error but deploying from staging to production.. please help me..   <br/><br/><strong> FabricInternalServerError Dr. Watson Diagnostic ID:k2gig23-w43f3f-s2vs34dgnd-sf3fee3drfd<br/><br/></strong>Regards <br/>Munish BhargavTue, 01 Sep 2009 08:43:14 Z2009-09-07T10:35:18Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/d75d50c0-051b-465e-9d11-f4426f2cc48bhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/d75d50c0-051b-465e-9d11-f4426f2cc48bMunish Bhargavhttp://social.msdn.microsoft.com/Profile/en-US/?user=Munish%20Bhargavnot able to add file under mesh folder..Hi dear <br/><br/>I am getting the error on creating the feed..<br/><br/><strong>Query on this item type is not supported<br/><br/>My code is<br/><br/><span style="font-size:x-small"><font size=2> <p> </p> </font></span> <p><span style="font-size:x-small;color:#2b91af"><span style="font-size:x-small;color:#2b91af">DataFeed</span></span><span style="font-size:x-small"> theDataFeed = (</span><span style="font-size:x-small;color:#0000ff"><span style="font-size:x-small;color:#0000ff">from</span></span><span style="font-size:x-small"> dataFeed </span><span style="font-size:x-small;color:#0000ff"><span style="font-size:x-small;color:#0000ff">in</span></span><span style="font-size:x-small"> </span><span style="font-size:x-small;color:#2b91af"><span style="font-size:x-small;color:#2b91af">Connect</span></span><span style="font-size:x-small">.mesh.CreateQuery&lt;</span><span style="font-size:x-small;color:#2b91af"><span style="font-size:x-small;color:#2b91af">DataFeed</span></span><span style="font-size:x-small">&gt;()<font size=2> <p> </p> </font></span></p> <p><span style="font-size:x-small;color:#0000ff"><span style="font-size:x-small;color:#0000ff">where</span></span><span style="font-size:x-small"> dataFeed.Resource.Title == LIVE_MESH_FILES<font size=2> <p> </p> </font></span></p> <p><span style="font-size:x-small;color:#0000ff"><span style="font-size:x-small;color:#0000ff">select</span></span><span style="font-size:x-small"> dataFeed).FirstOrDefault&lt;</span><span style="font-size:x-small;color:#2b91af"><span style="font-size:x-small;color:#2b91af">DataFeed</span></span><span style="font-size:x-small">&gt;();<font size=2> <p> </p> </font></span></p> <p><span style="font-size:x-small;color:#2b91af"><span style="font-size:x-small;color:#2b91af">Stream</span></span><span style="font-size:x-small"> fileStream = </span><span style="font-size:x-small;color:#2b91af"><span style="font-size:x-small;color:#2b91af">File</span></span><span style="font-size:x-small">.Open(path, </span><span style="font-size:x-small;color:#2b91af"><span style="font-size:x-small;color:#2b91af">FileMode</span></span><span style="font-size:x-small">.Open, </span><span style="font-size:x-small;color:#2b91af"><span style="font-size:x-small;color:#2b91af">FileAccess</span></span><span style="font-size:x-small">.Read); <p>theDataFeed.DataEntries.Add(fileStream, path, GetMimeType(path));</p> <font size=2> <p> </p> </font></span></p> <p><span style="font-size:x-small;color:#008000"><span style="font-size:x-small;color:#008000">// Make sure all devices will get synchronized.</span></span></p> <span style="font-size:x-small"> <p>theDataFeed.SyncEntries.Synchronize();</p> <p>theDataFeed.Update();</p> </span></strong>Fri, 28 Aug 2009 12:00:34 Z2009-09-03T10:28:34Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/752d4263-333e-4f7f-b851-d1cda6846115http://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/752d4263-333e-4f7f-b851-d1cda6846115Munish Bhargavhttp://social.msdn.microsoft.com/Profile/en-US/?user=Munish%20BhargavSyncronization problem with the Live Framework Client???<p>Hello dear,<br/><br/>I develop an application in which i add folder,retrieve folder and every thing but i have two problem with them Please help me out in the live Framework Client as well as on the developer desktop the sync option is not available. i need it very harshly.. Please help me<br/><br/>1) For the devices I have a message that says: &quot;Live Remote is not currently enabled in the Live Framework sandbox.<br/>2) For the Active Folders I have a message that says: &quot;Folder syncronsization is not currently enabled in the Live Framework sandbox.<br/><br/>I do not see anyway to enable these in the client GUI. Is there some other way?</p>Tue, 25 Aug 2009 06:15:50 Z2009-09-01T08:37:22Zhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/8271fbff-a472-404c-b9e9-a7cab71a523dhttp://social.msdn.microsoft.com/Forums/en-US/liveframework/thread/8271fbff-a472-404c-b9e9-a7cab71a523dAndy Hopperhttp://social.msdn.microsoft.com/Profile/en-US/?user=Andy%20HopperSerializationException being thrown when retrieving MeshObjectsWe have some code that reads the list of MeshObjects from a user's Mesh in order to be able to pick the one with which we want to work. However, one of our intrepid early adopters is hitting an exception inside the Microsoft.LiveFX.ResourceModel assembly, and I was hoping someone here might be able to shed some light on what may cause it. Here's a truncated stack trace that shows the LiveFx-specific calls:<br/><br/>System.Runtime.Serialization.SerializationException was unhandled<br/>Message=&quot;Expecting element 'root' from namespace ''.. Encountered 'None' with name '', namespace ''. &quot;<br/>Source=&quot;System.ServiceModel.Web&quot;<br/>StackTrace:<br/>at System.Runtime.Serialization.Json.DataContractJsonSerializer.InternalReadObject(XmlReaderDelegator xmlReader, Boolean verifyObjectName)<br/>at System.Runtime.Serialization.XmlObjectSerializer.ReadObjectHandleExceptions(XmlReaderDelegator reader, Boolean verifyObjectName)<br/>at System.Runtime.Serialization.Json.DataContractJsonSerializer.ReadObject(XmlDictionaryReader reader)<br/>at System.Runtime.Serialization.Json.DataContractJsonSerializer.ReadObject(Stream stream)<br/>at Microsoft.LiveFX.ResourceModel.ResourceCollection.LoadFromJson(Stream inputStream, Type resourceCollectionType, IEnumerable`1 knownTypes)<br/>at Microsoft.LiveFX.ResourceModel.ResourceCollection`1.LoadFromJson(Stream inputStream, IEnumerable`1 knownTypes)<br/>at Microsoft.LiveFX.ResourceModel.ResourceCollection`1.LoadFromJson(Stream inputStream)<br/><br/>Is there a way to determine what the cause of this exception is? I know the code works properly with a freshly-provisioned account, so can we somehow &quot;flush&quot; the mesh to make things happy?<br/><br/>Many thanks.<hr class="sig">AndyFri, 21 Aug 2009 00:07:40 Z2009-08-27T10:57:14Z