active questions tagged .net - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T04:05:28Z http://stackoverflow.com/feeds/tag/.net http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1885391/how-do-i-write-a-regular-expression-to-match-any-non-empty-content-of-an-xml-elem -1 How do I write a Regular Expression to match any non-empty content of an XML element that has no children elements? Phobis 2009-12-11T02:01:36Z 2009-12-11T04:04:33Z <p>I am trying to match elements that have no other children elements, but also have content. No content also includes whitespace and &amp;nbsp; characters. I need to do this in C#.</p> <p>Take this XML for instance:</p> <pre><code>&lt;1&gt; &lt;2&gt;&lt;3 /&gt;&lt;/2&gt; &lt;4&gt; &lt;5&gt;This is match 1&lt;/5&gt; &lt;/4&gt; &lt;6&gt; &lt;/6&gt; &lt;7&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/7&gt; &lt;8&gt;This is match 2&lt;/8&gt; &lt;/1&gt; </code></pre> <p>So only elements 5 and 8 match. The rest of the elements have child elements or "whitespace" <em>(spaces, tabs, carriage returns, new lines, &ampnbsp;)</em></p> <h2>Note</h2> <p>SLaks posted:</p> <p><em>"In general, you must not parse XML using regular expressions. Instead, use the System.Xml namespace."</em></p> <p>This unfortunately is not viable in this situation. This is an application that was not made by my team and we need to optimize it without rewriting anything (not my decision). <strong>It is invalid XML</strong> and so I need to do this in order to make it valid. Then I can treat it as xml :) </p> <p><strong><em>So in other words, it is a string that closely resembles XML.</em></strong></p> <p>This is what I have come up with so far, it accounts for everything but the "whitespace" exclusion:</p> <pre><code> Regex ElementExpression = new Regex( @"&lt;(?'tag'\w+?).*&gt;" + // match first tag, and name it 'tag' @"(?'text'[^&lt;&gt;]*[\\S]+?)" + // match text content, name it 'text' @"&lt;/\k'tag'&gt;" // match last tag, denoted by 'tag' , RegexOptions.Multiline | RegexOptions.Compiled | RegexOptions.IgnoreCase); </code></pre> http://stackoverflow.com/questions/564220/reset-checkboxes-in-datalist-on-click-of-button-that-is-outside-of-datalist-using 0 Reset checkboxes in datalist on click of button that is outside of datalist using c# Yogini 2009-02-19T06:54:12Z 2009-12-11T04:00:02Z <p>Reset checkboxes in datalist on click of button that is outside of datalist using c#</p> http://stackoverflow.com/questions/568360/loading-c-form-into-activex-control 0 Loading C# form into ActiveX control santhosh kumar 2009-02-20T05:08:32Z 2009-12-11T04:00:02Z <p>Hi all, Is it possible loading C# form (or C# application) into ActiveX control? I know how to load ActiveX control to C# form.... </p> http://stackoverflow.com/questions/1885644/how-can-i-stub-the-properties-settings-object-when-the-unit-test-is-in-a-differen 0 How can I stub the Properties.Settings object when the unit test is in a different assembly? Glenn Slaven 2009-12-11T03:37:11Z 2009-12-11T03:44:40Z <p>I have an object the references a bunch of <code>Properties.Settings.Default...</code> values and I need to stub these in the unit test for this object.</p> <p>Unfortunately the type for the settings object is declared as <code>internal</code> and so I can't access it from the unit test project.</p> <p>How can I stub up the return values for these properties? I'm using Rhino Mocks for mocking.</p> http://stackoverflow.com/questions/1885604/what-fontfamily-fonts-can-i-use-in-a-listbox 1 What FontFamily Fonts can I use in a ListBox? Ben McCormack 2009-12-11T03:24:07Z 2009-12-11T03:42:46Z <p>I'm trying to change the <code>FontFamily</code> of a <code>ListBox</code> to a fixed-width font, but I don't know what's available. Here's what I have:</p> <pre><code>&lt;ListBox Margin="12,55,12,12" Name="listBox1" FontFamily="Arial" /&gt; </code></pre> <p>When I try something like <code>FontFamily="Courier"</code>, it won't show up as Courier, which leads me to believe that font may not be available. I've tried searching for the last 10 minutes, but I can't find a list of fonts that I can use by default in WPF.</p> http://stackoverflow.com/questions/1883956/is-there-a-possibility-of-there-ever-being-a-php-net 6 Is there a possibility of there ever being a PHP.NET? TandemAdam 2009-12-10T20:55:18Z 2009-12-11T03:30:32Z <p>Sorry if this is a silly and/or stupid question but... Will there ever be, or would it even be possible to have a PHP.NET? Or have I got the wrong end of the stick?</p> <p>It seemed to me that one of the main points of .NET was that you could write your code in one of a bunch of the .NET languages and have it compile into CLR. Could this happen with PHP, or is there something about PHP that makes this impossible? Or is there more political reasons? Or is it just a retarded idea?</p> http://stackoverflow.com/questions/1713698/uac-embedding-manifest-for-net 0 UAC - embedding manifest for .net Saar 2009-11-11T07:51:18Z 2009-12-11T03:03:07Z <p>C++ projects have a linker option to embed manifest to require UAC elevation (/MANIFESTUAC:level) .</p> <p>Is there any such option for .net projects?</p> http://stackoverflow.com/questions/104/anatomy-of-a-memory-leak 29 Anatomy of a "Memory Leak" huseyint 2008-08-01T15:12:34Z 2009-12-11T02:59:24Z <p>In .NET perspective:</p> <ul> <li>What is a <a href="http://en.wikipedia.org/wiki/Memory%5Fleak" rel="nofollow">Memory Leak</a>?</li> <li>How to understand whether your application leaks? What are the effects?</li> <li>How to prevent a memory leak?</li> <li>If your application has memory leak, does it go away when the process exits or killed? Or do memory leaks in your application affects other processes on the system even after process completion?</li> <li>And what about unmanaged code accessed via COM Interop and/or P/Invoke?</li> </ul> <p>These are the questions that I have some answers myself but not complete. What do you think?</p> http://stackoverflow.com/questions/1884253/how-do-i-get-reference-to-a-control-on-a-datalists-onitembound 0 How do I get reference to a control on a Datalist's OnItemBound? Nick 2009-12-10T21:41:24Z 2009-12-11T02:59:09Z <p>Hey everyone,</p> <p>I need to set custom attributes on a control as it is bound to a datalist. I see that the event arguments has a collection of controls but I do not see any reference name associated with them. How can this be done?</p> <p>When I try this:</p> <pre><code>(e.Item.FindControl("autoChartChkBox") as CheckBox).Attributes.Add("CompanyToken", "CompanyToken"); </code></pre> <p>The control is always 'null'. The control I am trying to locate is added in my data template. This is my ItemTemplate assignment and below is the actual temple. Notice the protected CheckBox autoChartChkBox; This is the control I am trying to manipulate via the OnDataItemBound event.</p> <pre><code> alertList.ItemTemplate = new AlertItemTemplate(groupTracker); private class AlertItemTemplate : ItemTemplateBase { private readonly GroupHeaderTracker groupTracker; protected CheckBox autoChartChkBox; public override void DataBind() { Label autoChartLbl; Alert item = (Alert)((DataListItem)this.NamingContainer).DataItem; CultureInfo info = Thread.CurrentThread.CurrentCulture; titleText.Text = String.Format("{0} - {1}", item.DateCreated.ToString(info.DateTimeFormat.ShortDatePattern), item.ID); this.bodyText.Text = item.Text; Color color = GetAlertColor(item.AlertType.Color); colorDisplay.BackColor = color; this.groupTracker.SetCurrentAlertTypeId(item.AlertType.ID); if(this.groupTracker.IsNewGroup()) { this.alertTypeNameLabel.Text = item.AlertType.Name; this.alertTypeNameRow.Visible = true; this.alertTypeNameRow.Cells[0].Style.Add("border-top", string.Format("solid thin {0}",GetColorHexValue(color))); this.alertTypeNameRow.Cells[0].Style.Add("border-bottom", string.Format("solid thin {0}",GetColorHexValue(color))); //Auto Chart TableCell autoChartCell; autoChartCell = new TableCell(); autoChartCell.Width = 50; autoChartCell.BorderStyle = BorderStyle.Solid; autoChartCell.VerticalAlign = VerticalAlign.Top; autoChartCell.Controls.Add(autoChartChkBox = new CheckBox()); autoChartCell.Controls.Add(autoChartLbl = new Label()); Rows[1].Cells.Add(autoChartCell); autoChartLbl.Text = "AutoChart"; autoChartChkBox.Checked = item.IncludeInChartNotes; alertTypeNameCell.ColumnSpan = Rows[1].Cells.Count; } </code></pre> <p>Can someone save me? :)</p> <p>Thanks!</p> <p>-Nick</p> http://stackoverflow.com/questions/1873402/is-there-a-nice-way-to-split-an-int-into-two-shorts-net 8 Is there a nice way to split an int into two shorts (.NET)? SoMoS 2009-12-09T11:49:55Z 2009-12-11T02:58:37Z <p>I think that this is not possible because <code>Int32</code> has 1 bit sign and have 31 bit of numeric information and Int16 has 1 bit sign and 15 bit of numeric information and this leads to having 2 bit signs and 30 bits of information.</p> <p>If this is true then I cannot have one <code>Int32</code> into two <code>Int16</code>. Is this true?</p> <p>Thanks in advance.</p> <p>EXTRA INFORMATION: Using Vb.Net but I think that I can translate without problems a C# answer.</p> <p>What initially I wanted to do was to convert one <code>UInt32</code> to two <code>UInt16</code> as this is for a library that interacts with WORD based machines. Then I realized that <code>Uint</code> is not CLS compliant and tried to do the same with <code>Int32</code> and <code>Int16</code>.</p> <p>EVEN WORSE: Doing <code>a = CType(c And &amp;HFFFF, Int16);</code> throws <code>OverflowException</code>. I expected that statement being the same as <code>a = (Int16)(c &amp; 0xffff);</code> (which does not throw an exception).</p> http://stackoverflow.com/questions/1885178/return-multiple-columns-in-linq-to-sql 1 Return Multiple Columns in Linq to Sql? chobo2 2009-12-11T00:59:09Z 2009-12-11T02:56:45Z <p>Hi</p> <p>How do I return multiple columns with linq to sql in C#?</p> <p>I tried to end my query with </p> <pre><code>select new { A.Product, A.Qty }; </code></pre> <p>but this returns some anonymous type and I am not sure what the heck what to do with this, How to return it and how to extract information out of it. I want to put it in some sort of array.</p> <p>thanks</p> http://stackoverflow.com/questions/1862848/net-dll-from-powerbuilder-10-or-11-5 1 .NET dll from PowerBuilder (10 or 11.5) RepDetec 2009-12-07T20:58:39Z 2009-12-11T02:39:41Z <p>If I am looking to reference a .NET dll from PowerBuilder (10 or 11.5), which of the following is the best practice?</p> <p>1) Register the dll as a COM Object, and use the COM Object via an OleObject 2) Upgrade to 11.5, and convert to PB.NET so that I can actually have blocks of C# in the PowerBuilder code 3) Another method</p> <p>What are some things I should be aware of with these approaches?</p> http://stackoverflow.com/questions/1885433/net-winforms-to-apple-macintosh 1 .NET winforms to Apple Macintosh Karthick 2009-12-11T02:17:30Z 2009-12-11T02:32:49Z <p>Hi,</p> <p>I have a winforms of .NET running in windows OS, my client wants the same to be run on macintosh OS, how do i start on this? </p> <p>Is there a conversion framework (mono/etc) available to implement this?</p> <p>Please reply.</p> <p>Thanks in advance, Karthick</p> http://stackoverflow.com/questions/1883899/anyone-integrated-mule-esb-into-net-platforms-or-wcf 0 Anyone integrated MULE (ESB) into .Net platforms or WCF? CodeToGlory 2009-12-10T20:45:35Z 2009-12-11T02:28:44Z <p>HOw did you integrate? SOAP? etc</p> http://stackoverflow.com/questions/1885228/seeing-new-properties-on-a-custom-usercontrol-in-visual-studio 0 Seeing new properties on a custom UserControl in Visual Studio Brian Ensink 2009-12-11T01:12:40Z 2009-12-11T01:36:11Z <p>I have two C# .NET projects in my solution. One project is a DLL that contains a WinForms custom <code>UserControl</code>. The other project is a WinForms EXE that references and uses that <code>UserControl</code> on a <code>Form</code>.</p> <p>I have added a handful of properties to the <code>UserControl</code> so that when I place the control on a form I can easily set these properties in the designer just like any other control.</p> <p>All is well and good until I add a new property to the <code>UserControl</code>. The new property doesn't appear in the forms designer. I've tried doing a deep rebuild and reopening the solution.</p> <p>I can manually go into the .designer.cs file and set the new property's value. The project will actually compile and run but the forms designer claims the property doesn't exist and will not open the form.</p> <p>The only thing I've found that works is to close and restart visual studio. Is there any other way to see the new properties without restarting Visual Studio?</p> <p><strong>Edit</strong> I tried reproducing this in a clean solution and everything seemed to work. Then I remembered that in the the original solution the DLL is signed and installed to the GAC with a post-build step. I think the Visual Studio forms designer is loading the assembly from the GAC to reflect on it to get the list of properties. This is fine until I add new properties. I can build the assembly and install it again to the GAC but Visual Studio does not see the new properties.</p> http://stackoverflow.com/questions/1862097/storing-images-in-db-networked-desktop-applications 3 Storing Images in DB - Networked Desktop Applications Will Eddins 2009-12-07T18:54:52Z 2009-12-11T01:32:37Z <blockquote> <p><strong>Related:</strong> <a href="http://stackoverflow.com/questions/3748/storing-images-in-db-yea-or-nay" title="Storing Images in DB - Yea or Nay?">Storing Images in DB - Yea or Nay?</a></p> </blockquote> <p>After reading the above question, it seems the preferred method for image storage with databases is to store only the filepath within the database. However, most of these answers seem to focus on web servers.</p> <p>In my case, I'm developing a desktop application that will be used across multiple computers within an intranet. A dedicated server will host the database, containing information related to performing tests on various equipment.</p> <p>Images need to be stored on the server in some way. Would storing the images in the database be the correct approach in this case, or even the only approach? </p> <p><strong>Pros:</strong></p> <ul> <li>Backup is limited to only the database.</li> <li>No need to open up the server's file system to the network.</li> <li>Single protocol for server information access.</li> <li>Protected file access. (User can't go in and delete all the images)</li> </ul> <p><strong>Cons</strong></p> <ul> <li>Performance issues in future if there's too many images.</li> </ul> <p><strong>Edit:</strong> As stated in the tags, the application is being written in C#/.NET. If writing the images to the file system is an option in this case, I could use some help understanding how this is done.</p> <p><strong>Edit 2:</strong> As elaborated some in the comments below, for now I'm assuming a MySQL database, although the FileStream capabilities of SQL Server 2008 could potentially change that. </p> <p>Also in my case, images will be added often, and can be considered read-only after this point since they should never be changed, and will just be read out when needed. Images will likely be small (~70k each), and I'm also considering some other binary format storage on the server, files which are ~20k each which I can likely apply the same approach for storing and retrieving.</p> http://stackoverflow.com/questions/1235841/asp-net-dropdownlist-autopostback-and-browser-back-button 0 ASP.NET DropdownList autopostback and Browser Back Button scoob 2009-08-05T21:24:54Z 2009-12-11T01:31:46Z <p>I have an asp.net Dropdownlist with autopostback enabled. It is not populated dynamically, its values are fixed in the HTML code :</p> <pre><code>&lt;asp:dropdownlist id="ddlReportView" runat="server" autopostback="True" onselectedindexchanged="ddlReportView_SelectedIndexChanged" enableviewstate="true"&gt; &lt;asp:listitem text="Snapshot" value="SNAPSHOT"&gt;&lt;/asp:listitem&gt; &lt;asp:listitem text="Detailled" value="DETAILLED"&gt;&lt;/asp:listitem&gt; &lt;asp:listitem text="Review" value="REVIEW"&gt;&lt;/asp:listitem&gt; &lt;asp:listitem text="Review Summary" value="REVIEW_SUMMARY"&gt;&lt;/asp:listitem&gt; &lt;/asp:dropdownlist&gt; </code></pre> <p>If I select an item, it reloads the page to display a list with a different format. My problem is that when I click the back browser button, the dropdownlist's value is still the last value selected.</p> <p><strong>Example:</strong></p> <p>At first the list is in Snaphshot mode: <img src="http://img44.imageshack.us/img44/3749/37948756.png" alt="alt text" /></p> <p>User then clicks on Review Summary mode: <img src="http://img36.imageshack.us/img36/545/96184426.png" alt="alt text" /></p> <p>The page now displays the review summary grid, all is OK: <img src="http://img17.imageshack.us/img17/8239/13194229.png" alt="alt text" /></p> <p>User presses the back button, grid is displayed in snapshot mode (which is OK), BUT the dropdown still shows "Review Summary"! <img src="http://img190.imageshack.us/img190/6747/22053199.png" alt="alt text" /></p> <p>I tried setting the value of the select using javascript, but it does not work. Has anybody had that problem, or knows how to fix that? </p> <p>Thanks.</p> http://stackoverflow.com/questions/1884804/checking-for-presence-of-net-remoting-server-is-my-approach-correct 2 Checking for presence of .NET remoting server - is my approach correct? Michael Petrotta 2009-12-10T23:20:02Z 2009-12-11T01:23:54Z <p>It's not possible to set a connection timeout on a .NET remoting call. Documentation occasionally refers to <a href="http://msdn.microsoft.com/en-us/library/system.runtime.remoting.channels.tcp.tcpchannel.aspx" rel="nofollow">TcpChannel</a> properties that allegedly do this, but <a href="http://social.msdn.microsoft.com/Forums/en/netfxremoting/thread/22d06986-b0a3-42f8-a5bd-43e950302fdf" rel="nofollow">discussions</a> and the most recent <a href="http://msdn.microsoft.com/en-us/library/bb187434%28VS.85%29.aspx" rel="nofollow">docs</a> I've found indicate that this is not possible. One may set a timeout on the remoting call itself, but not on the initial connection attempt. You're stuck with the default 45-second timeout.</p> <p>For various reasons I can't use WCF.</p> <p>This causes a problem when the remoting server goes away. If I attempt to make a remoting call, I'm stuck for those 45 seconds. That's not good. I want to check for the presence of the remoting server. Pinging it with a <code>PingTimeout</code> is the simplest approach, but I want to check specifically for the remoting server, as opposed to just the machine being up.</p> <p>After some experimentation, I've come up with this approach:</p> <ol> <li>Asynchronously begin a TCP socket connection to the remoting port. </li> <li>Wait for the connection to complete, or a timeout to expire (using a ManualResetEvent).</li> <li>If the connection async callback succeeded, return success. Otherwise, return failure.</li> </ol> <p>This works, but I'm unsure about my use of my WaitHandle and socket. I'd also like to assure thread-safety WRT concurrent checks, which I think I've done. My code's below. Do you see any problems with my approach?</p> <pre><code>private static bool IsChannelOpen(string ip, int port, int timeout) { IPEndPoint endpoint = new IPEndPoint(IPAddress.Parse(ip), port); Socket client = new Socket(endpoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp); SocketTestData data = new SocketTestData() { Socket = client, ConnectDone = new ManualResetEvent(false) }; IAsyncResult ar = client.BeginConnect (endpoint, new AsyncCallback(TestConnectionCallback), data); // wait for connection success as signaled from callback, or timeout data.ConnectDone.WaitOne(timeout); client.Close(); return data.Connected; } private static void TestConnectionCallback(IAsyncResult ar) { SocketTestData data = (SocketTestData)ar.AsyncState; data.Connected = data.Socket.Connected; if (data.Socket.Connected) { data.Socket.EndConnect(ar); } data.ConnectDone.Set(); // signal completion } public class SocketTestData { public Socket Socket { get; set; } public ManualResetEvent ConnectDone { get; set; } public bool Connected { get; set; } } </code></pre> http://stackoverflow.com/questions/1885209/edit-and-continue-in-silverlight 0 Edit and Continue in Silverlight? Shnitzel 2009-12-11T01:07:16Z 2009-12-11T01:14:24Z <p>Edit-And-Continue is one of my favorite debugging tools which I have previously used on C# based Winforms and ASP.NET projects. However, I'm running a Silverlight 3.0 application on VS 2008 and whenever I try to make a change (after breaking) it says "Changes are not allowed when debugging Silverlight applications". Also there isn't an "Enable Edit and Continue" option in the project settings.</p> <p>Does anyone (possibly an insider) know when this feature will be supported by Microsoft??? (I <em>NEED</em> IT!)</p> http://stackoverflow.com/questions/1724919/understanding-covariance-and-contravariance-in-c-4-0 4 Understanding Covariance and Contravariance in C# 4.0 Joan Venge 2009-11-12T19:52:40Z 2009-12-11T01:13:41Z <p>I watched a video about it on Channel 9 but I didn't really understand it much.</p> <p>Can someone please give me a simple example about these that's easy to understand? After that maybe how it would be used in practice?</p> http://stackoverflow.com/questions/395292/what-potential-do-you-see-in-silverlight 21 What potential do you see in Silverlight? Cyril Gupta 2008-12-27T19:02:52Z 2009-12-11T00:42:58Z <p>Silverlight has been available since quite some time, and Silverlight 2 allows .Net programming on the front-end. I've been thinking about the apps that I can make using Silverlight, but I can't decide if I should go for development in Silverlight because i am still concerned about accessibility and acceptance.</p> <p>What potential do you see in Silverlight judging from the current trends, and what do you think Silverlight will be used for in the coming years?</p> http://stackoverflow.com/questions/1885017/dataset-with-multiple-tables 1 DataSet with multiple tables Torben H. 2009-12-11T00:12:26Z 2009-12-11T00:42:37Z <p>Hello,</p> <p>I have a little problem. I don't know how to use the DataSet in VB.NET correctly.</p> <p>In Visual Studio 2008 I created a DataSet called Network. For the DataSet I took two tables from my database, tServer and tClient. tClient has a foreign key referencing the ID in tServer.</p> <p>After creating the DataSet I found a new namespace called NetworkTableAdapter which contains the adapter for tServer, tClient and an AdapterManager. There is also a new class called Network, which is the DataSet and contains the DataTables for tServer and tClient.</p> <p>But how can I fill these DataSet with data and access it? The adapter only have GetData() and Fill() methods, which fill a DataTable, but I want to fill the DataSet.</p> <p>Sorry for my bad english, I hope that someone understand my problem and can help me. :)</p> <p>Torben </p> http://stackoverflow.com/questions/1248129/c-list-all-processes-and-their-current-memory-cpu-consumption 0 C#: List all processes and their current memory & CPU consumption? Alex 2009-08-08T06:23:08Z 2009-12-11T00:41:59Z <p>Hello, how can I get a list of all processes in C# and then for each process current memory and CPU consumption?</p> <p>Sample code is highly appreciated.</p> <p>Thank you!</p> http://stackoverflow.com/questions/1869846/drag-and-drop-deployment-cannnot-find-dll 1 Drag and Drop Deployment Cannnot find DLL broke 2009-12-08T21:07:37Z 2009-12-11T00:35:26Z <p>Hi guyz</p> <p>After I loaded a new reference to my project, I can no longer run my program on another pc without installing it. I attached an image of the exception message. If anybody can help I would really appreciate it!</p> <p><img src="http://i488.photobucket.com/albums/rr245/lolwtf%5Falbum/error.jpg" alt="alt text"></p> http://stackoverflow.com/questions/1730821/is-there-a-limit-of-elements-that-could-be-stored-in-a-list 5 Is there a limit of elements that could be stored in a List ? Yassir 2009-11-13T17:43:12Z 2009-12-11T00:28:56Z <p>Is there a limit of elements that could be stored in a List ? or you can just keeping adding elements untill you are out of memory ?</p> http://stackoverflow.com/questions/1884995/wysiwym-editor-for-desktop-net-winforms 3 WYSIWYM editor for desktop (.NET/WinForms) unknown (google) 2009-12-11T00:06:30Z 2009-12-11T00:24:21Z <p>What can I use as WYSIWYM editor for desktop application (preferably .NET/WinForms)? I need functions as paragraphs, headings 1, 2, 3, (un)ordered lists, strong and no other formating (restrictive). Editor <a href="http://www.wymeditor.org/" rel="nofollow">wymeditor.org</a> is bad for me purpose because I can paste anything to it from clipboard. I prefer no webbrowser/javascript editor integration. Thanks.</p> http://stackoverflow.com/questions/1884959/exception-on-sslstream-authenticateasclient-the-message-was-badly-formatted 0 Exception on SslStream.AuthenticateAsClient (The message was badly formatted) Noms 2009-12-10T23:50:29Z 2009-12-11T00:07:02Z <p>I have got wierd problem going on. I am trying to connect to Apple server via TCP/SSL. I am using a Client certificate provided by Apple for push notifications. I installed the certificate on my server (Win2k3) in both Local Trusted Root certificates and Local Personal Certificates folder.</p> <p>Now I have a class library that deals with that connection, when i call this class library from a console application running from the server it works absolutely fine, but when i call that class library from an asp.net page or asmx web service I get the following exception.</p> <blockquote> <p>A call to SSPI failed, see inner exception. The message received was unexpected or badly formatted.</p> </blockquote> <p>This is my code:</p> <pre><code>X509Certificate cert = new X509Certificate(certificateLocation, certificatePassword); X509CertificateCollection certCollection = new X509CertificateCollection(new X509Certificate[1] { cert }); // OPEN the new SSL Stream SslStream ssl = new SslStream(client.GetStream(), false, new RemoteCertificateValidationCallback(ValidateServerCertificate), null); ssl.AuthenticateAsClient(ipAddress, certCollection, SslProtocols.Default, false); </code></pre> <p><code>ssl.AuthenticateAsClient</code> is where the error gets thrown.</p> <p>This is driving me nuts. If the console application can connect fine, there must be some problem with asp.net network layer security that is failing the authentication... not sure, perhaps need to add something or some sort of security policy in the web.config. Also just to point out that i can connect fine on my local development machine both with console and website.</p> <p>Anyone has got any ideas?</p> http://stackoverflow.com/questions/136709/what-port-number-should-i-use-when-testing-connections-in-my-local-intranet-in-n 1 What port number should I use when testing connections in my local intranet in .NET? Mr Database 2008-09-25T22:53:49Z 2009-12-11T00:05:14Z <p>I want to test a connection to a machine in my local intranet. I know the IP address. </p> <p>What port number should I use? 555? BTW: I'm using .NET.</p> http://stackoverflow.com/questions/1873264/is-it-possible-to-refactor-this-extension-method 14 Is it possible to refactor this extension method? Pure.Krome 2009-12-09T11:25:02Z 2009-12-11T00:02:25Z <p>I have the following extension method:</p> <pre><code>public static void ThrowIfArgumentIsNull&lt;T&gt;(this T value, string argument) where T : class { if (value == null) { throw new ArgumentNullException(argument); } } </code></pre> <p>and this is an example of its usage....</p> <pre><code>// Note: I've poorly named the argument, on purpose, for this question. public void Save(Category qwerty) { qwerty.ThrowIfArgumentIsNull("qwerty"); .... } </code></pre> <p>works 100% fine.</p> <p>But, I don't like how I have to provide the name of the variable, just to help my exception message.</p> <p>I was wondering if it's possible to refactor the extension method, so it could be called like this...</p> <pre><code>qwerty.ThrowIfArgumentIsNull(); </code></pre> <p>and it automatically figures out that the name of the variable is 'qwerty' and therefore uses that as the value for the ArgumentNullException.</p> <p>Possible? I'm assuming reflection could do this?</p> http://stackoverflow.com/questions/1883843/a-better-threading-model-for-this-class 0 A better threading model for this class? dferraro 2009-12-10T20:37:38Z 2009-12-10T23:56:42Z <p>Hi,</p> <p>I have a simple class called Job with a public ctor and public function called Run().</p> <p>Run() will do some work including making a request to a 3rd party vendor which cost some $$$. Before it makes the request, it first checks the SQL Server DB to see if the data is already there. After making the request, it puts the data in the DB.</p> <p>This is an ASP.NET front-end with .NET WCF Windows Service back-end. The request comes in through WCF call, to which I made my contract an InstanceContextMode.Singleton. For those not familiar with WCF - this just means my contract will queue any requests until the current one is finished. In here I simply create an instance of the Job class, send it the input parameters from the user in the ctor, and call the Run() function.</p> <p>This works great, and since it's a Singleton WCF service, it stops duplicate requests from going to the vendor and costing $$ that doesn't need to be spent. The jobs run fast enough to make it so that only running one job at a time is just fine.</p> <p>However, this is still a bit smelly to me. The job class is completely independent from the WCF service, and any caller for that matter, and should be re-usable if I wanted.</p> <p>How can I make the job class, 'self thread safe' so to say? What I mean is - the way it's designed now, the <em>caller</em> of the job class has to make sure he doesn't run two jobs at the same time, for fear of creating an unneccesary dupe request.</p> <p>Is there a way to do this, with using pure thread locking, inside of the job class itself? So that if a user of my class created 2 instances of Job class and spun off 2 threads calling Run(), it would queue the second guy from proceeding until the first is finished? (or any number of calls for that matter). I can't just Lock() for the whole Run function, since like in the example I just gave they would just spin the Run call into seperate threads making the Lock useless. I think there is something obvious and simple I am missing here... ??</p> <p>Note - making it 'self managed' across procceses is not what I'm concerned about. I'm concerned about the same process using my Job class in multiple threads. For the former, I would just put the 'check DB / call to vendor / insert DB' into a seperate service.</p> <p>Thanks</p> <p>EDIT: thanks Dave for the answer. Here is the code to prove that it works: just remove the SyncLock line to see it work in action. (Sorry, we use VB at work =P)</p> <pre><code>Public Class ThreadTest Private Shared syncObj As New Object() Private id As String Public Sub New(ByVal id As String) Me.id = id End Sub Public Sub Run() 'remove this line to see the output change SyncLock syncObj For i As Integer = 0 To 1000 Console.Write(id) Next End SyncLock End Sub End Class Module Module1 Sub Main() Dim tt As New ThreadTest("1") Dim tt2 As New ThreadTest("2") Dim thread1 As New Threading.Thread(AddressOf tt.Run) Dim thread2 As New Threading.Thread(AddressOf tt2.Run) thread1.Start() thread2.Start() Threading.Thread.Sleep(Threading.Timeout.Infinite) End Sub End Module </code></pre>