<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://code.msdn.microsoft.com/rss.xsl"?><rss version="2.0"><channel><title>WebProfileBuilder Forum Rss Feed</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/List.aspx</link><description>WebProfileBuilder Forum Rss Description</description><item><title>NEW POST: Great! Worked fine for VB.Net</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=2466</link><description>&lt;div class="wikidoc"&gt;
Thanks so much for the helpful tool.&lt;br /&gt; &lt;br /&gt;Art Colman&lt;br /&gt;
&lt;/div&gt;</description><author>artcolman</author><pubDate>Fri, 30 Oct 2009 03:05:14 GMT</pubDate><guid isPermaLink="false">NEW POST: Great! Worked fine for VB.Net 20091030A</guid></item><item><title>NEW POST: Can't send the class over WCF</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=1844</link><description>&lt;div class="wikidoc"&gt;
Hi,&lt;br /&gt; &lt;br /&gt; Thank you for this useful piece of software.&lt;br /&gt; &lt;br /&gt; I have a small issue, I can seem to be able to send the WebProfile class over WCF, I suppose because it is not serializable, any chance this class will become serializable ?&lt;br /&gt; &lt;br /&gt;Thank you,&lt;br /&gt;Calin,&lt;br /&gt;
&lt;/div&gt;</description><author>Calin</author><pubDate>Sat, 06 Jun 2009 14:34:49 GMT</pubDate><guid isPermaLink="false">NEW POST: Can't send the class over WCF 20090606P</guid></item><item><title>NEW POST: Web Site with Web App sub-application &amp; single sign-on</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=1546</link><description>&lt;div class="wikidoc"&gt;
I have FirstName and LastName defined as custom profile properties in the Web.config, and the values are stored in the aspnet_Profile table.  I have a Web Site project in the root, and a Web Application project in a virtual directory, with &amp;lt;authentication&amp;gt; and &amp;lt;machineKey&amp;gt; set up in the Web.config so signing in to the root signs in allows the user to remain signed in for the virtual directory app with the same FormsAuth cookie.  The &amp;lt;membership&amp;gt;, &amp;lt;profile&amp;gt;, and &amp;lt;roleManager&amp;gt; elements in the Web.config are also identical for the Web Site project and the Web Application project.&lt;br /&gt; &lt;br /&gt;The WebProfile class appears to be built out as it should be for my Web Application project, with the FirstName and LastName properties.  But those properties' values are not being set to the values from the aspnet_Profile table.  WebProfile.cs calls ProfileBase.GetPropertyValue(&amp;quot;FirstName&amp;quot;), but nothing is returned.  The LastActivityDate and LastUpdatedDate properties are also set to 1/1/01, not the actual profile values.  Is there more built-in Web Site project code that needs to be added to the Web Application to get the data from the profile?&lt;br /&gt; &lt;br /&gt;// Web Site project&lt;br /&gt;ProfileCommon profile = Profile.GetProfile( Page.User.Identity.Name );&lt;br /&gt;if( profile != null )&lt;br /&gt;{&lt;br /&gt;	int propCount = profile.PropertyValues.Count; // 2&lt;br /&gt;	string fn = profile.FirstName; // &amp;quot;John&amp;quot;&lt;br /&gt;	string ln = profile.LastName; // &amp;quot;Doe&amp;quot;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;// Web Application project&lt;br /&gt;WebProfile profile = WebProfile.GetProfile( Page.User.Identity.Name );&lt;br /&gt;if( profile != null )&lt;br /&gt;{&lt;br /&gt;	int propCount = profile.PropertyValues.Count; // 0&lt;br /&gt;	string fn = profile.FirstName; // &amp;quot;&amp;quot;&lt;br /&gt;	string ln = profile.LastName; // &amp;quot;&amp;quot;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;Any ideas?&lt;br /&gt; &lt;br /&gt;Thanks,&lt;br /&gt; &lt;br /&gt;Matt&lt;br /&gt;
&lt;/div&gt;</description><author>mcgmatt</author><pubDate>Thu, 09 Apr 2009 19:01:57 GMT</pubDate><guid isPermaLink="false">NEW POST: Web Site with Web App sub-application &amp; single sign-on 20090409P</guid></item><item><title>NEW POST: A bit of cleanup</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=1538</link><description>&lt;div class="wikidoc"&gt;
Is it possible to make the generated code use tabs for indenting, instead of spaces?  Spaces are so 1998 :P&lt;br /&gt; &lt;br /&gt;Also, with the using statements at the top of the page, you don't need to write out full namespaces like System.Web.Profile.ProfileBase throughout the code.&lt;br /&gt; &lt;br /&gt;Thanks!&lt;br /&gt;
&lt;/div&gt;</description><author>mcgmatt</author><pubDate>Wed, 08 Apr 2009 16:39:36 GMT</pubDate><guid isPermaLink="false">NEW POST: A bit of cleanup 20090408P</guid></item><item><title>NEW POST: Can You add new method with getting user by GUID?</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=560</link><description>&lt;div class="wikidoc"&gt;
Yes, I need the Membership.GetAllUsers() too.&lt;br /&gt;
&lt;/div&gt;</description><author>hugoegerstrom</author><pubDate>Wed, 18 Mar 2009 15:34:02 GMT</pubDate><guid isPermaLink="false">NEW POST: Can You add new method with getting user by GUID? 20090318P</guid></item><item><title>NEW POST: "BuildWebProfile" task failed unexpectedly...</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=1221</link><description>&lt;div class="wikidoc"&gt;
I installed the profile builder 1.3 . By default it is installe in c:\Program files\MSBuild\WebPRofileBuilder.  Now I am following the documetnation (.rtf) file to create an ASP.NET Web Application project. In step 7 I pressed the Refresh once where I get this warning:&lt;br /&gt; &lt;br /&gt;&amp;quot;BuildWebProfile&amp;quot; task failed unexpectedly&amp;quot; excepton. System.ArgumentNullException: Sting reference not set to an instance of String.&lt;br /&gt; &lt;br /&gt;The second time I press Refresh, I see warning - &amp;quot;BuildWebProfile&amp;quot; task failed&amp;quot;.&lt;br /&gt; &lt;br /&gt;I am using VS 2008.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>mv</author><pubDate>Sat, 24 Jan 2009 23:35:53 GMT</pubDate><guid isPermaLink="false">NEW POST: "BuildWebProfile" task failed unexpectedly... 20090124P</guid></item><item><title>NEW POST: namespace=""</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=929</link><description>&lt;div class="wikidoc"&gt;
I would prefer the generated class file to NOT have a namespace notation. When I use the following config, it gives me a namespace of my web project. Maybe I'm not understanding a deeper notation.&lt;br /&gt; &lt;br /&gt;What I'd like to see is setting nameSpace to empty would make the generated class file not have a namespace declaration.&lt;br /&gt; &lt;br /&gt;Thanks&lt;br /&gt;Mike&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Config&lt;/b&gt;&lt;br /&gt;&amp;lt;webProfileSettings className=&amp;quot;WebProfile&amp;quot; nameSpace=&amp;quot;&amp;quot; directory=&amp;quot;Generated&amp;quot; fileName=&amp;quot;WebProfile&amp;quot;/&amp;gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Class File&lt;/b&gt;&lt;br /&gt;Namespace ASH2.Web.UI.ExerciseRewards&lt;br /&gt;    &lt;br /&gt;    Partial Public Class WebProfile&lt;br /&gt;        &lt;br /&gt;        Private _profileBase As System.Web.Profile.ProfileBase&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>MADCookie</author><pubDate>Wed, 12 Nov 2008 01:48:03 GMT</pubDate><guid isPermaLink="false">NEW POST: namespace="" 20081112A</guid></item><item><title>NEW POST: Refrences missing</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=821</link><description>&lt;div class="wikidoc"&gt;
I created the web project unloaded the project and edited the project file with import tag. Now i reloaded the project, now all the refrences are missing.even i tried to add the refrences once again still all the refrences are missing.&lt;br /&gt;
&lt;/div&gt;</description><author>ttopgun</author><pubDate>Tue, 14 Oct 2008 09:48:06 GMT</pubDate><guid isPermaLink="false">NEW POST: Refrences missing 20081014A</guid></item><item><title>NEW POST: Thanks.</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=691</link><description>&lt;div class="wikidoc"&gt;
Thank you so much. Saved me hours of work. &lt;br /&gt; &lt;br /&gt;Very nice tool. :)&lt;br /&gt;
&lt;/div&gt;</description><author>HamedM</author><pubDate>Sun, 07 Sep 2008 15:36:55 GMT</pubDate><guid isPermaLink="false">NEW POST: Thanks. 20080907P</guid></item><item><title>NEW POST: WebProfile versus ProfileCommon</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=338</link><description>&lt;div class="wikidoc"&gt;
I have exactly the same questions and would really appreciate an answer if anybody has one. Thanks!&lt;br /&gt;
&lt;/div&gt;</description><author>CoderSharper</author><pubDate>Fri, 08 Aug 2008 08:16:33 GMT</pubDate><guid isPermaLink="false">NEW POST: WebProfile versus ProfileCommon 20080808A</guid></item><item><title>NEW POST: Can You add new method with getting user by GUID?</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=560</link><description>&lt;div class="wikidoc"&gt;
and maybe new method which returns all users just like Membership.GetAllUsers() does&lt;br /&gt;
&lt;/div&gt;</description><author>GrZeCh</author><pubDate>Mon, 28 Jul 2008 15:38:20 GMT</pubDate><guid isPermaLink="false">NEW POST: Can You add new method with getting user by GUID? 20080728P</guid></item><item><title>NEW POST: Can You add new method with getting user by GUID?</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=560</link><description>&lt;div class="wikidoc"&gt;
Question like in title. &lt;br /&gt; &lt;br /&gt;Something like&lt;br /&gt; &lt;br /&gt;var user = WebProfile.GetProfile(new Guid(&amp;quot;...GUID HERE...&amp;quot;))&lt;br /&gt; &lt;br /&gt;Thanks in advance&lt;br /&gt;
&lt;/div&gt;</description><author>GrZeCh</author><pubDate>Sat, 26 Jul 2008 12:58:40 GMT</pubDate><guid isPermaLink="false">NEW POST: Can You add new method with getting user by GUID? 20080726P</guid></item><item><title>NEW POST: WebProfile versus ProfileCommon</title><link>http://code.msdn.microsoft.com/WebProfileBuilder/Thread/View.aspx?ThreadId=338</link><description>&lt;div class="wikidoc"&gt;
I just performed my first Web Site to Web App conversion, and I very much appreciated the discussion and development effort of the Web Profile Builder tool.  I've downloaded the docs and the examples.  Good stuff.&lt;br /&gt; &lt;br /&gt;My question is:  One of the advantages of Profiles in the first place is being able to reference them by &amp;quot;Profile.xxxxx&amp;quot;.  Since ProfileCommon is generated on the fly on a web SITE and not generated at all in web APP, why not duplicate the generated code, ie, reproduce ProfileCommon?  I also noticed that WebProfile is not inheriting ProfileBase as ProfileCommon does.  &lt;br /&gt; &lt;br /&gt;Please enlighten me as to the finer points I'm missing.  There's gotta be something else missing preventing ProfileCommon from being reproduced(?)&lt;br /&gt;
&lt;/div&gt;</description><author>john_cade</author><pubDate>Tue, 06 May 2008 03:55:43 GMT</pubDate><guid isPermaLink="false">NEW POST: WebProfile versus ProfileCommon 20080506A</guid></item></channel></rss>