User TheSoftwareJedi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:29:50Z http://stackoverflow.com/feeds/user/18941 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1869886/is-it-possible-to-use-nets-transactionscope-with-sql-server-2005-without-allowi 0 Is it possible to use .NET's TransactionScope with Sql Server 2005 without allowing promotion to DTC? TheSoftwareJedi 2009-12-08T21:14:06Z 2009-12-09T07:39:21Z <p>I'm dealing with some really pain in the ass servers, and I'd like them to just use transactions without DTC (for now so I can concentrate elsewhere). I use multiple databases within the scope, so the typical behavior is to promote, but I want to avoid it. What would the behavior be of an in-doubt transaction under this model, if it's possible? I assume tx.Complete() will throw?</p> <p>The reason for this is because I get these random errors (feel free to chime in on why for this too if you can maybe help - these are SPORADIC, not constant):</p> <pre><code>System.Transactions.TransactionManagerCommunicationException: Communication with the underlying transaction manager has failed. ---&gt; System.Runtime.InteropServices.COMException (0x80004005): Error HRESULT E_FAIL has been returned from a call to a COM component. at System.Transactions.Oletx.IDtcProxyShimFactory.ReceiveTransaction(UInt32 propgationTokenSize, Byte[] propgationToken, IntPtr managedIdentifier, Guid&amp; transactionIdentifier, OletxTransactionIsolationLevel&amp; isolationLevel, ITransactionShim&amp; transactionShim) at System.Transactions.TransactionInterop.GetOletxTransactionFromTransmitterPropigationToken(Byte[] propagationToken) --- End of inner exception stack trace --- at System.Transactions.TransactionInterop.GetOletxTransactionFromTransmitterPropigationToken(Byte[] propagationToken) at System.Transactions.TransactionStatePSPEOperation.PSPEPromote(InternalTransaction tx) at System.Transactions.TransactionStateDelegatedBase.EnterState(InternalTransaction tx) at System.Transactions.EnlistableStates.Promote(InternalTransaction tx) at System.Transactions.Transaction.Promote() at System.Transactions.TransactionInterop.ConvertToOletxTransaction(Transaction transaction) at System.Transactions.TransactionInterop.GetExportCookie(Transaction transaction, Byte[] whereabouts) at System.Data.SqlClient.SqlInternalConnection.GetTransactionCookie(Transaction transaction, Byte[] whereAbouts) at System.Data.SqlClient.SqlInternalConnection.EnlistNonNull(Transaction tx) at System.Data.SqlClient.SqlInternalConnection.Enlist(Transaction tx) at System.Data.SqlClient.SqlInternalConnectionTds.Activate(Transaction transaction) at System.Data.ProviderBase.DbConnectionInternal.ActivateConnection(Transaction transaction) at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject) at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection) at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory) at System.Data.SqlClient.SqlConnection.Open() </code></pre> http://stackoverflow.com/questions/1870626/what-causes-this-ms-dtc-error-to-occur-sporadically-in-net 1 What causes this MS DTC error to occur sporadically in .NET? TheSoftwareJedi 2009-12-08T23:29:59Z 2009-12-09T05:48:37Z <p>I receive this error sporadically throughout the day. According to the stack, it's thrown during enlistment. If it were getting this error every time I'd be able to troubleshoot and fix (typically a firewall or LMHOSTS issue). Since it's randomly happening, I can't for the life of me think about what would do this.</p> <p>Any ideas?</p> <pre><code>System.Transactions.TransactionManagerCommunicationException: Communication with the underlying transaction manager has failed. ---&gt; System.Runtime.InteropServices.COMException (0x80004005): Error HRESULT E_FAIL has been returned from a call to a COM component. at System.Transactions.Oletx.IDtcProxyShimFactory.ReceiveTransaction(UInt32 propgationTokenSize, Byte[] propgationToken, IntPtr managedIdentifier, Guid&amp; transactionIdentifier, OletxTransactionIsolationLevel&amp; isolationLevel, ITransactionShim&amp; transactionShim) at System.Transactions.TransactionInterop.GetOletxTransactionFromTransmitterPropigationToken(Byte[] propagationToken) --- End of inner exception stack trace --- at System.Transactions.TransactionInterop.GetOletxTransactionFromTransmitterPropigationToken(Byte[] propagationToken) at System.Transactions.TransactionStatePSPEOperation.PSPEPromote(InternalTransaction tx) at System.Transactions.TransactionStateDelegatedBase.EnterState(InternalTransaction tx) at System.Transactions.EnlistableStates.Promote(InternalTransaction tx) at System.Transactions.Transaction.Promote() at System.Transactions.TransactionInterop.ConvertToOletxTransaction(Transaction transaction) at System.Transactions.TransactionInterop.GetExportCookie(Transaction transaction, Byte[] whereabouts) at System.Data.SqlClient.SqlInternalConnection.GetTransactionCookie(Transaction transaction, Byte[] whereAbouts) at System.Data.SqlClient.SqlInternalConnection.EnlistNonNull(Transaction tx) at System.Data.SqlClient.SqlInternalConnection.Enlist(Transaction tx) at System.Data.SqlClient.SqlInternalConnectionTds.Activate(Transaction transaction) at System.Data.ProviderBase.DbConnectionInternal.ActivateConnection(Transaction transaction) at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject) at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection) at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory) at System.Data.SqlClient.SqlConnection.Open() </code></pre> http://stackoverflow.com/questions/1868074/why-are-my-transactional-activemq-messages-being-dropped-instead-of-moving-to-the 0 Why are my transactional ActiveMQ messages being dropped instead of moving to the DLQ? TheSoftwareJedi 2009-12-08T16:22:09Z 2009-12-08T17:40:01Z <p>I create my consumer (in C# using the NMS library) as so:</p> <pre><code> ConnectionFactory factory = new ConnectionFactory(_mqServer); _con = factory.CreateConnection(); _con.Start(); _session = _con.CreateSession(AcknowledgementMode.Transactional); _queue = _session.GetQueue(_mqQueue); _consumer = _session.CreateConsumer(_queue, "someproperty = 'someValue'"); </code></pre> <p>When I receive a message and don't call Commit on the session, it goes back into the original queue. It then attempts redelivery 5 more times before being discarded. Why is the message being discarded instead of being sent to a DLQ?!</p> http://stackoverflow.com/questions/350885/create-sort-and-print-a-list-of-100-random-ints-in-the-fewest-chars-of-code 10 Create, sort, and print a list of 100 random ints in the fewest chars of code TheSoftwareJedi 2008-12-08T21:01:57Z 2009-12-08T11:08:07Z <p>What is the least amount of code you can write to create, sort (ascending), and print a list of 100 random positive integers? By least amount of code I mean characters contained in the entire source file, so get to minifying.</p> <p>I'm interested in seeing the answers using any and all programming languages. Let's try to keep one answer per language, edit the previous to correct or simplify. If you can't edit, comment?</p> http://stackoverflow.com/questions/392788/code-golf-christmas-edition-how-to-print-out-a-christmas-tree-of-height-n 33 Code Golf Christmas Edition: How to print out a Christmas tree of height N TheSoftwareJedi 2008-12-25T12:48:11Z 2009-11-30T23:52:45Z <p>Given a number N, how can I print out a Christmas tree of height N using the least number of code characters? N is assumed constrained to a min val of 3, and a max val of 30 (bounds and error checking are not necessary). N is given as the one and only command line argument to your program or script.</p> <p>All languages appreciated, if you see a language already implemented and you can make it shorter, edit if possible - comment otherwise and hope someone cleans up the mess. Include newlines and whitespace for clarity, but don't include them in the character count.</p> <p>A Christmas tree is generated as such, with its "trunk" consisting of only a centered "*"</p> <p>N = 3:</p> <pre><code> * *** ***** * </code></pre> <p>N = 4:</p> <pre><code> * *** ***** ******* * </code></pre> <p>N = 5:</p> <pre><code> * *** ***** ******* ********* * </code></pre> <p>N defines the height of the branches not including the one line trunk.</p> <p><strong>Merry Christmas SO!</strong></p> http://stackoverflow.com/questions/569975/can-i-change-the-value-of-environment-newline 3 Can I change the value of Environment.NewLine? TheSoftwareJedi 2009-02-20T15:27:52Z 2009-11-30T18:17:47Z <p>I'm working with a library that uses Environment.NewLine as it's newline char when writing a file. I need it to write Unix formatted files, and as such would like to change the newline char.</p> <p>Can I change the value of Environment.NewLine?</p> <p>Any other ideas (aside from converting the file post creation)?</p> http://stackoverflow.com/questions/1758692/what-does-the-last-digit-in-the-activemq-message-id-represent 0 What does the last digit in the ActiveMQ message ID represent? TheSoftwareJedi 2009-11-18T20:04:32Z 2009-11-18T20:09:50Z <p>I have a system that seems to be working fine, but when a certain process writes a message, I get 10 messages appear in the queue. They are all almost duplicates, but the last section of the message id is incremented.</p> <p>Example:</p> <pre><code>c6743810-65e6-4bcd-b575-08174f9cae73:1:1:1 c6743810-65e6-4bcd-b575-08174f9cae73:1:1:2 c6743810-65e6-4bcd-b575-08174f9cae73:1:1:3 c6743810-65e6-4bcd-b575-08174f9cae73:1:1:4 . . . </code></pre> <p>What does this mean? From what I can tell, the process is only writing one message.</p> http://stackoverflow.com/questions/1758692/what-does-the-last-digit-in-the-activemq-message-id-represent/1758714#1758714 0 Answer by TheSoftwareJedi for What does the last digit in the ActiveMQ message ID represent? TheSoftwareJedi 2009-11-18T20:09:50Z 2009-11-18T20:09:50Z <p>Nevermind, I found it... The process WAS writing multiple messages, but using the same producer and transaction. ActiveMQ seems to use this as a session ID or something of that sort. Feel free to expand on this topic if you deem it necessary.</p> http://stackoverflow.com/questions/1668210/what-is-the-best-way-to-determine-duplicate-credit-card-numbers-without-storing-t 3 What is the best way to determine duplicate credit card numbers without storing them? TheSoftwareJedi 2009-11-03T15:53:13Z 2009-11-12T02:53:16Z <p>I run a website where we mark certain accounts as scammers, and "flag" their account and all credit cards used as being bad. We don't store actual credit card values, but are storing a checksum/MD5 algorithm of it instead. </p> <p>We are hitting collisions all the time now. What is the best way to store these values - non reversible, but able to do comparisons on future values.</p> <p>I thought MD5 would be the best, but we've got a debate going on here...</p> http://stackoverflow.com/questions/1712402/asp-net-page-change-causes-an-object-array-in-session-to-be-unable-to-cast-to-it 0 ASP.NET page change causes an object array in Session to be unable to cast to it's own type?? TheSoftwareJedi 2009-11-11T01:20:51Z 2009-11-11T01:44:32Z <p>I am storing an array of a custom serializable class in session on my site. When a page on the site changes, suddenly it renders them invalid, and tells me that it can't cast the type to it's own type. I assume the class version numbers are changing or something?!</p> <p>I'd appreciate avoiding the "don't use session" answers, unless it's a really simple solution. I'm not trying to redesign this whole process.</p> <pre><code>Unable to cast object of type 'ShipmentPackages[]' to type 'ShipmentPackages[]'. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.InvalidCastException: Unable to cast object of type 'ShipmentPackages[]' to type 'ShipmentPackages[]'. Source Error: Line 21: Else Line 22: If Not Session("ShipmentList") Is Nothing Then Line 23: ShipmentList = DirectCast(Session("ShipmentList"), ShipmentPackages()).ToList Line 24: End If Line 25: End If </code></pre> http://stackoverflow.com/questions/1674393/how-do-i-enable-the-back-button-on-ajax-calls-with-long-options-in-the-net-url 1 How do I enable the back button on ajax calls with long options in the .NET url? TheSoftwareJedi 2009-11-04T15:08:14Z 2009-11-10T07:02:08Z <p>I am trying to enable the back button on ajax calls...my solution...when an ajax call is made, create a guid, insert into the database the variables and insert the guid into the URL...when the user hits the back button, call the database with that guid to get the variables and set the page up....so back button would work normally in ajax.</p> <p>As you know, javascript paging kills the back button. But it also kills the ability to link to a given page. To avoid page reloading, but maintain the back button, you are going to need to use # in the URL. Then you will be able to use the back button (and link directly to a page), but you are going to need to parse the URL when the page loads, moving the page to the correct one.</p> <p>I am using a <a href="http://msdn.microsoft.com/en-us/library/cc488548.aspx" rel="nofollow">scriptmanager tag with EnableHistory set to true</a>, so the built in .net 3.5 ajax back button support would be nice!</p> <p>I would prefer to use the built in .net ajax back button support; you add a history point and it adds the crap to the URL...plus with jquery, I would still have the URL character limits of 260. <strong>This limit of 260 is really the root problem....</strong></p> <p>I don't want to use the database for this, but I can't find a way to put > 260 chars in the query string (could be a search for something, plus a page number, plus a price filter, plus a manufacturer filter, etc, etc....)</p> http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by 1 Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? TheSoftwareJedi 2009-11-03T23:33:31Z 2009-11-05T16:25:29Z <p>I'm looking at creating a tabbed interface which has user controls (possibly written by plug-in developers) within a tabbed or MDI interface. These plug-in controls could unintentionally freeze their GUI thread, and I'd prefer that they not influence user controls in other tabs. Much like Google Chrome creates a process for each tab; but in this case, just threads.</p> <p>Or perhaps even an MDI interface where the child MDI forms are owned by separate threads?</p> <p>I've found that while I can run multiple GUI threads at once, the Form level is where they MUST be separated. Any workarounds/ideas?</p> <p><strong>For those saying this shouldn't be needed, I call bullshit. Google's Chrome browser runs tabs in separate processes for security and UI reasons. I'm merely trying to duplicate this behavior. When the people writing the user controls are sucky plug-in developers, this is important.</strong></p> http://stackoverflow.com/questions/1649237/equivalent-to-vb-andalso-in-sql/1649257#1649257 3 Answer by TheSoftwareJedi for Equivalent to VB AndAlso in SQL? TheSoftwareJedi 2009-10-30T11:24:07Z 2009-10-30T11:24:07Z <p>The query engine will take care of this for you. Your query, as written, is fine. All operators will "short circuit" if they can.</p> http://stackoverflow.com/questions/1600948/how-do-i-create-a-queue-browser-preview-not-consume-in-c-for-an-activemq-queue 3 How do I create a queue browser (preview not consume) in C# for an ActiveMQ queue? TheSoftwareJedi 2009-10-21T13:48:10Z 2009-10-30T11:16:02Z <p>I'm using the NMS API for reading/writing ActiveMQ in C#, and I cannot find a way to preview the messages on a queue. I could read and rollback - but that'll make them DLQ eventually.</p> <p>In my previous life, TIBCO had a QueueBrowser object that could be used, and I think JMS had IQueueBrowser as well. I cannot find an ActiveMQ .NET equivalent.</p> http://stackoverflow.com/questions/1631823/linq-to-lucene-error-classes-must-define-at-least-one-field-as-a-default-search 0 Linq to Lucene error: "Classes must define at least one field as a default search field" TheSoftwareJedi 2009-10-27T15:58:22Z 2009-10-27T16:23:07Z <p>I have the following attributes applied to my linq to sql class:</p> <pre><code>[Document(MetadataType = typeof(SomeObjectMetadata))] public partial class SomeObject { } </code></pre> <p>And this is the metadata code:</p> <pre><code>public class SomeObjectMetadata { [Field(FieldIndex.Tokenized, FieldStore.Yes, IsKey = true)] private object ProductId { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes, IsDefault = true)] private object Name { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] private object Description { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] private object Breadcrumb { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] private object Tab1Content { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] private object Tab2Content { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] private object Tab3Content { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] private object Tab4Content { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] private object Tab5Content { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] private object Manufacturer { get; set; } } </code></pre> <p>The index store writes just fine, but when I try to search it, I get the error shown in the title. Here's an example search:</p> <pre><code> var qry = from r in _dbi.Get&lt;SomeObject&gt;() where r.Description.Like(search) select r; </code></pre> <p>Upon enumerating "qry", the Exception "Classes must define at least one field as a default search field" is thrown.</p> http://stackoverflow.com/questions/1631823/linq-to-lucene-error-classes-must-define-at-least-one-field-as-a-default-search/1632006#1632006 1 Answer by TheSoftwareJedi for Linq to Lucene error: "Classes must define at least one field as a default search field" TheSoftwareJedi 2009-10-27T16:23:07Z 2009-10-27T16:23:07Z <p>Wow, I'm an idiot. The metadata fields were private. This fixes it, of course:</p> <pre><code>public class Catalog_ProductMetadata { [Field(FieldIndex.Tokenized, FieldStore.Yes, IsKey = true)] public object ProductId { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes, IsDefault = true)] public object Name { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] public object Description { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] public object Breadcrumb { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] public object Tab1Content { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] public object Tab2Content { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] public object Tab3Content { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] public object Tab4Content { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] public object Tab5Content { get; set; } [Field(FieldIndex.Tokenized, FieldStore.Yes)] public object Manufacturer { get; set; } } </code></pre> http://stackoverflow.com/questions/1556711/extending-a-wcf-service-reference-to-a-wsdl-to-implement-ienlistmentnotification 0 Extending a WCF Service Reference to a WSDL to implement IEnlistmentNotification TheSoftwareJedi 2009-10-12T20:27:47Z 2009-10-13T00:02:00Z <p>I have a WCF Service Reference to a WSDL file for a credit card processing web service (Cybersource). I'd like to somehow extend the generated service reference client to implement IEnlistmentNotification as to support transactional processing.</p> <p>I am familiar with implementing the IEnlistmentNotification interface, but I can't find a good extension point to catch anytime a service method is called such that I can maintain the state of the transaction enlistment.</p> <p>For instance, the WSDL for Cybersource is here:</p> <pre><code>https://ics2wstest.ic3.com/commerce/1.x/transactionProcessor/CyberSourceTransaction_1.48.wsdl </code></pre> <p>It has only one method "runTransaction". Ideally I'd intercept calls to this method, view the payload contents, determine enlistment actions, let the call continue, then examine the result to record information that I'd need to rollback the transaction. I'd probably capture the "transaction reference number" in a return result. Then on rollback do a cancel/credit/etc. By making this behave as part of an IEnlistmentNotification interface, I can make it extremely simple for others to use this class as part of a transaction.</p> <p>I know that I could write a wrapper or a factory for the class, and that's how I'll proceed for now. However, I expect that WCF have an extension point that I can use to intercept the method calls - that I can directly perform on a partial version of the generated client class.</p> <p>I expected the partial class generated to have partial method calls for tapping in, or events, but it has nothing of the sort (unless I'm missing something...).</p> http://stackoverflow.com/questions/321650/how-do-i-set-a-field-value-in-an-c-expression-tree 4 How do I set a field value in an C# Expression tree? TheSoftwareJedi 2008-11-26T18:15:34Z 2009-10-06T01:06:16Z <p>Given:</p> <pre><code>FieldInfo field = &lt;some valid string field on type T&gt;; ParameterExpression targetExp = Expression.Parameter(typeof(T), "target"); ParameterExpression valueExp = Expression.Parameter(typeof(string), "value"); </code></pre> <p>How do I compile a lambda expression to set the field on the "target" parameter to "value"?</p> http://stackoverflow.com/questions/916921/how-can-i-bind-a-combobox-field-of-a-databound-object-to-a-datasource-and-still-a 0 How can I bind a combobox field of a databound object to a datasource and still allow nulls? TheSoftwareJedi 2009-05-27T17:03:10Z 2009-09-10T13:24:01Z <p>I have a form databound to a customer object, and one of the fields is a nullable int representing a "type". This is displayed as a combobox, and the combobox is bound to the "Types" table.</p> <p>When a customer with a null type is loaded into the form's datasource, the combo box displays no value, but then upon clicking it you must select a value. The form/combobox will never let you change back to a blank item (to represent "null" on the customer object).</p> <p>I don't want "dummy rows" in the database, and currently do this by adding a dummy object, and nulling it out in a submit event (not clean!).</p> <p>Is it possible to do this cleanly, keeping with the nullable primary key? </p> http://stackoverflow.com/questions/702968/how-do-i-expand-comma-separated-values-into-separate-rows-using-sql-server-2005 0 How do I expand comma separated values into separate rows using SQL Server 2005? TheSoftwareJedi 2009-03-31T20:42:14Z 2009-09-09T15:24:08Z <p>I have a table that looks like this:</p> <pre><code>ProductId, Color "1", "red, blue, green" "2", null "3", "purple, green" </code></pre> <p>And I want to expand it to this:</p> <pre><code>ProductId, Color 1, red 1, blue 1, green 2, null 3, purple 3, green </code></pre> <p>Whats the easiest way to accomplish this? Is it possible without a loop in a proc?</p> http://stackoverflow.com/questions/1381284/what-is-the-fastest-easiest-way-to-denormalize-this-heirarchical-table-into-a-fla 2 What is the fastest/easiest way to denormalize this heirarchical table into a flat table? TheSoftwareJedi 2009-09-04T20:01:45Z 2009-09-05T17:18:52Z <p>I have the following hierarchical table:</p> <pre><code>Table Category: CategoryId, ParentCategoryId, CategoryName 1, null, SomeRoot 2, 1, SomeChild 3, 2, SomeGrandchild 4, 3, SomeGreatGrandchild </code></pre> <p>(note this sample data doesn't include a leaf on an earlier node than level 4, but that is possible). The data will never go deeper than level 4, if that is relevant. I'd like to transform/pivot it to this fixed 4 level display</p> <pre><code>CatId, Name1, Name2, Name3, Name4 1, SomeRoot, null, null, null 2, SomeRoot, SomeChild, null, null 3, SomeRoot, SomeChild, SomeGrandchild, null 4, SomeRoot, SomeChild, SomeGrandchild, SomeGreatGrandchild </code></pre> <p>I've done left outer joining to the category table 4 times, and built a huge case statement for detecting the level to use for the ID field, but that doesn't include the null rows.... Any ideas? HELP!</p> http://stackoverflow.com/questions/372668/code-golf-how-do-i-write-the-shortest-character-mapping-program 8 Code Golf: How do I write the shortest character mapping program? TheSoftwareJedi 2008-12-16T20:51:02Z 2009-09-03T13:11:00Z <p>I learned a lot about various languages last time I did one of these, so I figured I'd submit another. Community Wiki of course...</p> <p>All programming languages are acceptable. The goal is to create the program in a language with the least amount of characters. New lines and indenting should be left in for clarity, but not counted. Try to just have 1 submission per language. Edit the existing one if you can make it shorter.</p> <p><hr /></p> <p>Write a program which takes 2 command line arguments as defined below:</p> <p>Arg1: a string to be "encoded"</p> <pre>EncodeMe</pre> Arg2: a pipe separated list of comma separated characters representing an encoding map to apply to the first argument. Example: <pre>e,f|M,N|c,d|n,m|E,F|o,p|d,e</pre> The program shall apply the character mapping specified in arg 2 to the characters of arg1, and display the output (map e to f, M to N, etc). The program above would output: <pre> FmdpefNf (not FodpefNf as originally posted) </pre> <p>Additional Info:</p> <ul> <li>If a character in arg 1 is missing from the mapping in arg 2, that particular character should merely be skipped.</li> <li>Assume that no invalid input will ever be given (lack of separator, too many separators, etc), so no additional error checking or handling is needed</li> </ul> http://stackoverflow.com/questions/1358078/what-serialization-method-is-used-for-an-activemq-nms-c-object-message 0 What serialization method is used for an ActiveMQ NMS C# object message? TheSoftwareJedi 2009-08-31T15:46:17Z 2009-08-31T18:22:09Z <p>I'm planning on using Apache NMS for ActiveMQ messaging, and am wondering what serialization method is going to be used on the objects I send? XML/Binary? What controls the serialization and how can I customize it?</p> <p>Does anyone have experience doing this with C# objects? Are there any pitfalls that you know of?</p> http://stackoverflow.com/questions/939446/looking-for-resources-and-advice-on-c-to-quickbooks-2008-enterprise-custom-integ 0 Looking for resources and advice on C# to Quickbooks 2008 Enterprise custom integration TheSoftwareJedi 2009-06-02T13:16:18Z 2009-08-21T07:12:09Z <p>I am writing an application to integrate invoices into Quickbooks via their latest API. I haven't worked with this API, but have subscribed to their developer program, looked through the docs, etc...</p> <p>The integration I'm doing is with a standalone C# WinForm application used to enter invoices.</p> <p>Wondering if anyone has real world experience and advice with this (not looking for links to the Intuit developer site)?</p> http://stackoverflow.com/questions/1161971/need-some-help-with-a-sql-query-sql-server-2005-to-transform-this-data 0 Need some help with a SQL query (SQL Server 2005) to transform this data TheSoftwareJedi 2009-07-21T21:56:36Z 2009-07-26T03:47:54Z <p>Here's a simplistic look at the table I have</p> <h1>Category</h1> <ul> <li>CategoryId</li> <li>CategoryName</li> <li>ParentCategoryId</li> </ul> <p>As you can see, the catalog table is a self referencing table, so recursing it is possible by starting at 0, which is the fake "root" category (could just as well be null, but it's not).</p> <p>Sample Data:</p> <pre><code>1, Apples, 0 5, Yummy, 1 10, Really Yummy, 5 15, Yucky, 0 18, Some Sub Cat, 15 20, Some Deep Sub Cat, 18 25, Some Deep Sub Cat 2, 18 </code></pre> <p>The deepest any category hierarchy can be is 4 deep, and I'm trying to get an output that looks like this:</p> <pre><code>CatId, [up to 4 deep of category names on the hierarchy in separate columns, or null if none] 1, Apples, NULL, NULL, NULL 5, Apples, Yummy, NULL, NULL 10, Apples, Yummy, Really Yummy, NULL 15, Apples, Yucky, NULL, NULL 18, Apples, Yucky, Some Sub Cat, NULL 20, Apples, Yucky, Some Sub Cat, Some Deep Sub Cat 25, Apples, Yucky, Some Sub Cat, Some Deep Sub Cat 2 </code></pre> <p>This SQL is close, but it generates it backwards, left justified</p> <pre><code>select c1.categoryid, c1.name, c2.name, c3.name, c4.name from category c1 left outer join category c2 on c1.parentcategoryid = c2.categoryid left outer join category c3 on c2.parentcategoryid = c3.categoryid left outer join category c4 on c3.parentcategoryid = c4.categoryid </code></pre> <p>Any SQL geniuses have some good ideas?</p> http://stackoverflow.com/questions/1166233/clickonce-error-value-does-not-fall-within-the-expected-range 1 ClickOnce error: Value does not fall within the expected range TheSoftwareJedi 2009-07-22T15:46:14Z 2009-07-23T16:20:04Z <p>Getting this error on ALL ClickOnce application launches for a certain user. This started happening after a version upgrade (but happens to no one else).</p> <p>I've tried subsequently changing the version number, add/remove, registry scrub, clearing Local Settings\Apps folder, etc... Still no luck.</p> <p><a href="http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/9d937bb0-4c1b-4a0d-bd5d-d0d15222c534" rel="nofollow">This article</a> points to a user profile corruption, but I recreating this user isn't an option. Are there any other ideas on cleaning this up?</p> <pre><code> PLATFORM VERSION INFO Windows : 5.1.2600.196608 (Win32NT) Common Language Runtime : 2.0.50727.3082 System.Deployment.dll : 2.0.50727.3053 (netfxsp.050727-3000) mscorwks.dll : 2.0.50727.3082 (QFE.050727-3000) dfdll.dll : 2.0.50727.3053 (netfxsp.050727-3000) dfshim.dll : 2.0.50727.3053 (netfxsp.050727-3000) SOURCES Deployment url : file:///C:/Documents%20and%20Settings/&lt;username&gt;/Start%20Menu/Programs/&lt;programname&gt;/&lt;programname&gt;.appref-ms%7C ERROR SUMMARY Below is a summary of the errors, details of these errors are listed later in the log. * Activation of \\NDP13\C\Documents and Settings\&lt;username&gt;\Start Menu\Programs\&lt;programname&gt;\&lt;programname&gt;.appref-ms| resulted in exception. Following failure messages were detected: + Value does not fall within the expected range. COMPONENT STORE TRANSACTION FAILURE SUMMARY No transaction error was detected. WARNINGS There were no warnings during this operation. OPERATION PROGRESS STATUS * [7/22/2009 10:35:30 AM] : Activation of \\NDP13\C\Documents and Settings\&lt;username&gt;\Start Menu\Programs\&lt;programname&gt;\&lt;programname&gt;.appref-ms| has started. ERROR DETAILS Following errors were detected during this operation. * [7/22/2009 10:35:30 AM] System.ArgumentException - Value does not fall within the expected range. - Source: System.Deployment - Stack trace: at System.Deployment.Internal.Isolation.IsolationInterop.GetUserStore(UInt32 Flags, IntPtr hToken, Guid&amp; riid) at System.Deployment.Internal.Isolation.IsolationInterop.GetUserStore() at System.Deployment.Application.ComponentStore..ctor(ComponentStoreType storeType, SubscriptionStore subStore) at System.Deployment.Application.SubscriptionStore..ctor(String deployPath, String tempPath, ComponentStoreType storeType) at System.Deployment.Application.SubscriptionStore.get_CurrentUser() at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String&amp; errorPageUrl) at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state) COMPONENT STORE TRANSACTION DETAILS No transaction information is available. </code></pre> http://stackoverflow.com/questions/1166233/clickonce-error-value-does-not-fall-within-the-expected-range/1172896#1172896 1 Answer by TheSoftwareJedi for ClickOnce error: Value does not fall within the expected range TheSoftwareJedi 2009-07-23T16:20:04Z 2009-07-23T16:20:04Z <p>The problem mysteriously disappeared after repeatedly deleting that folder, and attempting to reinstall. Perhaps there was a reboot thrown in there too.</p> http://stackoverflow.com/questions/1038776/what-is-the-most-efficient-way-to-create-an-order-count-summary-by-hour-day-mon 1 What is the most efficient way to create an order count summary by hour, day, month in SQL Server 2005? TheSoftwareJedi 2009-06-24T14:35:06Z 2009-06-29T09:42:37Z <p>Given a table:</p> <pre><code>create table #orders ( orderid int, orderdatetime datetime ) </code></pre> <p>What is the best way to write sql to output a report containing the count of orders from the current and previous 24 hours, total orders for the current day and previous 7 days, total orders for the current week and previous 4 weeks, and total orders for the month and previous 6 months?</p> <p>I'm wondering if this can be efficiently rolled up into a single sql using analytical functions, or if 4 sql statements generating the 4 groups of data is the only (or best) way.</p> <p>Also, given the hourly/day/week grouping, how would one do that in sql server? Datetimes seem to be a pain in the ass everytime I have to do something like this with them...</p> <p>Ideas? Put into a SSAS cube and do it from there maybe?</p> http://stackoverflow.com/questions/1055872/how-can-i-split-copy-a-stream-in-net 2 How can I split (copy) a Stream in .NET? TheSoftwareJedi 2009-06-28T21:53:58Z 2009-06-29T04:22:32Z <p>Does anyone know where I can find a Stream splitter implementation? </p> <p>I'm looking to take a Stream, and obtain two separate streams that can be independently read and closed without impacting each other. These streams should each return the same binary data that the original stream would. No need to implement Position or Seek and such... Forward only.</p> <p>I'd prefer if it didn't just copy the whole stream into memory and serve it up multiple times, which would be fairly simple enough to implement myself.</p> <p>Is there anything out there that could do this?</p> http://stackoverflow.com/questions/1011732/iterating-through-the-alphabet-c-a-caz/1011912#1011912 7 Answer by TheSoftwareJedi for Iterating through the Alphabet - C# a-caz TheSoftwareJedi 2009-06-18T10:12:39Z 2009-06-18T13:14:53Z <p><em>Edit: Made it do exactly as the OP's latest edit wants</em></p> <p>This is the simplest solution, and tested:</p> <pre><code>static void Main(string[] args) { Console.WriteLine(GetNextBase26("a")); Console.WriteLine(GetNextBase26("bnc")); } private static string GetNextBase26(string a) { return Base26Sequence().SkipWhile(x =&gt; x != a).Skip(1).First(); } private static IEnumerable&lt;string&gt; Base26Sequence() { long i = 0L; while (true) yield return Base26Encode(i++); } private static char[] base26Chars = "abcdefghijklmnopqrstuvwxyz".ToCharArray(); private static string Base26Encode(Int64 value) { string returnValue = null; do { returnValue = base26Chars[value % 26] + returnValue; value /= 26; } while (value-- != 0); return returnValue; } </code></pre> http://stackoverflow.com/questions/1869886/is-it-possible-to-use-nets-transactionscope-with-sql-server-2005-without-allowi/1869962#1869962 Comment by TheSoftwareJedi on Is it possible to use .NET's TransactionScope with Sql Server 2005 without allowing promotion to DTC? TheSoftwareJedi 2009-12-08T21:49:27Z 2009-12-08T21:49:27Z I'm dealing with a production problem AFTER the release. I'm looking for a way to not have to shut down the store while I fix the underlying cause. http://stackoverflow.com/questions/1868074/why-are-my-transactional-activemq-messages-being-dropped-instead-of-moving-to-the/1868607#1868607 Comment by TheSoftwareJedi on Why are my transactional ActiveMQ messages being dropped instead of moving to the DLQ? TheSoftwareJedi 2009-12-08T19:00:25Z 2009-12-08T19:00:25Z 100% sure of them being disregarded. Also 100% sure I'm not committing. It doesn't happen all of the time though, and I can repro. http://stackoverflow.com/questions/1674393/how-do-i-enable-the-back-button-on-ajax-calls-with-long-options-in-the-net-url/1674441#1674441 Comment by TheSoftwareJedi on How do I enable the back button on ajax calls with long options in the .NET url? TheSoftwareJedi 2009-11-19T15:52:40Z 2009-11-19T15:52:40Z the links you posted were more about how to enable ajax history...not how to store more data in the URL, which was the question. My solution ended up being to create a guid and store the reference in the database http://stackoverflow.com/questions/1712402/asp-net-page-change-causes-an-object-array-in-session-to-be-unable-to-cast-to-it Comment by TheSoftwareJedi on ASP.NET page change causes an object array in Session to be unable to cast to it's own type?? TheSoftwareJedi 2009-11-11T01:40:22Z 2009-11-11T01:40:22Z no, this code works fine in between edits to that page. once an edit is made, thats when what is in session doesn't match anymore... when asp.net recompiles the page, does it render the class as a new version or something? I'd think even so, it'd be convertable/castable. http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by Comment by TheSoftwareJedi on Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? TheSoftwareJedi 2009-11-05T16:23:12Z 2009-11-05T16:23:12Z @senfo how do I fix other users' plugins?! http://stackoverflow.com/questions/1674393/how-do-i-enable-the-back-button-on-ajax-calls-with-long-options-in-the-net-url/1674441#1674441 Comment by TheSoftwareJedi on How do I enable the back button on ajax calls with long options in the .NET url? TheSoftwareJedi 2009-11-04T15:33:56Z 2009-11-04T15:33:56Z Since Muhammad is unavailable, does anyone else have any bright ideas? Bueller? bueller? bueller? http://stackoverflow.com/questions/1674393/how-do-i-enable-the-back-button-on-ajax-calls-with-long-options-in-the-net-url/1674441#1674441 Comment by TheSoftwareJedi on How do I enable the back button on ajax calls with long options in the .NET url? TheSoftwareJedi 2009-11-04T15:21:19Z 2009-11-04T15:21:19Z Did you miss the bold text above? &quot;This limit of 260 is really the root problem&quot;. Thanks for the help, but do you have any other ideas? http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by/1671372#1671372 Comment by TheSoftwareJedi on Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? TheSoftwareJedi 2009-11-04T15:16:54Z 2009-11-04T15:16:54Z I do not need to read up on threads. I've written a ton of multi-threaded software. I know that the original question IS possible - but perhaps not in .NET. I am allowing users to dynamically load plugins, and drop them onto a new tab. Thus, said plugin should be isolated. I am not asking for tips on threading and control development - just advice on how to solve the problem stated. http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by/1670860#1670860 Comment by TheSoftwareJedi on Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? TheSoftwareJedi 2009-11-04T13:52:33Z 2009-11-04T13:52:33Z @Ed This application allows users to install plugins written outside of my control. If these plugins cause GUI delays - my application is blamed. It's very similar to the Chrome issue. I'd rather see &quot;Aw Snap&quot; like Google shows when a tab goes bad then have the whole application go bad. When a given plugin dies/locks up, it's clearer who the blame lies with if the entire application doesn't die. Don't be so fast to jump to conculsions. I'm not an idiot. http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by Comment by TheSoftwareJedi on Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? TheSoftwareJedi 2009-11-04T13:40:56Z 2009-11-04T13:40:56Z @senfo No, that's not what I'm asking. I'm asking exactly what I said above. I added the information about plugin developers to make the situation sound more feasible. http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by Comment by TheSoftwareJedi on Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? TheSoftwareJedi 2009-11-04T13:31:07Z 2009-11-04T13:31:07Z @Ed Then why did Google design Chrome with separate processes running tabs? Was there no reason? http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by/1671194#1671194 Comment by TheSoftwareJedi on Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? TheSoftwareJedi 2009-11-04T13:16:54Z 2009-11-04T13:16:54Z When you work for a large organization, developers design controls which can be faulty. I'm not forgiving it, but accepting it. I'd like to be able to isolate them. It's not a perfect development world... http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by/1671372#1671372 Comment by TheSoftwareJedi on Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? TheSoftwareJedi 2009-11-04T13:14:58Z 2009-11-04T13:14:58Z When you work for a large organization, developers design controls which can be faulty. I'm not forgiving it, but accepting it. I'd like to be able to isolate them. It's not a perfect development world... http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by/1671061#1671061 Comment by TheSoftwareJedi on Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? TheSoftwareJedi 2009-11-04T13:14:27Z 2009-11-04T13:14:27Z When you work for a large organization, developers design controls which can be faulty. I'm not forgiving it, but accepting it. I'd like to be able to isolate them. It's not a perfect development world... http://stackoverflow.com/questions/1670849/is-there-a-way-for-one-net-control-to-contain-another-control-which-is-owned-by/1670860#1670860 Comment by TheSoftwareJedi on Is there a way for one .NET Control to contain another Control which is owned by a seperate GUI thread? TheSoftwareJedi 2009-11-04T13:13:47Z 2009-11-04T13:13:47Z @Ed When you work for a large organization, developers design controls which can be faulty. I'm not forgiving it, but accepting it. I'd like to be able to isolate them. It's not a perfect development world...