WebService stopped working after upgrade

I have a WebService set up that returns an array as VARIANTARRAY_HOLDER.

All other services, that doesn’t return an array, are still working flawlessly.

I don’t get any error messages anywhere. What I do get back is this:

<soapenv:Envelope xmlns:soapenv=“http://schemas.xmlsoap.org/soap/envelope/” xmlns:xsd=“http://www.w3.org/2001/XMLSchema” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance” xmlns:soapenc=“http://schemas.xmlsoap.org/soap/encoding/”>

soapenv:Body

  <ns1:GETLISTResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="urn:DefaultNamespace">

     <GETLISTReturn xsi:type="soapenc:Array" soapenc:arrayType="xsd:anyType[2]">

        <item xsi:type=":ENTRY"/>

        <item xsi:type="xsd:normalizedString"/>

     </GETLISTReturn>

  </ns1:GETLISTResponse>

</soapenv:Body>

</soapenv:Envelope>

On a 7.0.1 server Item Entry type contains values, as it should.

I verified this by having two servers on the same computer and an identical database in both servers.

7.0.1 returns the values and 7.0.2FP2 does not!

I’m stumped! Any assistance would be greatly appreciated.