in reply to soap-lite issue

Well I found out what it was... After comparing it to some of my other scripts, they would show what the server was expecting.. such as this..
<username>string</username> <password>string</password>
And this server was like..
<Username /> <Password />
After thinking about it.. I realized this may mean that the server has no idea if it should be expecting a string, or an intiger, or boolean, etc, so changing the XML to below.. fixed it..
<AdminUsername xsi:type="xsd:string">bla bla</AdminUsername> <AdminPassword xsi:type="xsd:string">bla bla</AdminPassword>