Base64 Encoding with the SOAP Toolkit...
We recently had a project where I tried to encrypt a bit of data (Rijndael), base64 encode it in a VB6 client, and send it over to a .NET managed Web Service via a byte()/byte[]. What a pain in the ass. Of course this whole thing had to be wrapped up in a complex object, and I decided to use the IXMLDomNodeList method of wrapping up the message.
After spending a complete day trying to figgure out how to do it, and then try to determine why the decryption was not working, I gave up. This stuff is supposed to be easy. I definetly do not want to put in place a Transaction based system that rely's on something so flakey.
We decided to take a step back from it all and determine an alternative method. I just hate not using the technology.
Anyways, if anyone can show some sample code that actually works I think it would be a create accomplishment. :) Both Rijndael and Base64 algorithms are freely available everywhere.