Announcements
streamIO.write(xmlDoc); XX_VendPaymIntegrationHelper::uploadToBlob(parameters.BlobStorageConnectionString, parameters.BlobStorageContainer, parameters.BlobStorageOutboundFolder, fileName, streamIO,xmlDoc);
public static void uploadToBlob(HS_VendPaymIntBlobStorageConnectionString _connectionString, HS_VendPaymIntBlobStorageContainer _container, HS_VendPaymBlobStorageOutboundFolder _folder, Filename _filename, CommaTextStreamIo _streamIO, XMLDocument _xmlDoc ) { try { CloudStorageAccount storageAccount = Microsoft.WindowsAzure.Storage.CloudStorageAccount::Parse(_connectionString); CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); CloudBlobContainer blobContainer = blobClient.GetContainerReference(_container); //blobContainer.CreateIfNotExists(null, null); //create blob container Filename fullName = _folder ? _folder + "/" + _filename : _filename; CloudBlockBlob destBlob = blobContainer.GetBlockBlobReference(fullName); System.IO.MemoryStream memstream = _streamIO.getstream(); destBlob.UploadFromStream(memstream, null, null, null); } catch { throw error("Blob error"); } }
try { CloudStorageAccount storageAccount = Microsoft.WindowsAzure.Storage.CloudStorageAccount::Parse(_connectionString); CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); CloudBlobContainer blobContainer = blobClient.GetContainerReference(_container); //blobContainer.CreateIfNotExists(null, null); //create blob container Filename fullName = _folder ? _folder + "/" + _filename : _filename; CloudBlockBlob destBlob = blobContainer.GetBlockBlobReference(fullName); System.IO.MemoryStream memstream = _streamIO.getstream(); memstream.Position = 0; destBlob.UploadFromStream(memstream, null, null, null); }
streamIO.write(xmlDoc);
System.IO.MemoryStream stream = new System.IO.MemoryStream(); XmlWriter xmlWriter = XmlWriter::newStream(stream); xmlDoc.writeTo(xmlWriter); writer.flush();
public static void uploadToBlob(HS_VendPaymIntBlobStorageConnectionString _connectionString, HS_VendPaymIntBlobStorageContainer _container, HS_VendPaymBlobStorageOutboundFolder _folder, Filename _filename,, xmldocument _xmlDoc ) { try { CloudStorageAccount storageAccount = Microsoft.WindowsAzure.Storage.CloudStorageAccount::Parse(_connectionString); CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); CloudBlobContainer blobContainer = blobClient.GetContainerReference(_container); //blobContainer.CreateIfNotExists(null, null); //create blob container Filename fullName = _folder ? _folder + "/" + _filename : _filename; CloudBlockBlob destBlob = blobContainer.GetBlockBlobReference(fullName); System.IO.MemoryStream stream = new System.IO.MemoryStream(); XmlWriter xmlWriter = XmlWriter::newStream(stream); _xmlDoc.writeTo(xmlWriter); xmlWriter.flush(); destBlob.UploadFromStream(stream, null, null, null); } catch { throw error("Blob error"); } }
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Abhilash Warrier 566 Super User 2026 Season 1
André Arnaud de Cal... 504 Super User 2026 Season 1
Subra 429