Forum Discussion

fubarSUSHI's avatar
fubarSUSHI
Icon for Altocumulus rankAltocumulus
Feb 26, 2014

Health monitor help

I need to figure out how to create a HTTP Health monitor but it doesnt give me a website to look at. Here is a snippet of the white paper: HTTP GET Request for WebLogic

 

The URL that needs to be specified for the WebLogic check is the following:

 

http[s]://{Server IP or DNS Name}:{port}/wfo/control/appTest

 

where:

 

- {Server IP or DNS Name} is the IP or DNS name that is configured for the Application server under the WebLogic service

 

- {port} is the HTTP/HTTPS port on which WebLogic listens

 

How would I write the send and receive string?

 

2 Replies

  • Try send string in this order until one works;-

     

    send "GET /wfo/control/appTest\r\n\r\n" send "GET /wfo/control/appTest HTTP/1.1\r\nHost: site.com.au\r\nConnection: close\r\n\r\n" send "GET /wfo/control/appTest HTTP/1.1\r\nHost: site.com.au:XX\r\nConnection: close\r\n\r\n"

     

    For the receive string, Look at the content returned from /wfo/control/appTest find some content at or near the end of the page like "/head", and use that.

     

    • IheartF5_45022's avatar
      IheartF5_45022
      Icon for Nacreous rankNacreous
      Sorry I meant find some content at or near the end of the page like "/html", and use that.