cancel
Showing results for 
Search instead for 
Did you mean: 

SAP HTTP Sniffer, HTTP Monitor tool

former_member261631
Participant
0 Kudos

Hi Experts,

I am looking for HTTP Sniffer, HTTP Monitor tool for SAP Monitoring system. Is there any tool available from which we can monitor system at HTTP level specially Portal system. To check whether system is up or not ?

Regards,

Hanif

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Hanif,

Basically for HTTP sniffing, HTTP Watch or Fiddler are the good tools. If you planning to monitor SAP Portal best option will be

solman based e2e monitoring tools. Your Basis team can configure that for you.

Also there other third party tools like foglight etc... to see if Portal Server is up and responding

Regards,

Vivek Nidhi

former_member261631
Participant
0 Kudos

Hi Vivek,

Thanks for the reply.

As we are not having SOLMAN so need to go with some third party tool for portal system running check.

And idea which one is good for this portal system usage.

Regards,

Hanif

Former Member
0 Kudos

Hello there,

To check if portal servers are up and running. Do you guys has got Java Developers ?

We got a selenium script written which will login automatically every day to check if Portal Server is up and running.

Please find the code below. Script will need a ll senenium jar files and it will login to Portal and check if Welcome <username>

message if found.

try{

System.out.println("************************************************************");

System.out.println("Loggin to Portal Server");

System.out.println("----


");

selenium = new DefaultSelenium("localhost",4444, "*iexplore", "http://<FQDN>//irj//portal/");

selenium.start();

selenium.deleteAllVisibleCookies();

selenium.open("/irj/portal");

selenium.type("j_user", "<username>");

selenium.type("j_password", "<password>");

selenium.click("uidPasswordLogon");

selenium.waitForPageToLoad("40000");

if((selenium.isTextPresent("Welcome Vivek Nidhi"))){

System.out.println("Welcome Message was found!! at tveppr04.erp.intra");

}else{

System.err.println("Server response slower than 4K tveppr04.erp.intra");

}

selenium.close();

selenium.stop();

}catch(Exception e){System.err.println("Unable to ping Portal Server in 30000"); System.out.println(e.getMessage());}

Answers (1)

Answers (1)

former_member183915
Active Contributor
0 Kudos

Hi,

Were you able to find some tool to check whether portal server is up or not? We do have exactly same requirement as yours.

Regards,

Navya

Former Member
0 Kudos

This message was moderated.