Hi 
This may have been repeated many times on the list, but I couldn't
search for this in the archives. If anyone has clue please respond

1. I use Axis 1.1 as a client to all webservices.
2. For many .Net WebService e.g
"http://dinoch.dyndns.org/webservices/books";, the SOAP Body Request
generated from SOAPBodyElement.toString() looks like 
        <soapenv:Body>
                <ns1:DoKeywordSearch
xmlns:ns1="http://dinoch.dyndns.org/webservices/books";>
                        <keyword xsi:type="string">archer</keyword>
                </ns1:DoKeywordSearch>
        </soapenv:Body>
3. The soap response from the web service returns empty.
4. If I manually make a request without prefixed name space as shown
below it works
  <soap:Body>
    <DoKeywordSearch xmlns="http://dinoch.dyndns.org/webservices/books";>
      <keyword>string</keyword>
    </DoKeywordSearch>
  </soap:Body>
5. Is there a way to solve this?

Thanks


Reply via email to