Content in <div> HTML Tag not shown
Hi everyone!
I use SoapUI at work since 6 months ago and recently I have a problem. I have been looking for an answer with no success!
As a preparation step in my tests, I have to check the state of my server. For that, we have some websites available. That is to say: I need a simple GET step in order to retrieve the info from the website.
I've already donde that but the problem is that the most important info from the website comes inside a <div> HTML Tag, but SoapUI shows no content in the response (neither in the XML tab nor in the Raw tab). I mean it's just empty. I don't know exactly the reason. What I mean it's:
Raw request:
GET https://myserver.com/path/ HTTP/1.1
Host: myserver.com
Connection: Keep-Alive
User-Agent: Apache-HttpClient/4.1.1 (java 1.5)
Raw Response:
HTTP/1.1 200 OK
Date: Wed, 01 Apr 2015 12:34:30 GMT
Server: Apache-Coyote/1.1
Cache-Control: private
Expires: Thu, 01 Jan 1970 01:00:00 GMT
Content-Type: text/html;charset=ISO-8859-1
Content-Length: 554
Set-Cookie: JSESSIONID=ASDFTWRE9898KJSFSDFHOERPWPUT; Path=/path/; HttpOnly
Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Server Status</title>
<link rel="stylesheet" type="text/css"
href="/path/css/default.css" />
<script type="text/javascript"
src="/path/js/jquery-1.11.0.min.js"></script>
<meta http-equiv="refresh" content="0; url=path" />
</head>
<body>
<div id="wrapper">
</div>
</body>
</html>
The page looks normal in any web browser. It's just not working in SoapUI. I think it's some kind of a problem with CSS or the the div Tag, that might not be support :?
Can anybody help me? I would deeply appreciate it! thanks!