Help with SoapClient

Hello all, I have been smashing my head against the keyboard for a few hours.

I need to create the following soap request.


<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 
	xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
	xmlns:ZSI="http://www.zolera.com/schemas/ZSI/" 
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<SOAP-ENV:Header/>
	<SOAP-ENV:Body xmlns:ns1="https://gapi.givex.com/1.0/types_trans">
		<ns1:GetBalance>
			<id>
				<token>token</token>
				<user>1</user>
				<userPasswd>1234</userPasswd>
				<oper>1</oper>
				<operPasswd>123</operPasswd>
				<language>en</language>
			</id>
			<givexNumber>1234</givexNumber>
			<currency>CAD</currency>
		</ns1:GetBalance>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

I’ve tried multiple attempts with the built SoapClient, nusoap and Pear::Soap with no luck. I don’t care what Soap library it’s written with, any help or pointers would be greatly appreciated.

Thanks