I have a web service that is showing errors in firebug because some of my French characters don't seem to be processing correctly. One of the multiple errors (exactly the same error just different text) happens when I click on an option that is supposed to expand and show more options, and is caused by this issue is below:
Now I've inherited a Web Services application for the moment and I've been fixated on two files that may be causing this issue.The first - webservices.xmlthis file which is (I think) importing the XML from the Web Service.I am actually getting a warning in this file, specifically:\[quote\] Warning: No grammar constraints (DTD or XML schema) referenced in the document\[/quote\]The code is:\[code\]<?xml version="1.0" encoding="iso-8859-1"?><webservices> <ws name="example" type="php5"> <params proxyhost= "etc" proxyport= "80" wsdl= "etc" /> </ws> <ws name="example2" type="php5"> <params proxyhost= "etc" proxyport= "80" wsdl= "etc" /> </ws> <ws name="example3" type="php5"> <params proxyhost= "etc" proxyport= "80" wsdl= "etc" /> </ws> <ws name="example4" type="php5"> <params proxyhost= "etc" proxyport= "80" wsdl= "etc" /> </ws> <ws name="example5" type="php5"> <params proxyhost= "etc" proxyport= "80" wsdl= "etc" /> </ws></webservices>\[/code\]The second - The Web ServiceHere is the confusing part - XML is being parsed dynamically using the web services to be displayed on a HTML document, and currently I am able to check but not edit the web service.I'm using SoapUI to view the online XML document, and a few errors on this I appear to be getting (I don't know whether these are related, I'm putting them just in case) include:\[quote\] ERROR:com.example.soapui.impl.support.definition.support.InvalidDefinitionException ERROR:java.lang.NumberFormatException: For input string: ""\[/quote\]Code for SoapUI WebService:\[code\]<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.reporting.siveo.net/"> <soapenv:Header/> <soapenv:Body> <ws:GetAllCounterByEntityType> <!--Optional:--> <entityType> <idEntityType>?</idEntityType> <!--Optional:--> <nameEntityType>?</nameEntityType> </entityType> <!--Optional:--> <loginDTO> <!--Optional:--> <codeRetour>?</codeRetour> <!--Optional:--> <libelleRetour>?</libelleRetour> <!--Optional:--> <idSession>?</idSession> <!--Optional:--> <login>?</login> <!--Optional:--> <password>?</password> </loginDTO> </ws:GetAllCounterByEntityType> </soapenv:Body></soapenv:Envelope>\[/code\]I have already tried making sure both documents were encoded in UTF-8 and tried to use a schema to combat the warning but couldn't get a compilable solution.Any help as to what's causing the encoding issue? would be greatly appreciated.