Querying the MIB for estabilished database connectivity

Hi
Fairly new to the MIB and its internal workings.
Can someone explain or provide an exampe ud script to determine database connections that are currently running.
Configuration currently has the followin database connections:- Oracle 10g, DSM, Supra(IBM) and IDMSX(ICL)
Take it the above should not make any difference.
Need to understand what TA_CLASS, TA_OPERATION etc I need to query?
Regards Sam

Sam,
The current state of the connection between a Tuxedo server and its
asssociated resource manager is not part of the information offered by
tmadmin or by the Tuxedo MIB, so the best way to obtain this information is
by querying the database for active connections in its own specific way.
Another way to obtain this information is to implement a simple service that
makes one database call and to invoke this service to see if the database
connection is active.
It is also possible to perform a GET operation on the T_ULOG TM_MIB class
and search for specific userlog messages that your application has seen when
there is a database connection failure.
Ed
<Sam Dhooper> wrote in message news:[email protected]..
Hi
Fairly new to the MIB and its internal workings.
Can someone explain or provide an exampe ud script to determine database
connections that are currently running.
Configuration currently has the followin database connections:- Oracle 10g,
DSM, Supra(IBM) and IDMSX(ICL)
Take it the above should not make any difference.
Need to understand what TA_CLASS, TA_OPERATION etc I need to query?
Regards Sam

Similar Messages

  • JDBC is the Acronym of Java Database Connectivity - Yes / No?

    Hi,
    JDBC is the Acronym of Java Database Connectivity - Yes / No?
    I am little bit confused. I got this question in an Inteview.
    I support yes. But some of the compitiors say no.
    What will the real answer?

    Really? Even Sun contradicts themselves here:
    (2002) http://java.sun.com/javase/6/docs/technotes/guides/jdbc/
    and (more importantly) here:
    http://java.sun.com/docs/glossary.html#JDBC
    although here:
    (2001) http://java.sun.com/j2se/1.4.2/docs/guide/jdbc/getstart/intro.html
    I think it is simply silly for the latter to state that "JDBC is the trademarked name and is not an acronym" -- Oh really? JDBC doesn't stand for anything? It is all caps just because it is a trademark then? hmmm.
    I'm certain the real answer of what it stands for may have been lost long ago. However, I doubt that the interviewer meant the question to be a trick and was looking for "Java DataBase Connectivity"
    For every instance that you find that it doesn't stand for anything, I can show you 2 instances (from Sun or an employee) where they use "Java Database Connectivity (JDBC)".
    P.S. Ryan Craig may be the final authority on this...

  • Is there a way to turn the wireless capabilities off on an AirPort Express?  I have an AirPort Extreme as my main router and use the express to just extend it. I only really want to you use the express for hard ethernet connections

    Is there a way to turn the wireless capabilities off on an AirPort Express?  I have an AirPort Extreme as my main router and use the express to just extend it. I only really want to you use the express for hard ethernet connections. For whatever reason when I have my express extend my wifi at home the download speed from just the express is absolutely terrible, drops to about 1.5 mb compared to when it's on the extremes part of the network the speed goes up to 50-75mb. These terrible download speed really only affects the iPhones as my MacBook Pro usually gets the good speed no matter where it is. I don't believe there is anything wrong with my phone because if I am in the part of the house that uses just the extreme the download speeds on the iphone goes up to 50-75mb. As a note I have an AirPort Extreme on the top floor of my house (second floor) that's where my modem is located. On the first floor that's where one airport express is located. I also have another airport express in the basement that is accessed by my landlord. Any thoughts on how to fix this would be helpful.

    Is there a way to turn the wireless capabilities off on an AirPort Express?  I have an AirPort Extreme as my main router and use the express to just extend it. I only really want to you use the express for hard ethernet connections.
    It appears that your networking goals with the AirPort Express is to use it as a wireless Ethernet bridge instead of using it to extend the wireless range of your AirPort Extreme. The latter requires that the Express Wi-Fi radios be enabled.
    If you intended to use the Express as a wireless bridge, you just need to reconfigure it to "Join a wireless" network instead of "Extend a wireless network."
    For whatever reason when I have my express extend my wifi at home the download speed from just the express is absolutely terrible, drops to about 1.5 mb compared to when it's on the extremes part of the network the speed goes up to 50-75mb.
    In an extended network, the placement of the extending base station is critical as it can only extend the wireless network at the bandwidth at which it receives it.
    Please check out the following AirPort User Tip for details on optimal base station placement.

  • Where can I download the agent for 11g database for 10.2.0.4 grid control?

    where can I download the agent for 11g database for 10.2.0.4 grid control? i can't find the link.

    I don't think there is one yet, but you can use Grid Control 10gR4 to monitor a 11g database. Please refer the certification matrix in Note 412431.1 Oracle Enterprise Manager 10g Grid Control Checker

  • PX2-300D - Where can I get the MIB for a LeNovoEMC PX2-300D ?

    Hi, I would like to get the MIB for this product. Where can I get it ? Thanks.

    Hello boubou,
    This seems to be related to your other thread, please see my response here:
    https://forums.lenovo.com/t5/LenovoEMC-Network-Desktop/PX2-300D-How-to-configure-a-SNMP-RO-community/td-p/2116770

  • How do I enable the security for my wireless connection?

    How do I enable the security for my wireless connection?

    Enter the setup page (192.168.1.1),  hit the Wireless Tab, then the Security tab.

  • Problem in using context param for storing database connection information

    Hello Friends,
    I am new to struts & jsp.I am developing a project in struts.I have 1 jsp page called editProfile.jsp.On submitting this page it will call 1 action class.The action class in turn will call the Plain old java class where I have written the logic for updating User Profile.
    I have created context-param in web.xml for database connection information like dbURL , dbUserName , dbPassword , jdbcDriver.Now I want to use these connection information in my Business logic(Plain Old Java Class).As we can use context parameter only in jsp & servlets , I am setting the variables of my business logic class with these context param in jsp itself.
    now when I am calling the updateProfile method of Business logic class from Action class it is giving error as all the connection variables which I set in jsp for my business logic class has become null again.
    I am not getting.If once I have set those variables how come they are becoming null again???Please help me.Any Help will be highly appreciated.Thanx in advance.

    This is the code I have written
    web.xml file
    <context-param>
    <param-name>jdbcDriver</param-name>
    <param-value>oracle.jdbc.driver.OracleDriver</param-value>
    </context-param>
    <context-param>
    <param-name>dbUrl</param-name>
    <param-value>jdbc:oracle:thin:@localhost:1521:gd</param-value>
    </context-param>
    <context-param>
    <param-name>dbUserName</param-name>
    <param-value>system</param-value>
    </context-param>
    <context-param>
    <param-name>dbPassword</param-name>
    <param-value>password</param-value>
    </context-param>
    EditProfile.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ page import="java.sql.*" %>
    <jsp:useBean id="EditProfile" scope="application"
    class="com.myapp.struts.EditProfile"/>
    <!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=UTF-8">
    <title>Edit My Profile</title>
    </head>
    <body>
    <form action="submitEditProfileForm.do" focus="txt_FirstName" method="post">
    <%
    EditProfile.setjdbcDriver(application.getInitParameter("jdbcDriver"));
    EditProfile.setdbURL(application.getInitParameter("dbURL"));
    EditProfile.setdbUserName(application.getInitParameter("dbUserName"));
    EditProfile.setdbPassword(application.getInitParameter("dbPassword"));
    -----------more code goes here------------
    EditActionProfile.java
    package com.myapp.struts;
    import javax.servlet.jsp.jstl.core.Config;
    import org.apache.struts.action.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.sql.*;
    public class EditProfileAction extends Action {
    public EditProfileAction()
    public ActionForward execute(
    ActionMapping mapping,
    ActionForm form,
    HttpServletRequest request,
    HttpServletResponse response) throws Exception
    try
    if (isCancelled(request))
    return mapping.findForward("mainpage");
    EditProfileForm epf = (EditProfileForm)form;
    EditProfile ep = new EditProfile();
    String temp = ep.updateProfile(epf.getTxt_FirstName(),epf.getTxt_MiddleName() , epf.getTxt_LastName() , epf.getTxt_Address() , epf.getTxt_Email() );
    if(temp.equals("SUCCESS"))
    return mapping.findForward("success");
    else
    return mapping.findForward("failure");
    catch(SQLException e)
    System.out.println("error" + e.getMessage());
    return mapping.findForward("failure");
    EditProfile.java class (My Business Logic Class)
    package com.myapp.struts;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.sql.*;
    public class EditProfile {
    private String dbURL;
    private String dbUserName , jdbcDriver;
    private String dbPassword;
    private Connection con;
    private Statement stmt;
    public EditProfile()
    public void setdbURL(String s )
    this.dbURL = s;
    public void setdbUserName(String s )
    this.dbUserName = s;
    public void setdbPassword(String s )
    this.dbPassword = s;
    public void setjdbcDriver(String s )
    this.jdbcDriver = s;
    public String updateProfile(String firstname , String middlename , String lastname , String address , String email)
    throws SQLException, ClassNotFoundException , java.lang.InstantiationException , IllegalAccessException
    try
    String s1 = new String("update usr set first_name='" + firstname + "' , middle_name='" + middlename + "' , last_name='" + lastname +"' , address='" + address + "' , email_id='" + email + "' where usr_key=1" );
    con = this.init();
    System.out.println("after init");
    stmt = con.createStatement();
    int rslt = stmt.executeUpdate(s1);
    System.out.println("after excute update");
    stmt.close();
    if(rslt>=1)
    return "SUCCESS";
    else
    return "Failure";
    finally
    if (null != con)
    con.close();
    public Connection init() throws SQLException, ClassNotFoundException
    Class.forName(jdbcDriver);
    con = DriverManager.getConnection(dbURL, dbUserName, dbPassword);
    return con;
    public void close(Connection connection) throws SQLException
    if (!connection.isClosed())
    connection.close();
    }

  • Changing the password for OIM Database User

    We need to change the password of the database user that created and user to run the prepare_xl_db.sh. I changed the <password encrypted="true"> to "false" and modified the password in the xlconfig.xml and restarted the app server but I can't log in. I get the below error. - what else is needed?
    ERROR,30 Oct 2008 09:31:56,265,[XELLERATE.SERVER],Class/Method: XLJobStoreCTM/initialize encounter some problems: Error while connecting to Database. Please check if DirectDB settings are correct in Xellerate configuration file.
    FATAL,30 Oct 2008 09:31:56,265,[XELLERATE.SCHEDULER],QuartzSchedulerImpl constructor Exception
    org.quartz.SchedulerConfigException: Failure occured during job recovery. [See nested exception: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'noTXDS': org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
    ) [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.initialize(JobStoreSupport.java:429)
         at org.quartz.impl.jdbcjobstore.JobStoreCMT.initialize(JobStoreCMT.java:131)
         at com.thortech.xl.scheduler.core.quartz.XLJobStoreCTM.initialize(Unknown Source)
         at org.quartz.impl.StdSchedulerFactory.instantiate(StdSchedulerFactory.java:753)
         at org.quartz.impl.StdSchedulerFactory.getScheduler(StdSchedulerFactory.java:885)
         at com.thortech.xl.scheduler.core.quartz.QuartzSchedulerImpl.initialize(Unknown Source)
         at com.thortech.xl.scheduler.core.quartz.QuartzSchedulerImpl.<init>(Unknown Source)
         at com.thortech.xl.scheduler.core.quartz.QuartzSchedulerImpl.getSchedulerInstance(Unknown Source)
         at com.thortech.xl.scheduler.core.SchedulerFactory.getScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.startScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.init(Unknown Source)
         at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2371)
         at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4824)
         at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4748)
         at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4936)
         at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1145)
         at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:741)
         at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
         at com.evermind.server.Application.getHttpApplication(Application.java:570)
         at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1987)
         at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1906)
         at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:643)
         at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:290)
         at com.evermind.server.http.HttpServer.setSites(HttpServer.java:270)
         at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:177)
         at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2493)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1042)
         at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:131)
         at java.lang.Thread.run(Thread.java:595)
    * Nested Exception (Underlying Cause) ---------------
    org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'noTXDS': org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
    ) [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: invalid username/password; logon denied
    )]

    During oim installation datasources are created to access the database.
    So when you change the password for the database user you have to adjust the password in the datasources.

  • Querying The Hub for the external IP address withi...

    As a programming challenge I'm trying to get the dynamic, external IP address of my broadband connection.
    route -n -> returns routing information including the 192.168.1.254 gateway
    nslookup "gateway" returns:
    server: 192.168.1.254
    address: 192.168.1.254#53
    254.1.168.192.in-addr.arpa name BTHomehub.home.
    254.1.168.192.in-addr.arpa name btbroadband.home.
    254.1.168.192.in-addr.arpa name api.home.
    using nslookup api.home (or any of the others) returns:
    server: 192.168.1.254
    address: 192.168.1.254#53
    I want the external address not the internal. Can anyone help? I don't want to just use an ip finder website to get the address.
    Thank You,
    JvH

    Thx for your help. Yes, I can login (via web page) and find the hubs external IP address but wanted to do it from within a script and wondered if it was possible without having to go down that road (login credentials, accessing right page, parsing the output).
    route -n and looking for "G" under flags returns the gateway(s) and this gives me 192.168.1.254 which is the IP of the homehub, not my machine, so I'm querying the right device.
    The annoying thing is; this used to work. I was running under Ubuntu 10, upgrading to 12 and it doesn't anymore. U12 has dnsmasq server  which provides local DNS caching. I thought maybe this was the problem (it was handling the query from within the network and not asking the hub for the info) so I switched it off.
    I'm going to try and create a USB boot drive with Ubuntu 10 on it (if I can) and see if the script still works from within that.
    Finally, I'm not an expert and am happy for any useful criticism and advice. Tnx guys

  • Querying the schema for table name with column value!

    In my schema i have 500+ tables and other objects.
    i have a column with the name BO_PRODUCT_CODE.
    I wants to know in what tables the value of BO_PRODUCT_CODE='FX03'.
    i have query the user_tab_columns which gives me the result with 90 tables having the column BO_PRODUCT_CODE.
    What is query which will give me the exact number/name of the table whose column value is FX03. ie, BO_PRODUCT_CODE='FX03'.

    Hi you can use this approach:
    BEGIN
    v_str VARCHAR2(250);
    v_count NUMBER :=0;
    DECLARE
    FOR loop_tbl IN ( SELECT DISTINCT table_name FROM USER_TAB_COLUMNS
    WHERE column_name ='BO_PRODUCT_CODE' )
    LOOP
    v_str := 'SELECT COUNT(*) FROM ' || loop_tbl.table_name || ' WHERE BO_PRODUCT_CODE=||'''' ||'FX03' || '''' '
    EXECUTE IMMEDIATE v_str INTO v_count ;
    IF v_count > 0 THEN
    DBMS_OUTPUT.PUT_LINE ('Table Name :'|| loop_tbl.table_name || ' Count :'||v_count);
    END IF;
    v_count :=0;
    END LOOP;
    EXCEPTION
    WHEN others THEN
    DBMS_OUTPUT.PUT_LINE(SQLERRM);
    END;
    Please remove if any syntax error.
    Regards

  • Hi I need OID's and the MIBs for CISCO 6504 with SUP32??

    Hi I need oids and the related MIBs for cisco 6504 with supervisor 32:
    Fanstatus notification, Powerstatus notification, Interface up/down, BGP notifications like peer down bgp established, ospf notifications
    Thanks,
    Anudeep

    Fan status
    CISCO-ENV-MON mib
    "ciscoEnvMonFanStatusEntry"          "1.3.6.1.4.1.9.9.13.1.4.1"
    "ciscoEnvMonFanStatusIndex"          "1.3.6.1.4.1.9.9.13.1.4.1.1"
    "ciscoEnvMonFanStatusDescr"          "1.3.6.1.4.1.9.9.13.1.4.1.2"
    Power
    ciscoEnvMonSupply
    S
    tatusEntry"          "1.3.6.1.4.1.9.9.13.1.5.1"
    "ciscoEnvMonSupplyStatusIndex"          "1.3.6.1.4.1.9.9.13.1.5.1.1"
    "ciscoEnvMonSupplyStatusDescr"          "1.3.6.1.4.1.9.9.13.1.5.1.2"
    "ciscoEnvMonSupplyState"          "1.3.6.1.4.1.9.9.13.1.5.1.3"
    "ciscoEnvMonSupplySource"          "1.3.6.1.4.1.9.9.13.1.5.1.4"
    Interface
    IF-MIB
    ifAdminStatus  1.3.6.1.2.1.2.2.1.7
    ifOperStatus   1.3.6.1.2.1.2.2.1.8
    BGP
    BGP4-MIB
    for the rest i will leave it to you to find the exact OIDs
    use this link to find other mibs that may interest you
    http://tools.cisco.com/Support/SNMP/do/BrowseOID.do?objectInput=BGP&translate=Translate&submitValue=SUBMIT&submitClicked=true

  • Need suggestion for a database connection issue in an EJB Application

    Hi Friends,
    I am facing some serious problem in my EJB application. Some times, my application is waiting for unknown reason while it connects to database as executing a stored procedure to get and assign a unique number to a transaction.
    This stored procedure is used to get a unique number from database and update the database with the new unique number which is incremented by previous number.
    During this waiting time, if any other transaction hits my application, then my application assigning same unique number to these 2 transactions.
    But It is not happening always. It is happening very less number of times. What should I take care of the code to not happen this? Can I implement any synchronization kind of thing here?
    If I implement synchronization kind of thing, If the first transaction gets the lock and waits for some time, then I think it will effect for subsequent transactions. Could You please suggest me on this issue?
    Thanks in Advance to All.

    Here is my datasources.xml :
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
    <beans>     
         <bean id="myDataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
              <property name="jndiName" value="jdbc/myDS"/>
              <property name="resourceRef" value="false"/>
         </bean>
    </beans>

  • Problem in SQL Server 2000 Driver for Java Database Connectivity

    Hi,
    I have problem with MS SQL 2000 JDBC driver. I am using Type-4 driver for my application. I can able to connect through DSN. If I use Type-4 Driver to connect database means it gives the following exception.
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.
         at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
         at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
         at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSConnection.<init>(Unknown Source)
         at com.microsoft.jdbc.sqlserver.SQLServerImplConnection.open(Unknown Source)
         at com.microsoft.jdbc.base.BaseConnection.getNewImplConnection(Unknown Source)
         at com.microsoft.jdbc.base.BaseConnection.open(Unknown Source)
         at com.microsoft.jdbc.base.BaseDriver.connect(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at test.TestDB.main(TestDB.java:17)
    My Java Code :
    String driver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    Class.forName(driver);
    Connection con = DriverManager.getConnection("jdbc:microsoft:sqlserver://192.168.48.90:1433;User=sa;Password=sa;DatabaseName=GWCANADA");
    Statement st = con.createStatement();
    ResultSet rs = st.executeQuery("select * from emp");Do we have any other jdbc driver to connect MS SQL 2000 aprt from the Microsoft JDBC driver.
    Plese help me to resolve this problem
    Thanks
    ---Suresh

    Same problem is here: http://forum.java.sun.com/thread.jspa?threadID=419214&tstart=135
    Check that your server is running (telnet <hostname> 1433)
    --Xapp                                                                                                                                                                                                                                                                                                                   

  • Best practice for making database connection to Forms 10 apps?

    Hi
    To upgrade our Forms applications we are moving from version 3 to 10.
    Our old system runs Forms applications and the connection to the database is based on the individual user. This means that any tables or views used require that the user has specific access granted to them. We have a bespoke system to manage this which generates scripts (GRANT statements) based on lists of tables and users and their appropriate access.
    I have concerns that managing the table access for thousands of individual users in the Forms 10 environment is going to be technically difficult, especially with RADs to consider. Is it feasible to generate and frequently refresh RAD scripts to maintain the current list of users and their permissions?
    I am trying to decide if it is better to:
    A) Connect with the same database user (such as "APP_USER") which has access to everything
    or
    B) Connect with individual usernames/passwords
    Currently, the individual user database passwords are generated weekly and users have means to obtain them (once signed in) rather than setting and remembering them. Some views refer to the Oracle system parameter "USER" to decide what data is returned so this functionality would need to be preserved.
    Any help is greatly appreciated, especially if you can tell me if option A or B is how you connect at your site.

    Thanks for the advice so far.
    It would appear that connecting with individual usernames is not a fundamental error, which I was concerned about.
    Will it still be necessary to create and refresh RAD scripts, or is this only an issue when using OID? We have OID here already because we have a website using Oracle Portal. The sign-on process for this connects to Active Directory for authentication.
    I do not like the idea of having to schedule a refresh of RAD scripts, perhaps 3 times a day, just to keep it current. I do not think the RADs are expected to change as frequently as this, but perhaps other forum members have experience of this?

  • SAP Dispatcher querying the ICM for groups repeatedly

    Time                    Remote Host          Local Host     L.Port     Type     slot/conn/request
    [05/Sep/2011:17:46:51 +0530]     Webdispatcher_IP-     ERP_Server     8000     ABAP:0     1/59/1               GET /sap/public/info HTTP/1.1     
    [05/Sep/2011:17:46:56 +0530]     Webdispatcher_IP-     ERP_Server     8000     ABAP:0     3/60/1               GET /sap/public/icf_info/icr_groups HTTP/1.0     
    [05/Sep/2011:17:46:56 +0530]     Webdispatcher_IP-     ERP_Server     8000     ABAP:0     3/61/1               GET /sap/public/icf_info/icr_urlprefix HTTP/1.0     
    [05/Sep/2011:17:46:56 +0530]     Webdispatcher_IP-     ERP_Server     8000     ABAP:0     3/62/1               GET /sap/public/icman/ping HTTP/1.0     
    [05/Sep/2011:17:47:30 +0530]     Webdispatcher_IP-     ERP_Server     8000     ABAP:0     3/64/1               GET /sap/public/icf_info/icr_groups HTTP/1.0     
    [05/Sep/2011:17:47:30 +0530]     Webdispatcher_IP-     ERP_Server     8000     ABAP:0     3/65/1               GET /sap/public/icf_info/icr_urlprefix HTTP/1.0     
    [05/Sep/2011:17:47:30 +0530]     Webdispatcher_IP-     ERP_Server     8000     ABAP:0     3/66/1               GET /sap/public/icman/ping HTTP/1.0
    [05/Sep/2011:17:47:56 +0530]     Webdispatcher_IP-     ERP_Server     8000     ABAP:0     1/68/1               GET /sap/public/icf_info/icr_groups HTTP/1.0
    ... same pattern follows
    I have a ERP6 server hosting some web applications and one web dispatcher based on nw 7.3. All my access is working fine but I have a query on the following logs that I see on the ERP ICM. The project is in the initial stages and we do not have any users configured for ICM. However, immediately after I start the webdispatcher, the ICM logs start populating and I can see repeated requests made to the services icr_groups icr_url.
    1. I understand that dispatcher is trying to get some information (prob logon groups related for load balancing) but why is it querying so frequently and filling up my bandwidth ? or is it something else ?
    2. I had accessed sap/public/ping only once from my browser. Why is it querying repeatedly ? is it trying to update the cache ? How can we stop this as we'll have a number of services. Later, I'll probably have to connect this dispatcher to three more systems and distribute requests based on URL. This will cause an increased load for this traffic. Can we make this efficient.
    3. Lastly, is there any way I can block HTTP1.0 connections and allow only HTTP1.1 connections from dispatcher ?
    Thanks

    Can anyone help on this ? Does your webdispatcher access icr_groups and logon_groups that frequently ? adding to the load?

Maybe you are looking for

  • General Error Message When Installing Flash Player on Mac

    I have a new MacBook Pro.  I have OS 10.8.2.   I cannot get FlashPlayer to download.  I have tried uninstalling and reinstalling Adobe Flash Player 11 from the Adobe website.  Doesn't work.  Every time I try to download, I get an error message that s

  • Difference in UCCX historical reports

    'Agent summary report' is showing average talk time "00:02:45" and when I manually calcuate the average talk time from the report "Agent state detail report" (by adding the total talk time and dividing it with total number of calls) it gives me avera

  • HP Photosmart 5510 B111a - iMac can't locate printer on network

    When I first bought this printer I set everything up just fine and everything worked great. I recently moved, and for some reason when I hooked it back up, it will not print. I am able to go thru the setup assistant with the printer wired to the iMac

  • Firefox 34 crashes on startup (in safe mode too)

    Ubuntu 14.10, "Mozilla Firefox 34.0". It has started crashing on it's own without any new tabs or sites being opened. It doesn't even run in "safe-mode". When I run FF, it shows the main window and if try to restore my tabs, it crashes. Even without

  • TextFlowUtil.importFromString Problems

    Hello, With the Halo TextArea, and going back a long time, there was always a nice, simple htmlText property that at least provided some basic HTML formatting automatically. This Spark TextArea and associated TextFlow and TextFlowUtil.importFromStrin