<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>watwp Discussions Rss Feed</title><link>http://watwp.codeplex.com/discussions</link><description>watwp Discussions Rss Description</description><item><title>New Post: Web.config error</title><link>http://watwp.codeplex.com/discussions/264495</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;i too have the&lt;strong&gt; &lt;span style="color:#ff0000"&gt;same problem&lt;/span&gt;&lt;/strong&gt; persisting please anybody reply sooonn..........&lt;/p&gt;
&lt;/div&gt;</description><author>girish4u</author><pubDate>Tue, 08 Jan 2013 05:52:23 GMT</pubDate><guid isPermaLink="false">New Post: Web.config error 20130108055223A</guid></item><item><title>New Post: WP 8.0?</title><link>http://watwp.codeplex.com/discussions/428679</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;No 8.0 branch yet ?&lt;/p&gt;
&lt;/div&gt;</description><author>Zapbbx</author><pubDate>Sun, 06 Jan 2013 19:19:16 GMT</pubDate><guid isPermaLink="false">New Post: WP 8.0? 20130106071916P</guid></item><item><title>New Post: NotSupportedException from EndSaveChanges</title><link>http://watwp.codeplex.com/discussions/396915</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I am attempting to create a simple Windows Phone application that directly uses the CloudTableClient and TableServiceContext to add objects into the tables. I have been able to create the table, but I run into some problems when attempting to add an object.
 I am utterly clueless as what to do here since I don't know where to start the debug. I have been at this for hours and hope someone can help. Here is my piece of code:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;public&lt;/span&gt; &lt;span style="color:blue"&gt;class&lt;/span&gt; Contact : TableServiceEntity
{
            &lt;span style="color:blue"&gt;public&lt;/span&gt; &lt;span style="color:blue"&gt;string&lt;/span&gt; Name { &lt;span style="color:blue"&gt;get&lt;/span&gt;; &lt;span style="color:blue"&gt;set&lt;/span&gt;; }
            &lt;span style="color:blue"&gt;public&lt;/span&gt; &lt;span style="color:blue"&gt;string&lt;/span&gt; Address { &lt;span style="color:blue"&gt;get&lt;/span&gt;; &lt;span style="color:blue"&gt;set&lt;/span&gt;; }
}

&lt;span style="color:blue"&gt;public&lt;/span&gt; &lt;span style="color:blue"&gt;void&lt;/span&gt; Save()
{
            StorageCredentialsAccountAndKey accountAndKey = &lt;span style="color:blue"&gt;new&lt;/span&gt; StorageCredentialsAccountAndKey(&lt;span style="color:#a31515"&gt;&amp;quot;myaccount&amp;quot;&lt;/span&gt;, &lt;span style="color:#a31515"&gt;&amp;quot;mykey&amp;quot;&lt;/span&gt;);
            
            ctx = &lt;span style="color:blue"&gt;new&lt;/span&gt; TableServiceContext(&lt;span style="color:#a31515"&gt;&amp;quot;https://myaccount.table.core.windows.net/&amp;quot;&lt;/span&gt;, accountAndKey);
               
            c = &lt;span style="color:blue"&gt;new&lt;/span&gt; CloudTableClient(ctx);

            c.CreateTableIfNotExist(&lt;span style="color:#a31515"&gt;&amp;quot;table1&amp;quot;&lt;/span&gt;, &lt;span style="color:blue"&gt;null&lt;/span&gt;);
            Contact contact = &lt;span style="color:blue"&gt;new&lt;/span&gt; Contact();
            contact.PartitionKey = &lt;span style="color:#a31515"&gt;&amp;quot;1&amp;quot;&lt;/span&gt;;
            contact.RowKey = &lt;span style="color:#a31515"&gt;&amp;quot;1&amp;quot;&lt;/span&gt;;
            contact.Name = &lt;span style="color:#a31515"&gt;&amp;quot;Contact1&amp;quot;&lt;/span&gt;;
            contact.Address = &lt;span style="color:#a31515"&gt;&amp;quot;Address1&amp;quot;&lt;/span&gt;;
            ctx.AddObject(&lt;span style="color:#a31515"&gt;&amp;quot;Contact&amp;quot;&lt;/span&gt;, contact);
            ctx.MergeOption = MergeOption.AppendOnly;
            
            ctx.BeginSaveChanges(ar =&amp;gt; ctx.EndSaveChanges(ar), &lt;span style="color:blue"&gt;null&lt;/span&gt;);

            c.DoesTableExist(&lt;span style="color:#a31515"&gt;&amp;quot;table1&amp;quot;&lt;/span&gt;, &lt;span style="color:blue"&gt;delegate&lt;/span&gt;(CloudOperationResponse&amp;lt;&lt;span style="color:blue"&gt;bool&lt;/span&gt;&amp;gt; b) { Debug.WriteLine(b.Response); });
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;It's quite a bit of copy-paste from different sources. The last line checks whether the table ahs been created. I have confirmed with this and Azure Storage Explorer that the table is being created.&lt;/p&gt;
&lt;p&gt;My problem is that the EndSaveChanges(ar) throws a NotSupportedException.&lt;/p&gt;
&lt;p&gt;Furthermore, if I was to get this to work and it saved it to the database, is TryGetEntity the way to go about retrieving them?&lt;/p&gt;
&lt;p&gt;The biggest problems for me are that the interfaces are quite similar to those in VS2012 toolkit or the Windows version of things, which makes it really difficult to Google. Furthermore, most examples concentrate on using Silverlight and services while I
 want to have direct access to the tables with my app.&lt;/p&gt;
&lt;p&gt;Thanks in advance!&lt;/p&gt;
&lt;/div&gt;</description><author>Muhweli</author><pubDate>Tue, 25 Sep 2012 23:44:45 GMT</pubDate><guid isPermaLink="false">New Post: NotSupportedException from EndSaveChanges 20120925114445P</guid></item><item><title>New Post: Integrating ADFS for CorpNet users with ACS via toolkit 1.3.2</title><link>http://watwp.codeplex.com/discussions/286342</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks for sharing. Your Point 1 helped in my case&lt;/p&gt;&lt;/div&gt;</description><author>MuraliMM3</author><pubDate>Thu, 19 Jul 2012 09:38:03 GMT</pubDate><guid isPermaLink="false">New Post: Integrating ADFS for CorpNet users with ACS via toolkit 1.3.2 20120719093803A</guid></item><item><title>New Post: Sample SQL Azure Database</title><link>http://watwp.codeplex.com/discussions/278948</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I had forgotten that I changed Windows Azure SQL Database password and this was causing this error... I then updated my connection string with the new password and everything started working again.&lt;/p&gt;
&lt;p&gt;Hope it helps,&lt;/p&gt;
&lt;p&gt;Leniel&lt;/p&gt;&lt;/div&gt;</description><author>leniel</author><pubDate>Wed, 27 Jun 2012 16:27:20 GMT</pubDate><guid isPermaLink="false">New Post: Sample SQL Azure Database 20120627042720P</guid></item><item><title>New Post: Facebook July 2012 Breaking Changes</title><link>http://watwp.codeplex.com/discussions/358832</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;In a WP7 app I use the AccessControlSignIn control to logon to Facebook.&lt;br&gt;
But&amp;nbsp;I came around an issue when enabling the July 2012&amp;nbsp;breaking changes in the facebook application. When i try to logon&amp;nbsp;i get this error:&lt;/p&gt;
&lt;p&gt;API Error Code:11&lt;br&gt;
API Error Description: This method is deprecated&lt;br&gt;
Error Message: Display=WAP dialogs have been deprecated. You can temporarly enable them by disabling the &amp;quot;July_2010&amp;quot; migration. They will stop working permanently on July 1, 2012&amp;quot;.&lt;/p&gt;
&lt;p&gt;Can i solve this issue by some configuration / coding against the current Toolkit version?&lt;br&gt;
Or is an update of the&amp;nbsp;toolkit&amp;nbsp;needed to keep things working after the facebook migration?&lt;/p&gt;
&lt;p&gt;Greetings,&lt;br&gt;
Stijn,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>vrStijn</author><pubDate>Fri, 08 Jun 2012 09:14:43 GMT</pubDate><guid isPermaLink="false">New Post: Facebook July 2012 Breaking Changes 20120608091443A</guid></item><item><title>New Post: Getting Error trying to run NuGet Phone.Storage.Sample</title><link>http://watwp.codeplex.com/discussions/358450</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I am trying to run NuGet Phone.Storage.Sample&lt;/p&gt;
&lt;p&gt;But when I click &amp;quot;list blobs&amp;quot; in StoragePage I get this error:&lt;/p&gt;
&lt;p&gt;The value for one of the HTTP headers is not in the correct format.&lt;br&gt;
RequestId:80acee60-599b-4ca1-8595-05d6278ff931&lt;br&gt;
Time:2012-06-05T17:09:22.7634289Z&lt;/p&gt;
&lt;p&gt;What to do?&lt;/p&gt;
&lt;/div&gt;</description><author>rune007</author><pubDate>Tue, 05 Jun 2012 17:16:36 GMT</pubDate><guid isPermaLink="false">New Post: Getting Error trying to run NuGet Phone.Storage.Sample 20120605051636P</guid></item><item><title>New Post: White page on IE when running the sample application</title><link>http://watwp.codeplex.com/discussions/260437</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;@amarwadi and @jk909 did either of you figure out what is missing from the project setup that is causing the providers to not resolve and just return a white screen?&lt;/p&gt;&lt;/div&gt;</description><author>paulmontgomery</author><pubDate>Tue, 05 Jun 2012 02:11:46 GMT</pubDate><guid isPermaLink="false">New Post: White page on IE when running the sample application 20120605021146A</guid></item><item><title>New Post: Web.config error</title><link>http://watwp.codeplex.com/discussions/264495</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;johnshadowdog did you resolve this issue? I've exactly the same issue.&lt;/p&gt;
&lt;p&gt;Richard.&lt;/p&gt;&lt;/div&gt;</description><author>RHAD</author><pubDate>Sun, 03 Jun 2012 06:23:59 GMT</pubDate><guid isPermaLink="false">New Post: Web.config error 20120603062359A</guid></item><item><title>New Post: Facebook Support</title><link>http://watwp.codeplex.com/discussions/347945</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;unlike google and windows live, facebook required me to go to the facebook application configuration page and add the domain, site, and mobile url, or the try again error appeared&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;domain&lt;/p&gt;
&lt;p&gt;myapp.accesscontrol.windows.net&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;site url&lt;/p&gt;
&lt;p&gt;https://myapp.accesscontrol.windows.net/&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;thanks lukezy&lt;/p&gt;&lt;/div&gt;</description><author>ftlcd</author><pubDate>Tue, 15 May 2012 11:19:27 GMT</pubDate><guid isPermaLink="false">New Post: Facebook Support 20120515111927A</guid></item><item><title>New Post: Facebook Support</title><link>http://watwp.codeplex.com/discussions/347945</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Ok, just found out a solution. Need to specify ACS domain e.g. &lt;a href="https://mydomain.accesscontrol.windows.net"&gt;https://mydomain.accesscontrol.windows.net&lt;/a&gt;&amp;nbsp;in &lt;span class="fwb"&gt;Site URL and App Domain when configuring your facebook app.&lt;/span&gt;&lt;/p&gt;
&lt;div id="_mcePaste" class="mcePaste" style="position: absolute; width: 1px; height: 1px; overflow: hidden; top: 0px; left: -10000px;"&gt;﻿&lt;/div&gt;&lt;/div&gt;</description><author>lukezy</author><pubDate>Fri, 04 May 2012 20:45:39 GMT</pubDate><guid isPermaLink="false">New Post: Facebook Support 20120504084539P</guid></item><item><title>New Post: Facebook Support</title><link>http://watwp.codeplex.com/discussions/347945</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I had the same issue. Any one?&lt;/p&gt;&lt;/div&gt;</description><author>lukezy</author><pubDate>Fri, 04 May 2012 20:24:55 GMT</pubDate><guid isPermaLink="false">New Post: Facebook Support 20120504082455P</guid></item><item><title>New Post: Blob Content type</title><link>http://watwp.codeplex.com/discussions/352111</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;It's impossible to set the blob content type as well as any properties for that matter using the toolkit proxy, right? Why?&lt;/p&gt;
&lt;/div&gt;</description><author>Furret</author><pubDate>Thu, 12 Apr 2012 19:19:16 GMT</pubDate><guid isPermaLink="false">New Post: Blob Content type 20120412071916P</guid></item><item><title>New Post: Facebook Support</title><link>http://watwp.codeplex.com/discussions/347945</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Have you found a solution for this? I'm encountering the same error for a simple Web app.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Alain&lt;/p&gt;&lt;/div&gt;</description><author>CanucksAl</author><pubDate>Wed, 11 Apr 2012 00:03:46 GMT</pubDate><guid isPermaLink="false">New Post: Facebook Support 20120411120346A</guid></item><item><title>New Post: Application login instead of user login, howto?</title><link>http://watwp.codeplex.com/discussions/351348</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I'm working on an App to show some data which is stored in Azure tables. It is not sensitive data, but I don't want to allow others to download freely these data. However, i don't want to have the users creating accounts or having to login with ACS etc.&lt;/p&gt;
&lt;p&gt;So I was thinking about using the toolkit to create ASP.NET membership and let the App login with a predefined username/password which is stored encrypted in the app. Not 100% safe, but probably safe enough for this app/data.&lt;/p&gt;
&lt;p&gt;Does anyone have advise/best practice about this method using ASP.NET in this way or an example/link of how to program this?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>uxadditives</author><pubDate>Thu, 05 Apr 2012 17:43:44 GMT</pubDate><guid isPermaLink="false">New Post: Application login instead of user login, howto? 20120405054344P</guid></item><item><title>New Post: Isolated ACS Sample</title><link>http://watwp.codeplex.com/discussions/350862</link><description>&lt;div style="line-height: normal;"&gt;&lt;blockquote style="padding-bottom: 0px; font-style: italic; margin: 0.25em 1em 0px; padding-left: 0.25em; padding-right: 0.25em; padding-top: 0px; border: #ccc 0.1em solid;"&gt;&lt;strong&gt;markti wrote:&lt;/strong&gt;&lt;br /&gt;
&lt;p&gt;The Toolkit is nice but it would be great and easier to wrap one's head around all the bits that are in the solution if you provided more compartmentalized version. For example, what if all I want is to authenticate a user using ACS? It would be great if there was just a demo for that with NO storage, NO ASP.NET membership provider, etc.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;** dearly seconds the motion&lt;/p&gt;&lt;/div&gt;</description><author>andress</author><pubDate>Mon, 02 Apr 2012 14:51:14 GMT</pubDate><guid isPermaLink="false">New Post: Isolated ACS Sample 20120402025114P</guid></item><item><title>New Post: Isolated ACS Sample</title><link>http://watwp.codeplex.com/discussions/350862</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;The Toolkit is nice but it would be great and easier to wrap one's head around all the bits that are in the solution if you provided more compartmentalized version. For example, what if all I want is to authenticate a user using ACS? It would be great if
 there was just a demo for that with NO storage, NO ASP.NET membership provider, etc.&lt;/p&gt;
&lt;/div&gt;</description><author>markti</author><pubDate>Mon, 02 Apr 2012 09:34:21 GMT</pubDate><guid isPermaLink="false">New Post: Isolated ACS Sample 20120402093421A</guid></item><item><title>New Post: Cloud deployment doesn't work</title><link>http://watwp.codeplex.com/discussions/350568</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have created a new service based on the toolkit. I am using ACS for authentication. Everything is working just fine on the development fabric. Even when the development version of the project is bound to the real SQL azure and cloud storage account. But  when I deploy the app to the cloud, I cannot get past the log-in screen. I keep getting not-found exception from the server in the callback from the call that is supposed to verify the user is registered.&lt;/p&gt;
&lt;p&gt;Based upon what I read, I figgured it might be because of the SSL certificate. I use the self signed certificate at the moment. But I've done just everything about it right according to the deployment manual in documentation of the toolkit here on codeplex.  Does any of you have any idea how to solve or at least further investigate the problem? The exception I get from the server is pretty dumb and I can't make any sense of it. It's just: "The remote server returned an error: NotFound" in several nested inner  exceptions.&lt;/p&gt;
&lt;p&gt;I have heard about the app called cert installer, but I don't understand how it can help me. The toolkit app can installs the certificate itself, doesn't it? Isn't the cert installer just some project that solved issues prior to mango, or something?&lt;/p&gt;
&lt;p&gt;I should also point out the the management website running on the same role using the same certificate is running just fine.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks for any sign of help&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Tomas&lt;/p&gt;&lt;/div&gt;</description><author>Furret</author><pubDate>Thu, 29 Mar 2012 22:29:36 GMT</pubDate><guid isPermaLink="false">New Post: Cloud deployment doesn't work 20120329102936P</guid></item><item><title>New Post: Can't add a controller using "windows phone cloud application" template</title><link>http://watwp.codeplex.com/discussions/348384</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I've created a new model called Report. when i try to add a controller to it with CRUD via the &amp;quot;add controller wizard&amp;quot; using my new model and SqlDataContext DBContext class given in the template i get the following error:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;pre&gt;Unable to retrieve metadata for 'WPCloudApp1.Web.Models.Report'.
The 'SqlSampleDataContextConnectionString' setting is not available.
Parameter name: key&lt;/pre&gt;
&lt;pre&gt;&lt;br&gt;&lt;/pre&gt;
&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;i have no trouble running the application, just adding the controller&lt;/p&gt;
&lt;p&gt;Any idea ?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have also posted it on stackoveflow&lt;/p&gt;
&lt;p&gt;&lt;a href="http://stackoverflow.com/questions/9682676/cant-add-a-controller-in-asp-net-mvc3-ef-code-first"&gt;http://stackoverflow.com/questions/9682676/cant-add-a-controller-in-asp-net-mvc3-ef-code-first&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>mderazon</author><pubDate>Tue, 13 Mar 2012 11:21:58 GMT</pubDate><guid isPermaLink="false">New Post: Can't add a controller using "windows phone cloud application" template 20120313112158A</guid></item><item><title>New Post: Facebook Support</title><link>http://watwp.codeplex.com/discussions/347945</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I added Facebook as a provider and get the selection and corresponding entry in the ACS; however, when i try to login with Facebook I get a generic &amp;quot;An error occurred. Please try again later&amp;quot; on facebook.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any ideas why?&lt;/p&gt;
&lt;p&gt;Also, does the library provide any support for requesting permissions and retrieving the access token from facebook on behalf of the user?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;/div&gt;</description><author>StreamOfCode</author><pubDate>Fri, 09 Mar 2012 04:37:01 GMT</pubDate><guid isPermaLink="false">New Post: Facebook Support 20120309043701A</guid></item></channel></rss>