SAXException... prefix ..is not bound

Calling a webservice, I get the following response:

I am not seeing what is wrong with the following piece of data I am sending:
[xml]
<m:processMessage xmlns:m=“http://www.coep-joes.com/coep/Gateway” SOAP-ENV:encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/”>

[/xml]

Can you see what is wrong with this?

try to move your encodingStyle definition to the root, like this:
<SOAP-ENV:Envelope xmlns:SOAP-ENV=“http://schemas.xmlsoap.org/soap/envelope/” xmlns:SOAP-ENC=“http://schemas.xmlsoap.org/soap/encoding/” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance” xmlns:xsd=“XML Schema” SOAP-ENV:encodingStyle=“http://schemas.xmlsoap.org/soap/encoding/” xmlns:m=“http://www.coep-joes.com/coep/Gateway”>
SOAP-ENV:Body
<m:processMessage xmlns:m=“http://www.coep-joes.com/coep/Gateway”> …

HTH,
Tong