User Program.X - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T08:51:36Zhttp://stackoverflow.com/feeds/user/76037http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1118490/internet-explorer-hanging-when-debugging-asp-net-app0Internet Explorer hanging when debugging ASP.NET appProgram.X2009-07-13T09:34:47Z2009-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#15254260Answer by Program.X for Internet Explorer hanging when debugging ASP.NET appProgram.X2009-10-06T12:58:58Z2009-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#14867572Answer by Program.X for Rules of thumbs for writing "queries" using ADO.NET Entity FrameworkProgram.X2009-09-28T12:27:21Z2009-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-wcf1Programmatic configuration of Exception-sending in WCFProgram.X2009-09-23T14:43:53Z2009-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<TWcfApiEndPoint> channelFactory=new ChannelFactory<TWcfApiEndPoint>(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) =>
{
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-allowed0Circular file references not allowedProgram.X2009-04-08T09:04:01Z2009-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) ->
(xxx_WEB target) ->
/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-looping0Threading pattern: Chaining and loopingProgram.X2009-09-16T10:56:50Z2009-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<IClientBroker>("Data/ClientBroker.svc");
clientBroker.BeginSetClientBusinessName(_client.ID, businessName, (result) =>
{
_client = ((IClientBroker)result.AsyncState).EndSetClientBusinessName(result);
clientBroker.BeginSetClientAddress(_client.ID, addressObservableCollection, postcodeZip, (result2) =>
{
_client = ((IClientBroker)result2.AsyncState).EndSetClientAddress(result2);
clientBroker.BeginSetClientTelephone(_client.ID, telephone, (result3) =>
{
_client = ((IClientBroker)result3.AsyncState).EndSetClientTelephone(result3);
clientBroker.BeginSetClientFax(_client.ID, fax, (result4) =>
{
_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<ICustomFieldsBroker>("Data/CustomFieldsBroker.svc");
foreach (CustomField customField in _customFields)
{
string newValue=_customFieldControlDictionary[customField].CustomField.Value;
customFieldsBroker.BeginSetCustomFieldValueForItem(DataTypeID, DataItemID, customField.Key, newValue, (result) =>
{
((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#14431160Answer by Program.X for Threading pattern: Chaining and loopingProgram.X2009-09-18T07:55:44Z2009-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#14376203Answer by Program.X for Would keeping an XML data inside sql table be an architectural misconception?Program.X2009-09-17T09:02:47Z2009-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-client2Programmatic configuration of [Silverlight] WCF ClientProgram.X2009-09-11T13:07:23Z2009-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><configuration>
<system.serviceModel>
<bindings>
<customBinding>
<binding name="CustomBinding_ISilverlightHelper">
<binaryMessageEncoding />
<httpTransport maxReceivedMessageSize="2147483647" maxBufferSize="2147483647">
<extendedProtectionPolicy policyEnforcement="Never" />
</httpTransport>
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="http://localhost:50072/API/WCF/Silverlight/SilverlightHelper.svc"
binding="customBinding" bindingConfiguration="CustomBinding_ISilverlightHelper"
contract="API.WCF.Silverlight.ISilverlightHelper" name="CustomBinding_ISilverlightHelper" />
</client>
</system.serviceModel>
</configuration>
</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<ISilverlightHelper>(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#14110423Answer by Program.X for Programmatic configuration of [Silverlight] WCF ClientProgram.X2009-09-11T14:01:12Z2009-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<ISilverlightHelper>(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#12768750Answer by Program.X for Asp.Net: Debug website in iisProgram.X2009-08-14T09:18:39Z2009-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#12745481Answer by Program.X for Adding RadComboBox to RadGrid EditProgram.X2009-08-13T21:00:33Z2009-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><telerik:RadComboBox
ID="RadComboBox1"
runat="server"
OnClientSelectedIndexChanged="OnClientSelectedIndexChanged">
</telerik:RadComboBox>
</code></pre>
<p>With your JS event:</p>
<pre><code><script language="javascript" type="text/javascript">
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);
}
</script>
</code></pre>
<p>Where hiddenField is the ID of the hidden field.</p>
http://stackoverflow.com/questions/1249083/detect-silverlight-server-side0Detect Silverlight server-side Program.X2009-08-08T14:54:04Z2009-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#12277220Answer by Program.X for Prevent forms authentication cookie to be used accross browsersProgram.X2009-08-04T14:04:10Z2009-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#12183341Answer by Program.X for Modify Page Head in User ControlProgram.X2009-08-02T07:18:45Z2009-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><head runat="server">
</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#12118601Answer by Program.X for reformatting windows lnk file via automated scriptProgram.X2009-07-31T10:40:51Z2009-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#11434500Answer by Program.X for How to synchronize SVN revision and version ressources of EXE/DLL files?Program.X2009-07-17T13:56:54Z2009-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#11595950Answer by Program.X for How can i write Addon/Plugin-friendly code ?Program.X2009-07-21T14:34:49Z2009-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-item0XSL to Group itemProgram.X2009-06-16T17:36:05Z2009-06-16T18:47:16Z
<p>Hi,</p>
<p>I have a set of Sitecore nodes:</p>
<pre><code><item>
<item>
<item />
</item>
<item /> <!-- (1) -->
<item />
</item>
<item>
<item />
<item />
</item>
</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><ul>
<li>in item
<ul>
...
</ul>
</li>
<li>in item/item
<ul>
...
</ul>
</li>
</ul>
</code></pre>
<p>I am playing with the preceding axes at the moment, as in the following code:</p>
<pre><code><xsl:for-each select="exsl:node-set($processedResult)/item">
<xsl:sort
select="substring-before(substring-after(sc:path(.),'/sitecore/media library/'),'.aspx')"
data-type="text"
order="ascending" />
<xsl:variable
name="path"
select="search:GetFriendlyPath('/sitecore/media library/',sc:path(.))" />
<!-- returns: item/item from /sitecore/media library/item/item/item.aspx -->
<xsl:variable name="lastPath">
<xsl:choose>
<xsl:when test="sc:path(preceding)">
<xsl:value-of
select="search:GetFriendlyPath('sitecore/media library',sc:path(preceding))" />
</xsl:when>
<xsl:otherwise>none</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:if test="$path != $lastPath"> <!-- grouping test -->
<li>
<strong>in <xsl:value-of select="$path" /></strong>
</li>
</xsl:if>
<li>
<!-- render detail -->
</li>
</xsl:for-each>
</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#10002440Answer 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.X2009-06-16T08:44:57Z2009-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#9296391Answer by Program.X for Create ASP.Net membership database structure in existing databaseProgram.X2009-05-30T12:09:07Z2009-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#92142812Answer by Program.X for How often do ASP.NET developers NOT use Visual Studio design mode?Program.X2009-05-28T15:19:52Z2009-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#9203720Answer by Program.X for How to iterate through a list of strings returned from a web service using JQueryProgram.X2009-05-28T11:23:30Z2009-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<d.temp.length; i++) {
alert(temp[i]);
}
</code></pre>
http://stackoverflow.com/questions/910511/net-or-winapi/910525#9105251Answer by Program.X for .NET or WinAPIProgram.X2009-05-26T12:54:18Z2009-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#8969210Answer by Program.X for Development Laptops and windows vista professionalProgram.X2009-05-22T08:42:55Z2009-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#8870200Answer by Program.X for Web service request authenticationProgram.X2009-05-20T09:22:56Z2009-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#8869010Answer by Program.X for using aspx controls in base classProgram.X2009-05-20T08:52:34Z2009-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#8820651Answer by Program.X for What do you do while re(build|deploy|start)ing?Program.X2009-05-19T10:53:31Z2009-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-basichttpbinding0Binding not working in "dual mode" (webHttpBinding and basicHttpBinding)Program.X2009-05-18T13:10:55Z2009-05-18T14:43:01Z
<p>I have a WCF service:</p>
<pre><code><%@ ServiceHost Language="C#" Debug="true" Service="IWW.MIGTurbo2.WCF.Security.SecurityBroker" Factory="System.ServiceModel.Activation.WebScriptServiceHostFactory" %>
</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><system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
<behaviors>
<endpointBehaviors>
<behavior name="webScriptEnablingBehavior">
<enableWebScript />
</behavior>
<behavior name="webHttpEnablingBehaviour">
<webHttp />
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="webHttpEnablingBehaviour">
<serviceMetadata httpGetEnabled="true" />
</behavior>
<behavior name="webScriptEnablingBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service name="IWW.MIGTurbo2.WCF.Security.SecurityBroker" behaviorConfiguration="webHttpEnablingBehaviour">
<endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" />
<!-- This works for web-clients -->
<endpoint address=""
binding="webHttpBinding"
bindingConfiguration="default"
contract="IWW.MIGTurbo2.WCF.Security.ISecurityBroker"
behaviorConfiguration="webHttpEnablingBehaviour">
</endpoint>
<!-- This is for WinForms clients, but isn't working -->
<endpoint address=""
binding="basicHttpBinding"
bindingConfiguration="default"
contract="IWW.MIGTurbo2.WCF.Security.ISecurityBroker"
behaviorConfiguration="webHttpEnablingBehaviour">
</endpoint>
</service>
</services>
<client />
<bindings>
<webHttpBinding>
<binding name="default" ></binding>
</webHttpBinding>
<basicHttpBinding>
<binding name="default" allowCookies="true"></binding>
</basicHttpBinding>
</bindings>
</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#8781030Answer by Program.X for Binding not working in "dual mode" (webHttpBinding and basicHttpBinding)Program.X2009-05-18T14:43:01Z2009-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> <system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="WebHttpBinding_ISecurityBroker" allowCookies="true" />
</basicHttpBinding>
</bindings>
<client>
<endpoint binding="basicHttpBinding" bindingConfiguration="WebHttpBinding_ISecurityBroker"
contract="Client.API.WCF.ISecurityBroker" name="WebHttpBinding_ISecurityBroker" />
</client>
</system.serviceModel>
</code></pre>
<p>and my server-side web.config to be:</p>
<pre><code><system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
<behaviors>
<endpointBehaviors>
<behavior name="webHttpEnablingBehaviour">
<webHttp />
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="webHttpEnablingBehaviour">
<serviceMetadata httpGetEnabled="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service
name="IWW.MIGTurbo2.WCF.Security.SecurityBroker" behaviorConfiguration="webHttpEnablingBehaviour">
<endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" />
<endpoint address=""
binding="webHttpBinding"
bindingConfiguration="default"
contract="IWW.MIGTurbo2.WCF.Security.ISecurityBroker"
behaviorConfiguration="webHttpEnablingBehaviour">
</endpoint>
<endpoint address="other"
binding="basicHttpBinding"
bindingConfiguration="default"
contract="IWW.MIGTurbo2.WCF.Security.ISecurityBroker">
</endpoint>
</service>
</services>
<client />
<bindings>
<webHttpBinding>
<binding name="default" ></binding>
</webHttpBinding>
<basicHttpBinding>
<binding name="default" allowCookies="true"></binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
</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#1527277Comment by Program.X on WCF over SSL - 404 errorProgram.X2009-10-07T07:31:08Z2009-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 "just work". 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-errorComment by Program.X on WCF over SSL - 404 errorProgram.X2009-10-06T13:19:39Z2009-10-06T13:19:39ZI'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#1473010Comment by Program.X on Programmatic configuration of Exception-sending in WCFProgram.X2009-09-25T16:00:36Z2009-09-25T16:00:36ZThanks very much for your help. This has solved it.
Although, I'm concerned about the web.config setting requirement:
<behaviorExtensions>
<add name="silverlightFaults"
type="IWW.MIGTurbo2.WCF.SilverlightFaultBehavior, IWW.MIGTurbo2.WCF, Version=2.0.0.429, Culture=neutral, PublicKeyToken=null"/>
</behaviorExtensions>
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-loopingComment by Program.X on Threading pattern: Chaining and loopingProgram.X2009-09-16T11:41:29Z2009-09-16T11:41:29ZAnd 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-sideComment by Program.X on Detect Silverlight server-side Program.X2009-08-13T07:14:53Z2009-08-13T07:14:53ZI 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-controlsComment by Program.X on Radgrid rows with controlsProgram.X2009-07-29T07:33:06Z2009-07-29T07:33:06ZHave 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#1120119Comment by Program.X on Internet Explorer hanging when debugging ASP.NET appProgram.X2009-07-13T15:43:36Z2009-07-13T15:43:36ZUsing other tabs, even the URL bar to navigate anywhere (even public web sites) provides no joy. Still same "hang"/"staleness". I've never seen any local requests appear in Fiddler. I didn't know Fiddler respected local->local requests?
http://stackoverflow.com/questions/1118490/internet-explorer-hanging-when-debugging-asp-net-appComment by Program.X on Internet Explorer hanging when debugging ASP.NET appProgram.X2009-07-13T12:28:41Z2009-07-13T12:28:41ZHere'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#1118614Comment by Program.X on Internet Explorer hanging when debugging ASP.NET appProgram.X2009-07-13T10:40:31Z2009-07-13T10:40:31ZHi 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-appComment by Program.X on Internet Explorer hanging when debugging ASP.NET appProgram.X2009-07-13T10:04:06Z2009-07-13T10:04:06ZIt 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#1003156Comment by Program.X on XSL to Group itemProgram.X2009-06-17T08:11:47Z2009-06-17T08:11:47ZThat's got it. Excellent, thanks very much.http://stackoverflow.com/questions/1002913/xsl-to-group-itemComment by Program.X on XSL to Group itemProgram.X2009-06-17T07:48:22Z2009-06-17T07:48:22ZSorry, $processedResult is the <item> 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#921428Comment by Program.X on How often do ASP.NET developers NOT use Visual Studio design mode?Program.X2009-05-28T15:44:42Z2009-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-cComment by Program.X on What is the REGEX to match this pattern in a html document in C#?Program.X2009-05-27T11:24:20Z2009-05-27T11:24:20ZI 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#713250Comment by Program.X on Should I store my images in the database or folders?Program.X2009-05-23T19:24:48Z2009-05-23T19:24:48ZAssuming 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.