Forum Discussion

jgreve's avatar
15 years ago

30 second lag between request & rendering of response

I have like a 30 second lag between getting a response & rendering of said response.
Time from request to getting raw response (accoring to HTTP LOG) is 6 seconds.
Time from raw response to displaying formatted response is another 30 seconds.

(I'm using soapui 2.5.1, not the pro version)

The request request is fairly short (see below).
The reponse has about 10 times as many tags.

The "show HTTP LOG" button tells me I get a response within 6 seconds; it looks like a complete response (everything is there, from the start root tag to the closing root tag) - and all the unformatted XML reponse looks as-expected.

However - the time to display that response in the response pane is really long, like 35 seconds ("response time" in the gui shows up as 37066ms for this test).

On other machines in my environment, the response renders pretty fast; I don't see the lag.  It would take about 6 seconds total.

btw, this is an old workstation (win2000) but still - a 30+ second delay?
The CPU utilization is low (under 7% the whold time, according to task manager).
It feels like it is waiting for some kind of network activity.
Is there a "disable schema fetching" or something I can do?
  John G.

--- example request ---
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:doc="http://rti.ascential.com/MDM_DEV/doc/">
  <soapenv:Header/>
  <soapenv:Body>
      <doc:search>
        <doc:enterpriseconsumerid></doc:enterpriseconsumerid>
        <doc:remotesystem>TEST</doc:remotesystem>
        <doc:remotekey>ABC</doc:remotekey>
        <doc:consumerstatus>Z</doc:consumerstatus>
        <doc:firstname>TERI</doc:firstname>
        <doc:lastname>QBhat</doc:lastname>
        <doc:emailaddress>RAMESH@HOTMAIL.COM</doc:emailaddress>
        <doc:day_phonenumber></doc:day_phonenumber>
      </doc:search>
  </soapenv:Body>
</soapenv:Envelope>