vote up 0 vote down star

Hi! I have a problem related to this question. I have a web service (also using php) that returns some names. When any of them contains Swedish characters (å, ä or ö) and probably others as well i get a soapfault (looks like we got no XML document). I can however see the full (correct afaik) response using $soapcalo->__getLastResponse().

How do I handle the special characters? I have tried adding the encoding attribute (utf-8) on both client and server but without success.

Edit: Excerpt of the soap reply:

<?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="...">
 <SOAP-ENV:Body>
  <ns1:callFunctionResponse>
   <ns1:Response>
    <ns1:result>success</ns1:result>
    <ns1:content>
     <Contact>
      <userName>VIB09SLA9EP</userName>
      <firstName>Patrik</firstName>
      <lastName>Stenstr&ouml;m</lastName>
     </Contact>
    </ns1:content>
   </ns1:Response>
  </ns1:callFunctionResponse>
 </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Thanks!

flag

Can you give us the first line of the SOAP response? Since SOAP is XML, once you've added UTF-8 properly on the server the response XML should tell you it's UTF-8. You'd have a problem if the XML did was cliaming to be ISO-8859-1 but actually contained UTF-8. – MSalters Aug 28 at 15:00

4 Answers

vote up 0 vote down check

Ok everyone - problem finally solved, thought I'd post it here for anyone else with similair problems. As it turns out, the problem occured earlier in the process.

The content of the SOAP reply was generated building the structure with a DomDocument. Later that was saved with the saveHTML function. As it turns out, that function adds some HTML encodings which breaks the soap decoding on the client.

When instead using the saveXML function the reply gets through successfully (also when adding tags and other strange stuff) and is also decoded to the correct strings by the soap client.

I hope this is the end of it, but you never know :)

Thanks for all the help and +1 on those helpful to checking the right places.

/Victor

link|flag
vote up 0 vote down

Is the SOAP server a Windows based server? I've noticed that some times Windows based servers or applications will not send UTF-8, but instead send in cp1252.

In one app where I had special chars coming down in that encoding, I would just run the following code on my HTML output:

<?php
print htmlentities($string, ENT_COMPAT, 'cp1252');

To ensure any special characters were encoded for HTML output.

link|flag
I dont follow you here really... The problem is that I only can access the real data returned via __getLastResponse() - accessing it normally just gets the SOAP error. But to answer the question - yes, the soap server runs on a windows machine. – Victor Aug 31 at 6:50
vote up 3 vote down

Just a wild guess: Have you made sure that the names actually are utf-8 encoded? I would think that just setting the SOAP attribute will noch change the actual encoding of the values. Have you tried using utf8_encode on the names before returning them via SOAP?

link|flag
I have now :) Unfortunately it does not make any difference and also the server side logging (basic to a text file) comes out in utf-8 anyway so everything seems alright. Thanks – Victor Aug 31 at 6:48
vote up 2 vote down

Not sure if this will help but maybe look into HTML entities?

link|flag
Thanks. I suppose it would be possible to encode everything å, ä and ö to &aring; &auml; and &ouml; respectively, but that really shouldnt be necessary. – Victor Aug 31 at 6:46
Edit to above: As it turned out the &aring; etc encoding was actually what broke the decoding in the first place! Dont do that when soaping! :) – Victor Aug 31 at 7:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.