1
vote
Dynamically Create a generic type for template
Here's a question: Do you really need to create a channel with the exact contract type in your specific case?
Since you're doing routing, there's a very good chance you could simply …
0
votes
Execute JavaScript from within a C# assembly
I don't know of any .NET specific way of doing this right now... Well, there's still JScript.NET, but that probably won't be compatible with whatever JS you need to execute :)
Obviously the …
5
votes
Writing XML files using XmlTextWriter with ISO-8859-1 encoding (C#)
Why are you writing the XML first to a MemoryStream and then writing that to the actual file stream? That's pretty inefficient. If you write directly to the FileStream it should work.
If y …
1
vote
Finding the time taken to send messages with WCF net.tcp
David is right about the problems with clock synchronization. However, adding the timestamp information outside of the service/client implementation is not hard at all on WCF.
You're right …
4
votes
C# boxing question
When you're casting to a value type you're really forcing an unbox IL operation, which requires that the type you're casting to matches exactly the boxed value; there are no conversions, i …
3
votes
C# - How to get Program Files (x86) on Vista x64
One way would be to look for the "ProgramFiles(x86)" environment variable:
String x86folder = Environment.GetEnvironmentVariable("ProgramFiles(x86)");
…
1
vote
How does default/relative path resolution work in .NET?
Relative Path resolution never works against the path of the launching executable. It always works against the process' Current Directory, and you can't really expect that to always be set …
0
votes
Reading the MSMQ transcational dead letter queue
You're probably referencing the queue using the wrong kind of FormatName or path. What does yours look like?
…
1
vote
Reading the MSMQ transcational dead letter queue
Try this formatname instead and see if it works:
@"FORMATNAME:DIRECT=OS:.\SYSTEM$;DeadXact"
…
2
votes
Resend to MSMQ after exception
Couple of points: The best way to do this would be using a transaction spanning both queues; that way you'll know you won't lose a message.
The second part of it is to be careful about how …
0
votes
Windows Service without the VS2005 template
Sure, you just need to write the code yourself. It's not actually very hard. Here are a couple of references to how to do it:
…
1
vote
SSCrypto/OpenSSL to C# Crypto
A couple of things to watch out for:
1- Make sure that you're interpreting the key and data strings correctly. For example, is the key encoded in ASCII instead of UTF8? Does it perhaps repr …
1
vote
What is the best way to create a new message within a Biztalk Orchestration?
What exactly are you looking for? Is it just creating a new message with a fixed content (like a sort of template)? Or based on something else? You really need to clarify the question and be more s …
2
votes
Is it possible to communicate with an external system over TCP/IP using WCF?
Possible? Possibly yes, but it's going to take some work.
For starters, you will need to write a custom WCF Transport Channel that handles the specifics of your TCP/IP based protocols (i.e …
2
votes
Application pool error
That looks like the IIS worker process is crashing. If you have multiple sites/applications running on the same AppPool, I'd start by isolating them one at a time into separate AppPools. You'll pro …
