SOAP version available to Unity? [No]

Hello all. I have been looking for a bit of information and cannot seem to find it.
I was wondering if anyone knew what version of SOAP was usable by Mono in Unity?

I am new to unity and using web services and I am going to save some xml data into a database.

The dba told me that I would need to use these calls and that It would require SOAP 1.2.

DataResult GetData(string Reference)
SetData(string Reference, string Data)

I am still trying to figure this part out but I have not been able to find any information on which version of SOAP I have access too, just that you can use it with Mono.

in unity 2.x, none

webservices is one of the fields that in mono 1.2.5 is not remotely completely implemented (1.2.5 is the mono version used in unity 2.x, unity 3 uses Mono 2.6)

Thanks for the info dreamora. I guess I will have to find another method to access the database.

I hope there is some way to get my serialized .xml file into a SQL database that does not give me a brain aneurism.

This may be a dumb question, but why not just plain HTTP? SOAP and XML seem like ridiculous overkill.

Well, if I take a bunch of data like:

public class UserData
{
    public UserData() 
    {
        CharacterList = new List<Character>();
    }
    public List<Character> CharacterList;
}

public class Character
{
    public Character()
    {
        bhvList = new List<BehaviorStats>();
    }
    
    public string   Name;
    public string   GAE;
    public string   Actions;
    public string   Stats;
    public List<BehaviorStats> bhvList;
}

and save it into serialized .xml, I can then make one read or write to the data base to get my data. then I can deserialize it into my UserData and use it in my program.

I am useing HTTP, because there is no other way with Unity 2.6.(Ok there are other ways, but HTTP is simple).

I have it working to read and write to a file, but I am having a hard time getting it to read and write to a SQL database.