i have a web service:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelop e xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http ://www.w3.org/2001/XMLSchema" xmlns:soap="htt p://schemas.xmlsoap .org/soap/envelope/">
<soap:Body>
<Demo xmlns="http://example.org/">
<Input>base64Bi nary</Input>
<FileName>strin g</FileName>
</Demo>
</soap:Body>
</soap:Envelope>
i want to transfer a file but i don't know to use type base64binary byte[].
I've convert file to base64 string but no result.
i convert file to byte[] but no result.
Please help me!!! i wrote code in C#...
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelop e xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http ://www.w3.org/2001/XMLSchema" xmlns:soap="htt p://schemas.xmlsoap .org/soap/envelope/">
<soap:Body>
<Demo xmlns="http://example.org/">
<Input>base64Bi nary</Input>
<FileName>strin g</FileName>
</Demo>
</soap:Body>
</soap:Envelope>
i want to transfer a file but i don't know to use type base64binary byte[].
I've convert file to base64 string but no result.
i convert file to byte[] but no result.
Please help me!!! i wrote code in C#...
Comment