Hi, I am using Microsoft.UDDI to discover web services in a BEA UDDI. The code I am using is below. I am recieving the following error though when I make the conenction and reqeust: a serious technical error has occurred while processing the request. 'Failed to create Request from xml, Incorrect XML encoding: utf-8. Required: UTF-8. If I am reading this correctly then the reponse is coming back as utf-8, but it wants it as UTF-8? Is there a case sensitivity issue in regards to this? If so how can I overcome this when I do not have access to the UDDI as it is a remote provider? If I am going about this the wrong way please let me know. UddiConnection uddiConn = new UddiConnection("http://www.xxxxx.xxx.xxx/uddi/uddilistener"); // create find service object to search for the service FindService fs = new FindService("movement service"); // Send the FindBusiness request over the connection. ServiceList servList = fs.Send(uddiConn); Thanks in advance, Nate