SaveSoapData – serializing an object to file in SOAP format

SaveSoapData – serializing an object to file in SOAP format

' Serialize an object to file in SOAP format.Sub SaveSoapData(ByVal path As String, ByVal o As Object)    ' Open a file stream for output.    Dim fs As FileStream = New FileStream(path, FileMode.Create)    ' Create a SOAP formatter for this stream.    Dim sf As New SoapFormatter(Nothing, _        New StreamingContext(StreamingContextStates.File))    ' Serialize the array to the file stream, and close the stream.    sf.Serialize(fs, o)    fs.Close()End Sub' This sample procedure tests the reusable routine above.' Note that you also need the LoadSoapData function, linked below.Sub TestSoapSerialization()    ' Create a hashtable object and fill it with some data.    Dim ht As New Hashtable()    ht.Add("One", 1)    ht.Add("Two", 2)    ht.Add("Three", 3)    ' Save the hash table to disk in SOAP format.    SaveSoapData("c:hashtbl.xml", ht)    ' Reload the file contents into another HashTable object.    Dim ht2 As Hashtable    ht2 = CType(LoadSoapData("c:hashtbl.xml"), Hashtable)    ' Display values.    Dim de As DictionaryEntry    For Each de In ht2        Console.WriteLine("Key=" & de.Key.ToString & "   Value=" & _            de.Value.ToString)    NextEnd Sub' Note: This code is taken from Francesco Balena's' "Programming Microsoft Visual Basic .NET" - MS Press 2002, ISBN 0735613753' You can read a free chapter of the book at ' http://www.vb2themax.com/HtmlDoc.asp?Table=Books&ID=101000

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes