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 …
0
votes
Working with Pop/IMAP Email and .NET?
Mitchel,
If you don't mind commercial alternatives, I've personally used the IPWorks! components from /n software. They have support f …
2
votes
WCF netTCPBinding - Is transport encryption enough?
In general terms, as long as you're dealing with point to point connections, and certificates are being validated on both sides (particularly if you're using mutual authentication), then yes, trans …
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
Is there an issue sending XML via WCF?
Just thought I'd add that in most cases these will be configuration changes, unless you're doing all your binding setup through code.
Specifically, you'll probably need to adjust the MaxRe …
1
vote
.NET Log Soap Request on Client
There are many options you can use. There are certainly some commercial tools for this (like SOAPScope), but if you're just looking to capture the raw contents of the requests/responses there are s …
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 …
5
votes
Powershell Generic Collections
Dictionary is not defined in the same assembly as SortedDictionary. One is in mscorlib and the other in system.dll.
Therein lies the problem. The current behavior in powershell is that whe …
0
votes
WCF Service Custom Configuration
It depends a lot of where and how you expect to use said information. If it's not something that's going to do a lot with the infrastructure (i.e. getting the services to run and processing request …
0
votes
WCF and System.Configuration namespace
It depends on what you're trying to accomplish. On ASP.NET, you'd normally wouldn't use ConfigurationManager for stuff like this, but WebConfigurationManager instead. That said, there's no exact eq …
3
votes
What’s the best way to automate secure FTP in PowerShell?
As far as PowerShell goes, the /n Software NetCmdlets package includes FTP cmdlets (including support for both secure FTP types) that y …
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 …
4
votes
What is the best way to download all of the WSDL files exposed by a WCF service?
If you own the service, another interesting option you could explore is using Christian Weyer's FlatWSDL …
