User Program.X - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T08:51:36Z http://stackoverflow.com/feeds/user/76037 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1118490/internet-explorer-hanging-when-debugging-asp-net-app 0 Internet Explorer hanging when debugging ASP.NET app Program.X 2009-07-13T09:34:47Z 2009-10-06T12:58:58Z <p>Hi,</p> <p>This problem is beginning to annoy.</p> <p>After my machine (Vista Ultimate) has been up for a while, running my ASP.NET web site project for debugging in VS2008 results in Internet Explorer "hanging". It doesn't seem to get past the network access stage, you know when it says "Loading web site", or "Waiting for".</p> <p>I've attached a screenshot of IE. Note the status bar. It stays like that forever. I have to restart it and cross my fingers for it to work the next time. Invariably, it doesn't.</p> <p>This happened with IE7 and IE8.</p> <p>I am using the ASP.NET Web Development Server/Cassini. I have tried restarting this each time which seemed ot have got it, but then not so any more.</p> <p>I'm up to date on patches.</p> <p><img src="http://img40.imageshack.us/img40/5446/iehanging.png" alt="ie screenshot" /></p> http://stackoverflow.com/questions/1118490/internet-explorer-hanging-when-debugging-asp-net-app/1525426#1525426 0 Answer by Program.X for Internet Explorer hanging when debugging ASP.NET app Program.X 2009-10-06T12:58:58Z 2009-10-06T12:58:58Z <p>So thankfully Microsoft have finally released Security Essentials.</p> <p>This meant I could de-install AVG (Free and paid-for versions) from my machine.</p> <p>Hey presto, it works!</p> http://stackoverflow.com/questions/1486649/rules-of-thumbs-for-writing-queries-using-ado-net-entity-framework/1486757#1486757 2 Answer by Program.X for Rules of thumbs for writing "queries" using ADO.NET Entity Framework Program.X 2009-09-28T12:27:21Z 2009-09-28T12:27:21Z <p>I use LINQ-to-Entities as much as possible. I also try and formalise to the lambda-form, as opposed to the extended SQL-style syntax. I have to admit to have had problems enforcing relationships and making compromises on efficiency just to expedite my coding of our application (eg. Master->Child tables may need to be manually loaded) but all in all, EF is a good product.</p> <p>I do use EF's .Include() method for lazy-loading, which as you say, does require a string input. I find no problem with this, other than that of identifying the string to use which is relatively simple. I guess if you're keen on compile-time checking of such relations, a model similar to: Parent.GetChildren() might be more appropriate.</p> <p>My application does require some "dynamic" queries to be performed, though. I have two ways of meeting this:</p> <p>a) I create a mediator object, eg. ClientSearchMediator, which "knows" how to search for clients by name, etc. I can then put this through a SearchHandler.Search(ISearchMediator[] mediators) call (for example). This can be used to target specific data structures and sort results accordingly using LINQ-to-Entities.</p> <p>b) For a looser experience, possibly as a result of a user designing their own query (using high level tools our application provides), eSQL is ideal for this purpose. It can be made to be injection-safe.</p> http://stackoverflow.com/questions/1466462/programmatic-configuration-of-exception-sending-in-wcf 1 Programmatic configuration of Exception-sending in WCF Program.X 2009-09-23T14:43:53Z 2009-09-24T17:20:24Z <p>I would like my Silverlight client to be able to display exceptions that have happened at the server during a WCF call.</p> <p>Given my current code to create a WCF Channel (on the client):</p> <pre><code>// create the binding elements BinaryMessageEncodingBindingElement binaryMessageEncoding = new BinaryMessageEncodingBindingElement(); HttpTransportBindingElement httpTransport = new HttpTransportBindingElement() { MaxBufferSize = int.MaxValue, MaxReceivedMessageSize = int.MaxValue }; // add the binding elements into a Custom Binding CustomBinding customBinding = new CustomBinding(binaryMessageEncoding, httpTransport); // create the Endpoint URL EndpointAddress endpointAddress = new EndpointAddress(serviceUrl); // create an interface for the WCF service ChannelFactory&lt;TWcfApiEndPoint&gt; channelFactory=new ChannelFactory&lt;TWcfApiEndPoint&gt;(customBinding, endpointAddress); channelFactory.Faulted += new EventHandler(channelFactory_Faulted); TWcfApiEndPoint client = channelFactory.CreateChannel(); return client; </code></pre> <p>When an exception occurs, I just get a "NotFound" exception, which is obviously of no use. How can I get the exception information?</p> <p>I use this code to use the client object returned above:</p> <pre><code>try { // customFieldsBroker is the client returned above customFieldsBroker.BeginCreateCustomField(DataTypeID, newCustomField, (result) =&gt; { var response = ((ICustomFieldsBroker)result.AsyncState).EndCreateCustomField(result); }, customFieldsBroker); } catch (Exception ex) { // would like to handle exception here } </code></pre> <p>Wrapping the Begin/End calls in a try { } catch { } block doesn't seem to even jump into the catch { } block.</p> <p>If it matters, I'm using Silverlight 3 at the client.</p> http://stackoverflow.com/questions/729153/circular-file-references-not-allowed 0 Circular file references not allowed Program.X 2009-04-08T09:04:01Z 2009-09-22T13:55:11Z <p>Hi,</p> <p>I am having a problem in building my solution in VS2008. Normally, it compiles fine in the environment. Sometimes, it fails with:</p> <pre><code>/xxx_WEB/secure/CMSManagedTargetPage.aspx(1): error ASPPARSE: Circular file references are not allowed. </code></pre> <p>I rebuild and it works fine.</p> <p>Now, however, I am in the middle of setting up a CruiseControl.NET system and am testing my checked out code with MSBuild before I integrate the build into CC. Now, everytime I MSBuild, I get:</p> <pre><code>"Q:\cc\xxx\checked out from svn\xxx.sln" (default target) (1) -&gt; (xxx_WEB target) -&gt; /xxx_WEB/secure/CMSManagedTargetPage.aspx(1): error ASPPARSE: Circular file references are not allowed. </code></pre> <p>Problem is, I can't see where this reference is.</p> <ul> <li><p>I have searched for the reference across the entire solution and canf ind no references to the page itself (CMSManagedTargetPage) anywhere other than in the page or its codebehind, or within a string, eg: </p> <p>C:\dev2008\xxx\IWW.xxx.ASPNET\AspxHttpHandler.cs(82): inputFile = context.Server.MapPath("~/secure/CMSManagedTargetPage.aspx"); C:\dev2008\xxx\IWW.xxx.ASPNET\AspxHttpHandler.cs(83): virtualPath = "~/secure/CMSManagedTargetPage.aspx";</p></li> </ul> <p>My assembly references are also fine (as far as I know). My Web Application is at the "top" of the dependencies, and nothing references it and therefore the faulting page so cannot cause a circular reference. Of course, the page itself may reference something such as a UserControl within the same assembly/web site, but as mentioned earlier, a search on CMSManagedTargetPage yielded no results so this is not happening.</p> <p>Changing the batch attribute in web.config had no effect on MSBuild.</p> <p>I find it very odd that it "sometimes" fails in VS and always fails in MSBuild. Am I missing some subtlety?</p> http://stackoverflow.com/questions/1432265/threading-pattern-chaining-and-looping 0 Threading pattern: Chaining and looping Program.X 2009-09-16T10:56:50Z 2009-09-18T07:55:44Z <p>Hi,</p> <p>I need to use a WCF API to save data into a DB. Ordinarily, I'd use chaining, like the example below:</p> <pre><code> IClientBroker clientBroker = UIContext.CreateWcfInterface&lt;IClientBroker&gt;("Data/ClientBroker.svc"); clientBroker.BeginSetClientBusinessName(_client.ID, businessName, (result) =&gt; { _client = ((IClientBroker)result.AsyncState).EndSetClientBusinessName(result); clientBroker.BeginSetClientAddress(_client.ID, addressObservableCollection, postcodeZip, (result2) =&gt; { _client = ((IClientBroker)result2.AsyncState).EndSetClientAddress(result2); clientBroker.BeginSetClientTelephone(_client.ID, telephone, (result3) =&gt; { _client = ((IClientBroker)result3.AsyncState).EndSetClientTelephone(result3); clientBroker.BeginSetClientFax(_client.ID, fax, (result4) =&gt; { _client = ((IClientBroker)result4.AsyncState).EndSetClientFax(result4); if (customFields.Save(validationSummaryBridge)) { CloseWindow(true, "ClientID=" + _client.ID.ToString()); } else { validationSummary.Errors.Add(new ValidationSummaryItem("Failed to save Custom Fields")); } }, clientBroker); }, clientBroker); }, clientBroker); }, clientBroker); } </code></pre> <p>This gives me faux-synchronous behaviour which I need so exceptions are thrown in a timely fashion and I can react on validation events.</p> <p>This doesn't map well, however, when I have a loop of fields to save. For example, what pattern would be best to save the following list of "Custom Fields", where each Custom Field must be saved using a single WCF call?</p> <pre><code> ICustomFieldsBroker customFieldsBroker = UIContext.CreateWcfInterface&lt;ICustomFieldsBroker&gt;("Data/CustomFieldsBroker.svc"); foreach (CustomField customField in _customFields) { string newValue=_customFieldControlDictionary[customField].CustomField.Value; customFieldsBroker.BeginSetCustomFieldValueForItem(DataTypeID, DataItemID, customField.Key, newValue, (result) =&gt; { ((ICustomFieldsBroker)result.AsyncState).EndSetCustomFieldValueForItem(result); }, customFieldsBroker); } </code></pre> <p>In the above example, this would just set off, say, 5 requests to the WCF API/threads which would potentially return AFTER the form has closed. I need them to "line up", so I can list their status and return to the form.</p> <p>Thanks very much.</p> <p>Don't let the WCF distract you, but if you have any comments, do let me know. :)</p> http://stackoverflow.com/questions/1432265/threading-pattern-chaining-and-looping/1443116#1443116 0 Answer by Program.X for Threading pattern: Chaining and looping Program.X 2009-09-18T07:55:44Z 2009-09-18T07:55:44Z <p>This is the answer I was looking for:</p> <p><a href="http://www.netfxharmonics.com/2008/11/Understanding-WCF-Services-in-Silverlight-2#WCFSilverlightThreadWaiting" rel="nofollow">http://www.netfxharmonics.com/2008/11/Understanding-WCF-Services-in-Silverlight-2#WCFSilverlightThreadWaiting</a></p> http://stackoverflow.com/questions/1437607/would-keeping-an-xml-data-inside-sql-table-be-an-architectural-misconception/1437620#1437620 3 Answer by Program.X for Would keeping an XML data inside sql table be an architectural misconception? Program.X 2009-09-17T09:02:47Z 2009-09-17T09:02:47Z <p>I did a similar thing in a shopping basket application. We needed to attach meta data to the products without creating too much of a schema, which would have restricted the format of the meta-data in the future. We kept the meta-data as XML.</p> <p>The only reason I would not do it is if you're going to end up performing queries on the data. Just make sure you won't have some daft person wanting reports by Publisher meta-data or something (which has happened to me) and you should be fine.</p> http://stackoverflow.com/questions/1410757/programmatic-configuration-of-silverlight-wcf-client 2 Programmatic configuration of [Silverlight] WCF Client Program.X 2009-09-11T13:07:23Z 2009-09-11T14:01:12Z <p>Hi,</p> <p>We're developing a Silverlight Client onto a server-based API exposed via WCF.</p> <p>I'm trying to move my WCF client code (which works fine) from a configuration-based model to a programmatic model. This will enable me to have a single "root" URL which I can apply at start-up and not require installations to have to maintain humongous configuration files.</p> <p>I'm stuggling converting my configurations to Silverlight-capable code, though.</p> <p>Where I have the configuration below for one of my services:</p> <pre><code>&lt;configuration&gt; &lt;system.serviceModel&gt; &lt;bindings&gt; &lt;customBinding&gt; &lt;binding name="CustomBinding_ISilverlightHelper"&gt; &lt;binaryMessageEncoding /&gt; &lt;httpTransport maxReceivedMessageSize="2147483647" maxBufferSize="2147483647"&gt; &lt;extendedProtectionPolicy policyEnforcement="Never" /&gt; &lt;/httpTransport&gt; &lt;/binding&gt; &lt;/customBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint address="http://localhost:50072/API/WCF/Silverlight/SilverlightHelper.svc" binding="customBinding" bindingConfiguration="CustomBinding_ISilverlightHelper" contract="API.WCF.Silverlight.ISilverlightHelper" name="CustomBinding_ISilverlightHelper" /&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; &lt;/configuration&gt; </code></pre> <p>I can't figure out how to create the equivelant client-config code. At the moment I have:</p> <pre><code>CustomBinding customBinding = new CustomBinding(); // I see I need to do something with customBinding but the properties don't seem // logical // I have used BasicHttpBinding, but it just returns with "Not Found" (the service does resolve to a valid URL) BasicHttpBinding basicHttpBinding = new BasicHttpBinding() { MaxBufferSize = int.MaxValue, MaxReceivedMessageSize = int.MaxValue }; EndpointAddress endpointAddress = new EndpointAddress("http://localhost:50072/API/WCF/Silverlight/SilverlightHelper.svc"); ISilverlightHelper silverlightHelper= new ChannelFactory&lt;ISilverlightHelper&gt;(basicHttpBinding, endpointAddress).CreateChannel(); AsyncCallback asyncCallback = delegate(IAsyncResult result) { ISilverlightHelper asyncSilverlightHelper = (ISilverlightHelper)result.AsyncState; string[] files=asyncSilverlightHelper.EndGetPlugInXapNames(result).ToArray(); }; silverlightHelper.BeginGetPlugInXapNames(asyncCallback, silverlightHelper); </code></pre> <p>Any clues would be appreciated. I've spent all morning Googling/Binging/Overflowing but haven't come across this scenario. Or I might be just so far wrong ...</p> http://stackoverflow.com/questions/1410757/programmatic-configuration-of-silverlight-wcf-client/1411042#1411042 3 Answer by Program.X for Programmatic configuration of [Silverlight] WCF Client Program.X 2009-09-11T14:01:12Z 2009-09-11T14:01:12Z <p>Sorted it.</p> <p>I created the BinaryMessageEncodingBindingElement and HttpTransportBindingElements, added them to the CustomBinding and it all works.</p> <p>Here's my annotated code:</p> <pre><code>// create the binding elements BinaryMessageEncodingBindingElement binaryMessageEncoding = new BinaryMessageEncodingBindingElement(); HttpTransportBindingElement httpTransport = new HttpTransportBindingElement() { MaxBufferSize = int.MaxValue, MaxReceivedMessageSize = int.MaxValue }; // add the binding elements into a Custom Binding CustomBinding customBinding = new CustomBinding(binaryMessageEncoding,httpTransport); // create the Endpoint URL (I'll use a configured URL later - all web services will then move as one) EndpointAddress endpointAddress = new EndpointAddress("http://localhost:50072/API/WCF/Silverlight/SilverlightHelper.svc"); // create an interface for the WCF service ISilverlightHelper silverlightHelper= new ChannelFactory&lt;ISilverlightHelper&gt;(customBinding, endpointAddress).CreateChannel(); // set-up the asynchronous callback AsyncCallback asyncCallback = delegate(IAsyncResult result) { ISilverlightHelper asyncSilverlightHelper = (ISilverlightHelper)result.AsyncState; string[] files=asyncSilverlightHelper.EndGetPlugInXapNames(result).ToArray(); }; // execute the call silverlightHelper.BeginGetPlugInXapNames(asyncCallback, silverlightHelper); </code></pre> http://stackoverflow.com/questions/1276862/asp-net-debug-website-in-iis/1276875#1276875 0 Answer by Program.X for Asp.Net: Debug website in iis Program.X 2009-08-14T09:18:39Z 2009-08-14T09:18:39Z <p>It works fine for me. You just copy the files over to the IIS folder, set IIS up and go. (If on the same machine). Make sure your project properties specify "Custom web server" and "http://localhost" (or whatever).</p> <p>On Vista you need to be running Visual Studio as an Administrator.</p> <p>If you're running your IIS on a different machine, you'll need to install the Remote Debugger which is on your Visual Studio disks and connect to hat by using Debug|Attach To Process in Visual Studio.</p> http://stackoverflow.com/questions/1274452/adding-radcombobox-to-radgrid-edit/1274548#1274548 1 Answer by Program.X for Adding RadComboBox to RadGrid Edit Program.X 2009-08-13T21:00:33Z 2009-08-13T21:00:33Z <p>Telerik are the best people to help you with this, but from their site (and from memory):</p> <p><a href="http://www.telerik.com/help/aspnet-ajax/combo%5Fclientsideonclientselectedindexchanged.html" rel="nofollow">http://www.telerik.com/help/aspnet-ajax/combo%5Fclientsideonclientselectedindexchanged.html</a></p> <p>If you have your radCombo:</p> <pre><code>&lt;telerik:RadComboBox ID="RadComboBox1" runat="server" OnClientSelectedIndexChanged="OnClientSelectedIndexChanged"&gt; &lt;/telerik:RadComboBox&gt; </code></pre> <p>With your JS event:</p> <pre><code>&lt;script language="javascript" type="text/javascript"&gt; function OnClientSelectedIndexChanged(sender, eventArgs) { var item = eventArgs.get_item(); // get the text and value elements var text=item.get_text(); var val=item.get_value(); $('#hiddenField').val(val); } &lt;/script&gt; </code></pre> <p>Where hiddenField is the ID of the hidden field.</p> http://stackoverflow.com/questions/1249083/detect-silverlight-server-side 0 Detect Silverlight server-side Program.X 2009-08-08T14:54:04Z 2009-08-08T15:15:53Z <p>I have a fairly complex Silverlight banner, with interstitials, hovers, active areas, etc. This is specced to work in Silverlight 1/2.</p> <p>As I am an web standards fan, I'd like to accommodate users who do not have Silverlight and switch to an equivelant JavaScript-driven version of each banner if needed.</p> <p>For expediency, I'd love to be able to do this server-side, so I can just show/hide an asp:Panel accordingly. This will let me test between Silerlight.non Silverlight environments easily as I can then just mock a non-SL capable experience.</p> <p>Is there a way that will let me do this? I haven't noticed SL announce itself as part of the UserAgent, but we know we can't necassarily rely on that anyway. Am I restricted to relying on JavaScript and using that somehow to tell the server I need non-SL content?</p> http://stackoverflow.com/questions/1227706/prevent-forms-authentication-cookie-to-be-used-accross-browsers/1227722#1227722 0 Answer by Program.X for Prevent forms authentication cookie to be used accross browsers Program.X 2009-08-04T14:04:10Z 2009-08-04T14:04:10Z <p>Take the User Agent and embed that in your cookie? Obviously, this would only work if your cookie was encrypted.</p> <p>eg.</p> <pre><code>string plainFormCookie=GetUsername()+etc()+Request.UserAgent; // encrypt cookie afterwards </code></pre> http://stackoverflow.com/questions/1218259/modify-page-head-in-user-control/1218334#1218334 1 Answer by Program.X for Modify Page Head in User Control Program.X 2009-08-02T07:18:45Z 2009-08-02T07:18:45Z <p>You may need to make your Page Head run at server, so the usercontrol can see it.</p> <p>eg:</p> <pre><code>&lt;head runat="server"&gt; </code></pre> <p>Which I guess sort of defeats the point if this isn't already done on all your pages. Maybe a solution wide RegEx search/replace would be in order to implement this.</p> http://stackoverflow.com/questions/342518/reformatting-windows-lnk-file-via-automated-script/1211860#1211860 1 Answer by Program.X for reformatting windows lnk file via automated script Program.X 2009-07-31T10:40:51Z 2009-07-31T10:40:51Z <p>We found this VB Script which works fine.</p> <p><a href="http://www.enterpriseitplanet.com/resources/scripts_win/article.php/3081941" rel="nofollow">http://www.enterpriseitplanet.com/resources/scripts_win/article.php/3081941</a></p> <p>Some warnings:</p> <p>Careful! It runs from the root of the drive. If you test it on your own machine, you risk remapping all your Windows shortcuts - eg. those on your Start Menu! We edited the script slightly to get a bit more control (within the Main() method):</p> <pre><code> dim onlyFolder Set onlyFolder =fso.GetFolder("C:\") SearchFolder onlyFolder ' for each aDrive in fso.Drives ' if aDrive.DriveType = 2 then ' SearchFolder aDrive.RootFolder ' end if ' next </code></pre> <p>The fixlinks.ini file doesn't like empty lines, it has to be an even number of lines.</p> <p>It runs in the background and may pop up permission errors for difficult directories. It's difficult to tell when it has finished, except for the confirmation window at the end. Probably best to keep an eye on it in Process Explorer, and run it from a command shell as Administrator on Vista/etc.</p> <p>Other than that, worked great!</p> http://stackoverflow.com/questions/788940/how-to-synchronize-svn-revision-and-version-ressources-of-exe-dll-files/1143450#1143450 0 Answer by Program.X for How to synchronize SVN revision and version ressources of EXE/DLL files? Program.X 2009-07-17T13:56:54Z 2009-07-23T12:09:02Z <p>This is great help, thanks. I've refined this for Visual Studio 2008 if it's of any help to anyone.</p> <p>1/ Created a /Build folder within each project</p> <p>2/ Copied AssemblyInfo.cs to the Build folder as AssemblyInfo.cs.txt, set the Build Action to "None"</p> <p>3/ Edited the AssemblyInfo.cs.txt to have version attributes as below:</p> <pre><code>[assembly: AssemblyVersion("2.0.0.$WCREV$")] [assembly: AssemblyFileVersion("2.0.0.$WCREV$")] </code></pre> <p>4/ Added the following to the Prebuild events:</p> <pre><code>SubWCRev $(SolutionDir) $(ProjectDir)\Build\AssemblyInfo.cs.txt $(ProjectDir)\Properties\AssemblyInfo.cs </code></pre> <p>This works everytime you compile.</p> <p>I am using VisualSVN/TortoiseSVN and VisualSVN Server with Visual Studio 2008.</p> <p><strong>UPDATE:</strong></p> <p>My colleague has just updated his working copy and AssemblyInfo.cs is conflicted. Seems obvious. I have excluded it from SVN using VisualSVN to resolve this.</p> http://stackoverflow.com/questions/1159554/how-can-i-write-addon-plugin-friendly-code/1159595#1159595 0 Answer by Program.X for How can i write Addon/Plugin-friendly code ? Program.X 2009-07-21T14:34:49Z 2009-07-21T14:34:49Z <p>You don't specify what language/platform you're looking at. If it's .NET have a look at MEF:</p> <p><a href="http://www.codeplex.com/MEF" rel="nofollow">http://www.codeplex.com/MEF</a></p> <p>It's at least a good place to start if you're looking for a pattern to work from.</p> http://stackoverflow.com/questions/1002913/xsl-to-group-item 0 XSL to Group item Program.X 2009-06-16T17:36:05Z 2009-06-16T18:47:16Z <p>Hi,</p> <p>I have a set of Sitecore nodes:</p> <pre><code>&lt;item&gt; &lt;item&gt; &lt;item /&gt; &lt;/item&gt; &lt;item /&gt; &lt;!-- (1) --&gt; &lt;item /&gt; &lt;/item&gt; &lt;item&gt; &lt;item /&gt; &lt;item /&gt; &lt;/item&gt; </code></pre> <p>I can obtain the path of these using a function sc:path(.), which returns something like '/item/item' for the point marked (1).</p> <p>What I want to be able to do is group the item based on their path.</p> <p>So my output would be something like:</p> <pre><code>&lt;ul&gt; &lt;li&gt;in item &lt;ul&gt; ... &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;in item/item &lt;ul&gt; ... &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>I am playing with the preceding axes at the moment, as in the following code:</p> <pre><code>&lt;xsl:for-each select="exsl:node-set($processedResult)/item"&gt; &lt;xsl:sort select="substring-before(substring-after(sc:path(.),'/sitecore/media library/'),'.aspx')" data-type="text" order="ascending" /&gt; &lt;xsl:variable name="path" select="search:GetFriendlyPath('/sitecore/media library/',sc:path(.))" /&gt; &lt;!-- returns: item/item from /sitecore/media library/item/item/item.aspx --&gt; &lt;xsl:variable name="lastPath"&gt; &lt;xsl:choose&gt; &lt;xsl:when test="sc:path(preceding)"&gt; &lt;xsl:value-of select="search:GetFriendlyPath('sitecore/media library',sc:path(preceding))" /&gt; &lt;/xsl:when&gt; &lt;xsl:otherwise&gt;none&lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; &lt;/xsl:variable&gt; &lt;xsl:if test="$path != $lastPath"&gt; &lt;!-- grouping test --&gt; &lt;li&gt; &lt;strong&gt;in &lt;xsl:value-of select="$path" /&gt;&lt;/strong&gt; &lt;/li&gt; &lt;/xsl:if&gt; &lt;li&gt; &lt;!-- render detail --&gt; &lt;/li&gt; &lt;/xsl:for-each&gt; </code></pre> <p>... but sc:path(preceding) returns nothing. Hence my check doesn't work.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1000232/what-is-better-redirecting-user-from-restricted-area-and-not-informing-him-what-h/1000244#1000244 0 Answer by Program.X for what is better redirecting user from restricted area and not informing him what happend or telling him that its restricted?? Program.X 2009-06-16T08:44:57Z 2009-06-16T08:44:57Z <p>He'll know by virtue of HTTP redirect codes (302, etc.) if he was interested, so you might as well tell him. And IE might also do it's annoying "click" "click" everytime you redirect the page.</p> http://stackoverflow.com/questions/929637/create-asp-net-membership-database-structure-in-existing-database/929639#929639 1 Answer by Program.X for Create ASP.Net membership database structure in existing database Program.X 2009-05-30T12:09:07Z 2009-05-30T12:09:07Z <p>This should help you:</p> <p><a href="http://blog.krisvandermast.com/CreateMembershipTablesInAnotherDatabaseThanTheStandardAspnetdbmdf.aspx" rel="nofollow">http://blog.krisvandermast.com/CreateMembershipTablesInAnotherDatabaseThanTheStandardAspnetdbmdf.aspx</a></p> http://stackoverflow.com/questions/921419/how-often-do-asp-net-developers-not-use-visual-studio-design-mode/921428#921428 12 Answer by Program.X for How often do ASP.NET developers NOT use Visual Studio design mode? Program.X 2009-05-28T15:19:52Z 2009-05-28T19:10:03Z <p>I (and peers) never use Design Mode, for two reasons:</p> <ul> <li><p>I learnt in VS 2003 not to touch Design Mode because your HTML was managled by VS. (Not anymore though since 2008, but once bitten ...)</p></li> <li><p>It can take ages to render.</p></li> </ul> <p>Much quicker to drag-drop from toolbox and hand-code.</p> http://stackoverflow.com/questions/920362/how-to-iterate-through-a-list-of-strings-returned-from-a-web-service-using-jquery/920372#920372 0 Answer by Program.X for How to iterate through a list of strings returned from a web service using JQuery Program.X 2009-05-28T11:23:30Z 2009-05-28T11:23:30Z <p>I don;t think jQuery is the solution, here. Maybe the standard JavaScript string.Split()?</p> <p><a href="http://www.quirksmode.org/js/strings.html#split" rel="nofollow">http://www.quirksmode.org/js/strings.html#split</a></p> <p>So:</p> <pre><code>temp = d.split(','); </code></pre> <p>Then just iterate round a for loop?</p> <pre><code>for (var i=0; i&lt;d.temp.length; i++) { alert(temp[i]); } </code></pre> http://stackoverflow.com/questions/910511/net-or-winapi/910525#910525 1 Answer by Program.X for .NET or WinAPI Program.X 2009-05-26T12:54:18Z 2009-05-26T12:54:18Z <p>Most computers have .NET in some form on now by virtue of Windows Update and other programs the user may have installed. If you're new to coding, I'd definitely use WinForms/.NET over directly coding for the Windows API. It's much simpler, even if a larger.</p> http://stackoverflow.com/questions/896898/development-laptops-and-windows-vista-professional/896921#896921 0 Answer by Program.X for Development Laptops and windows vista professional Program.X 2009-05-22T08:42:55Z 2009-05-22T08:42:55Z <p>I bought an HP with Home Premium and did an Anytime upgrade to Ultimate. Home Premium comes with IIS.</p> http://stackoverflow.com/questions/886987/web-service-request-authentication/887020#887020 0 Answer by Program.X for Web service request authentication Program.X 2009-05-20T09:22:56Z 2009-05-20T09:22:56Z <p>I've achieved similar, using a regular HttpCookie.</p> <p>To create the cookie:</p> <pre><code>[OperationContract] public void LoginToApi(string username, string password, string clientName) { // authenticate with DB, if successful ... // construct a cookie HttpCookie httpCookie = new HttpCookie("SessionID","whateverneeded"); HttpContext.Current.Response.SetCookie(httpCookie); } </code></pre> <p>This appears in your regular HttpRequests, too. So you just reverse the process, checking the hash/session ID/username/password whatever you put in the cookie on receipt before doing anything.</p> http://stackoverflow.com/questions/886894/using-aspx-controls-in-base-class/886901#886901 0 Answer by Program.X for using aspx controls in base class Program.X 2009-05-20T08:52:34Z 2009-05-20T08:52:34Z <p>You could use FindControl, eg.</p> <pre><code>TextBox txtName=FindControl("txtName"); </code></pre> <p>which would find the control on the rendered page even though it was rendered by the descendant class. Though this is breaking the point of OO and separation of function/data somewhat.</p> http://stackoverflow.com/questions/882061/what-do-you-do-while-rebuilddeploystarting/882065#882065 1 Answer by Program.X for What do you do while re(build|deploy|start)ing? Program.X 2009-05-19T10:53:31Z 2009-05-19T10:53:31Z <p>Twitter. You learn a lot in the river.</p> http://stackoverflow.com/questions/877669/binding-not-working-in-dual-mode-webhttpbinding-and-basichttpbinding 0 Binding not working in "dual mode" (webHttpBinding and basicHttpBinding) Program.X 2009-05-18T13:10:55Z 2009-05-18T14:43:01Z <p>I have a WCF service:</p> <pre><code>&lt;%@ ServiceHost Language="C#" Debug="true" Service="IWW.MIGTurbo2.WCF.Security.SecurityBroker" Factory="System.ServiceModel.Activation.WebScriptServiceHostFactory" %&gt; </code></pre> <p>This works fine using webHttpBinding from my web project. </p> <p>I also want this service to be usable by a WinForms client, so have added a basicHttpBinding binding.</p> <p>My server config file is currently:</p> <pre><code>&lt;system.serviceModel&gt; &lt;serviceHostingEnvironment aspNetCompatibilityEnabled="true" /&gt; &lt;behaviors&gt; &lt;endpointBehaviors&gt; &lt;behavior name="webScriptEnablingBehavior"&gt; &lt;enableWebScript /&gt; &lt;/behavior&gt; &lt;behavior name="webHttpEnablingBehaviour"&gt; &lt;webHttp /&gt; &lt;/behavior&gt; &lt;/endpointBehaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="webHttpEnablingBehaviour"&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;/behavior&gt; &lt;behavior name="webScriptEnablingBehavior"&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;services&gt; &lt;service name="IWW.MIGTurbo2.WCF.Security.SecurityBroker" behaviorConfiguration="webHttpEnablingBehaviour"&gt; &lt;endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" /&gt; &lt;!-- This works for web-clients --&gt; &lt;endpoint address="" binding="webHttpBinding" bindingConfiguration="default" contract="IWW.MIGTurbo2.WCF.Security.ISecurityBroker" behaviorConfiguration="webHttpEnablingBehaviour"&gt; &lt;/endpoint&gt; &lt;!-- This is for WinForms clients, but isn't working --&gt; &lt;endpoint address="" binding="basicHttpBinding" bindingConfiguration="default" contract="IWW.MIGTurbo2.WCF.Security.ISecurityBroker" behaviorConfiguration="webHttpEnablingBehaviour"&gt; &lt;/endpoint&gt; &lt;/service&gt; &lt;/services&gt; &lt;client /&gt; &lt;bindings&gt; &lt;webHttpBinding&gt; &lt;binding name="default" &gt;&lt;/binding&gt; &lt;/webHttpBinding&gt; &lt;basicHttpBinding&gt; &lt;binding name="default" allowCookies="true"&gt;&lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; </code></pre> <p></p> <p>The section marked for WinForms doesn't appear to work. I get an exception: </p> <blockquote> <p>The endpoint at '<a href="http://localhost:56125/MIGTurbo2_WEB/api/wcf/SecurityBroker.svc" rel="nofollow">http://localhost:56125/MIGTurbo2_WEB/api/wcf/SecurityBroker.svc</a>' does not have a Binding with the None MessageVersion. 'System.ServiceModel.Description.WebHttpBehavior' is only intended for use with WebHttpBinding or similar bindings.</p> </blockquote> <p>When I try to browse to the .svc file manually using IE. Obviously, the WinForms client doesn't want to know.</p> <p>Can anyone spread any light on why it isn't working? It almost looks as if I can't have more than one endpoint or the second endpoint isn't configured correctly? Google offers nothing that is particularly useful.</p> http://stackoverflow.com/questions/877669/binding-not-working-in-dual-mode-webhttpbinding-and-basichttpbinding/878103#878103 0 Answer by Program.X for Binding not working in "dual mode" (webHttpBinding and basicHttpBinding) Program.X 2009-05-18T14:43:01Z 2009-05-18T14:43:01Z <p><strong>The Answer:</strong></p> <p>(Brian got it the points, but this is what caused it in detail)</p> <p>Visual Studio had created a "customBinding" element for me on the client side, which was less than helpful. So to get it working, I changed my client-side app.config to be:</p> <pre><code> &lt;system.serviceModel&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="WebHttpBinding_ISecurityBroker" allowCookies="true" /&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint binding="basicHttpBinding" bindingConfiguration="WebHttpBinding_ISecurityBroker" contract="Client.API.WCF.ISecurityBroker" name="WebHttpBinding_ISecurityBroker" /&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; </code></pre> <p>and my server-side web.config to be:</p> <pre><code>&lt;system.serviceModel&gt; &lt;serviceHostingEnvironment aspNetCompatibilityEnabled="true" /&gt; &lt;behaviors&gt; &lt;endpointBehaviors&gt; &lt;behavior name="webHttpEnablingBehaviour"&gt; &lt;webHttp /&gt; &lt;/behavior&gt; &lt;/endpointBehaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="webHttpEnablingBehaviour"&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;services&gt; &lt;service name="IWW.MIGTurbo2.WCF.Security.SecurityBroker" behaviorConfiguration="webHttpEnablingBehaviour"&gt; &lt;endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" /&gt; &lt;endpoint address="" binding="webHttpBinding" bindingConfiguration="default" contract="IWW.MIGTurbo2.WCF.Security.ISecurityBroker" behaviorConfiguration="webHttpEnablingBehaviour"&gt; &lt;/endpoint&gt; &lt;endpoint address="other" binding="basicHttpBinding" bindingConfiguration="default" contract="IWW.MIGTurbo2.WCF.Security.ISecurityBroker"&gt; &lt;/endpoint&gt; &lt;/service&gt; &lt;/services&gt; &lt;client /&gt; &lt;bindings&gt; &lt;webHttpBinding&gt; &lt;binding name="default" &gt;&lt;/binding&gt; &lt;/webHttpBinding&gt; &lt;basicHttpBinding&gt; &lt;binding name="default" allowCookies="true"&gt;&lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;/system.serviceModel&gt; </code></pre> <p>and I have the following code to connect within my client application (WinForms):</p> <pre><code>using (SecurityBrokerClient securityBrokerClient = new SecurityBrokerClient()) { string securityBrokerUrl=url+"api/wcf/SecurityBroker.svc"; securityBrokerUrl += "/other"; securityBrokerClient.Endpoint.Address = new System.ServiceModel.EndpointAddress(securityBrokerUrl); securityBrokerClient.Open(); securityBrokerClient.Login(username, password, "MIGTurbo2Admin"); } </code></pre> http://stackoverflow.com/questions/1521117/wcf-over-ssl-404-error/1527277#1527277 Comment by Program.X on WCF over SSL - 404 error Program.X 2009-10-07T07:31:08Z 2009-10-07T07:31:08Z ... and that fills me with the same dread as the rest of WCF/Silverlight does. Too many variables. Create a new project from scratch and it will &quot;just work&quot;. Not an option in the real world! (I've had to do it before). Thanks for your answer. http://stackoverflow.com/questions/1521117/wcf-over-ssl-404-error Comment by Program.X on WCF over SSL - 404 error Program.X 2009-10-06T13:19:39Z 2009-10-06T13:19:39Z I'd really be interested in this, too. I have an HTTP WCF service at the moment and expect trouble when providing option of HTTPS. Please remember to post your result! :) http://stackoverflow.com/questions/1466462/programmatic-configuration-of-exception-sending-in-wcf/1473010#1473010 Comment by Program.X on Programmatic configuration of Exception-sending in WCF Program.X 2009-09-25T16:00:36Z 2009-09-25T16:00:36Z Thanks very much for your help. This has solved it. Although, I'm concerned about the web.config setting requirement: &lt;behaviorExtensions&gt; &lt;add name=&quot;silverlightFaults&quot; type=&quot;IWW.MIGTurbo2.WCF.SilverlightFaultBehavior, IWW.MIGTurbo2.WCF, Version=2.0.0.429, Culture=neutral, PublicKeyToken=null&quot;/&gt; &lt;/behaviorExtensions&gt; I seem to have have the complete Version= there, which I would like to avoid, as it is dynamically updated. Is there a way I can ignore this version number? http://stackoverflow.com/questions/1432265/threading-pattern-chaining-and-looping Comment by Program.X on Threading pattern: Chaining and looping Program.X 2009-09-16T11:41:29Z 2009-09-16T11:41:29Z And your productive point would be ... too much nesting? So suggest a better way of doing it while retaining some level of code encapsulation. http://stackoverflow.com/questions/1249083/detect-silverlight-server-side Comment by Program.X on Detect Silverlight server-side Program.X 2009-08-13T07:14:53Z 2009-08-13T07:14:53Z I actually haven't had chance to try it because something came up, but certainly within the next week. I've made sure I've cleared the decks. I'll be sure to accept/rate your answer appropriately. Very sorry for the delay. http://stackoverflow.com/questions/1198502/radgrid-rows-with-controls Comment by Program.X on Radgrid rows with controls Program.X 2009-07-29T07:33:06Z 2009-07-29T07:33:06Z Have you asked this at Telerik.com, or raised a ticket? They are outstanding on support. http://stackoverflow.com/questions/1118490/internet-explorer-hanging-when-debugging-asp-net-app/1120119#1120119 Comment by Program.X on Internet Explorer hanging when debugging ASP.NET app Program.X 2009-07-13T15:43:36Z 2009-07-13T15:43:36Z Using other tabs, even the URL bar to navigate anywhere (even public web sites) provides no joy. Still same &quot;hang&quot;/&quot;staleness&quot;. I've never seen any local requests appear in Fiddler. I didn't know Fiddler respected local-&gt;local requests? http://stackoverflow.com/questions/1118490/internet-explorer-hanging-when-debugging-asp-net-app Comment by Program.X on Internet Explorer hanging when debugging ASP.NET app Program.X 2009-07-13T12:28:41Z 2009-07-13T12:28:41Z Here's an interesting thing. When it fails under normal, I run it under no-debugging and it still may not work. When it doesn't work, closing IE re-opens a new IE and it bursts into life. http://stackoverflow.com/questions/1118490/internet-explorer-hanging-when-debugging-asp-net-app/1118614#1118614 Comment by Program.X on Internet Explorer hanging when debugging ASP.NET app Program.X 2009-07-13T10:40:31Z 2009-07-13T10:40:31Z Hi and Thanks, sorry for the delay. Sods law is if you want it to fail to check these out, it starts working. 1) The project has consistently run on 56125 ever since I started it and this remains the case. 2) Have started IIS, though I am using Cassini (which I have also tried restarting)? - no effect. 3) No hung processes of IE. http://stackoverflow.com/questions/1118490/internet-explorer-hanging-when-debugging-asp-net-app Comment by Program.X on Internet Explorer hanging when debugging ASP.NET app Program.X 2009-07-13T10:04:06Z 2009-07-13T10:04:06Z It works in Firefox. I'm keen to make it work in IE as that is my preferred browser when used with VS. Thanks. http://stackoverflow.com/questions/1002913/xsl-to-group-item/1003156#1003156 Comment by Program.X on XSL to Group item Program.X 2009-06-17T08:11:47Z 2009-06-17T08:11:47Z That's got it. Excellent, thanks very much. http://stackoverflow.com/questions/1002913/xsl-to-group-item Comment by Program.X on XSL to Group item Program.X 2009-06-17T07:48:22Z 2009-06-17T07:48:22Z Sorry, $processedResult is the &lt;item&gt; structure. It's the result of a node-set operation. That does produce intended XML. http://stackoverflow.com/questions/921419/how-often-do-asp-net-developers-not-use-visual-studio-design-mode/921428#921428 Comment by Program.X on How often do ASP.NET developers NOT use Visual Studio design mode? Program.X 2009-05-28T15:44:42Z 2009-05-28T15:44:42Z @NeilN Nah, I used Notepad before. @annakata and @TheTXI: I will be sure to pass your thoughts onto a colleague - who swears by DreamWeaver. Not for much longer though, going all Visual Studio very soon. DreamWeaver is for legacy stuff. http://stackoverflow.com/questions/915191/what-is-the-regex-to-match-this-pattern-in-a-html-document-in-c Comment by Program.X on What is the REGEX to match this pattern in a html document in C#? Program.X 2009-05-27T11:24:20Z 2009-05-27T11:24:20Z I can't help you I'm afraid but if you need help on .NET RegEx, try Expresso <a href="http://www.ultrapico.com/Expresso.htm" rel="nofollow">ultrapico.com/Expresso.htm</a> It's free and really very good for testing RegEx. http://stackoverflow.com/questions/713243/should-i-store-my-images-in-the-database-or-folders/713250#713250 Comment by Program.X on Should I store my images in the database or folders? Program.X 2009-05-23T19:24:48Z 2009-05-23T19:24:48Z Assuming that your DB is secured effectively, it provides an extra layer. Attacker needs to identify images are stored in SQL, identify server, username/password, table. Simply scanning a file system on a compromised machine won't yield results and a badly written web site won't expose files through HTTP request techniques (eg leaving files downloadable). Works even better if the SQL Server is on a seperate machine/network.