Gathing syslogs from HP ProLiant BL p-Class F-GbE2 Interconnect

Hi,
We have decided to configure our HP Blades to send syslogs to our Ciscoworks LMS 3.0.1
The Blades are: HP ProLiant BL p-Class F-GbE2 Interconnect Blades. I have setup the syslogs to point to the ip address of the Ciscowork server.
How can I get Ciscowork to discover these blades once I setup the syslogs on them to point to the Ciscoworks server?
Thanks
Anthony

LMS only supports the blade switches running IOS. To add them to LMS, simply configure them with SNMP, and add them to DCR under Common Services > Device and Credentials > Device Management.

Similar Messages

  • Values from JSP to Struts Action Class

    Dear All,
    Am working on a small struts project, i want to get values from JSP in the Action class, i tried with sending variables using request through URL, it works fine, any other way is there to send the values from JSP to action class. Am not having any input fields in the JSP.I have links.
    Thanks,
    vyrav.

    I have a dispatch action for that am calling the action like this viewfiles.do?parameter=edit, and i have to send a variable ID from the same page, so am doing like this through java script, viewfiles.do?parameter=edit&id=10. Am able to get the id in the dispatch action edit, but when i start tomcat with security manager its not calling the action itself and its giving accesscontrol exception, but when i directly type viewfiles.do in URL its calling the action.
    I dont know wats the problem, tomcat security manager not allowing this. Please help me.
    Thanks,
    vyrav.

  • Reference EJB from servlet's action/helper classes

    Hello
    How to make a reference to stateless session bean from one of the helper classes of a servlet WITHOUT using any of these:
    * dependency injection (like @EJB) - I think this is not supported in this kind of class, EJB references can be injected only to servlets themselves or some other things (but not objects of classes "accompanying" a servlet)
    * home or local home interfaces (I would like to avoid writing them)
    * using mappedName (either in @Stateless or in ejb-jar) - since meaning of this is application-server dependent and thus not portable.
    By a "class accompanying a servlet" / "helper class" I mean utility or action classes, like MyActionClass, which would be instantiated and then used by a aforementioned servlet.
    Thanks.

    The EJB dependency must be looked up via the java:comp/env namespace since as you point out
    Java EE 5 environment annotations are not supported on POJOs. However, the dependency itself
    can either be defined using @EJB on some other managed class in the .war or within the
    web.xml. We have an entry in our EJB FAQ that has the details :
    https://glassfish.dev.java.net/javaee5/ejb/EJB_FAQ.html#POJOLocalEJB
    Also, whenever the client component resides in the same application as the target EJB (which is
    required for Local access but not for Remote access) there is no need to use mappedName to
    resolve the EJB dependency. It is either automatically resolved if the business interface type of
    the EJB dependency is only exposed by a single EJB in the application, OR the beanName()
    / ejb-link attributes can be used to unambiguously identify the target EJB using ejb-name.
    You can find more about this in the FAQ as well.

  • Get days from the java.util.date class

    Does anyone know how to get the days from the java.util.date
    class. I'm trying to subtract two dates to get the total days between
    the two dates. Any help would be appriciated
    Rob

    If you use the getTime() method, you get the date as a number of milliseconds since a predefined time. You can do arithmetic on that number, such as subtracting two of them to get the number of milliseconds between two Dates, and so on.

  • Call a portal component from a Command IU Java Class

    Hello,
    Please, how can I do to call a portal component from my Command IU Java Class?
    Thanks & Regards,
    Hassan

    Hi Hassan,
    a portal component can be called directly through URL.
    The general syntax to call the portal component (iView, page) is as follows:
    <http/https>://<server>:<port>/irj/servlet/prt/portal/prtroot/<pcd_path_of_iview_or_page>
    Replace all ":" in the pcd path by "!3a". Also replace all "/" by "!2f" in the pcd path in the URL.
    Hope this helps.
    Best regards,
    Denis

  • Getting syslog from cisco 5585 how to segerate from traffic logs?

    Support ,
    I need some help, I want syslog from cisco asa 5585 to come to siem , but the networking guy says he can configure cisco asa 5585 to send both traffic and syslog together; there is no segerration; I don't want this to happen im just interested in getting the syslog events. In almost every firewall e.g juniper to send only traffic logs.
    If its true what the networking guy says, its a very poor desgin where there is high coupling between processes;if they are dependent and one is needed to get the other what about if one thing fails?
    I'm the sec guy; and I don't have the config guide about how cisco asa works at that level; i will appreciate if someone can verify or better suggest me a workaround if there exists to this issue.
    Thanks.

    Hi,
    So you have been told that some other traffic would be also sent through the interface? That should not be the case. I dont know why the ASA would need to send any traffic to your server other than UDP/514 port traffic. If I remember correctly that is the UDP ports used.
    If I would have to guess there might be a little missunderstanding between you. They might mean that they are already sending logs to some Syslos Server and the log level has been set so that the logs include all logs of connection forming through the ASA and therefore would send you very specific logs about the ASA.
    The logging level set for logs that are sent to Syslog server applies to every target Syslog server. I dont think you can even specify different logging levels to different servers. But I might be mistaken.
    But I am not sure what the situation is. Sounds a bit wierd.
    We use a dedicated interface on ASAs to send logs to Syslog server. We might also use link for some remote management connections and monitoring.
    - Jouni

  • Exporting syslogs from CiscoWorks VMS server

    In Short. I want to export the syslogs from the cw2k-vms server into a database we can run some queries on. We are running this on a Win2k server so i was thinking nightly running a perl script that stops the CFM syslog service, copies a days worth of logs and then restarts the service. Does anyone know of a Cisco Supported way to do this like some sort of command line utility like cwexport? Thanks.
    Randy Moore

    There isn't any Cisco supported script/tool for this currently

  • Write to syslog from pl/sql

    Hello Gurus !
    I would like to write to syslog from pl/sql without 3rd party tools.
    Do you have an idea how to achieve this ?
    Thank you for your answer !
    Ros

    External procedure interface can be used. I have not implemented the openlog() and closelog() calls (got a weird problem with that). The syslog() call works fine on its own though.
    o/s: Kubuntu 11.10
    Oracle XE 10.2.0.1
    // call:
    //    void syslog(int priority, const char *format, ...);
    // library:
    //    libc
    SQL> create or replace library libc as
      2          '/lib/i386-linux-gnu/libc.so.6'
      3  /
    Library created.
    SQL>
    SQL> create or replace procedure WriteSysLog( priority binary_integer, message varchar2 ) is
      2          external
      3          library libc
      4          name "syslog"
      5          language C
      6          calling standard C
      7          parameters(
      8                  priority int,
      9                  message string
    10          );
    11  /
    Procedure created.
    SQL>
    SQL> declare
      2          LOG_INFO        constant binary_integer := 6;
      3  begin
      4          WriteSysLog( LOG_INFO, 'All your syslogs messages are belong to us.' );
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SQL> And in +/var/log/syslog+ :
    Feb  2 00:00:00 hostname extprocPLSExtProc: All your syslogs messages are belong to us.
    ..Note you need a properly configured external procedure (EXTPROC) service in the local Listener, and a valid TNS alias for it in the local tnsnames.ora file. (local, as in local on the Oracle server where the PL/SQL code is executed)

  • MARS not understand syslog from ACS SW 4.2

    Hi!
    I have MARS ver 6.0.1 and ACS SW 4.2. Im configure ACS to send syslog to MARS (new mode without pnagent).
    MARS recive syslogs from ACS but "Unknow Event Type" in Report and Activity page (see attachment).

    Your attachment is not uploaded properly, but I belive you are hitting bug ID CSCsu78913.
    Upgrade to 6.0.2 for the fix.
    RJ

  • Returning a HashMap K, M from a method of a class typed M

    So, this is what I have. I have a class parameterized for a bean type of a collection it receives, and in a method of the class, I need (would like) to return a HashMap typed as <K, M> as in:
    public class MyClass<M> {
       private Collection<M> beanList;
       public HashMap<K, M> getMap(  /* what do I do here */ );
    }I tried to cheat from looking at the Collections.sort method, knowing it uses the List type in its return type as in:
    public static <T extends Comparable<? super T>> void sort(List<T> list)So, I am trying:
    public HashMap<K, M> getMap(Class<K> keyType)But, it is telling me I need to create class K.
    So... how does the Collections.sort method get away with it and I can't????
    I suppose I could write the method as:
    public HashMap<Object, M> getMap()but became somewhat challenged by my first guess.
    Any ideas... or just go with the HashMap with the untyped key?

    ejp wrote:
    provided K is inferable from the arguments.Or from the assignment context:
    Set<String> empty = Collections.emptySet();
    Otherwise you have to parameterise the class on <K, M>.You may also specifically provide K when you use the method if the context doesn't give the compiler enough information or if you want to override it.
    Example:
    Set<Object> singleton1 = Collections.singleton("Hello"); //error
    Set<Object> singleton2 = Collections.<Object>singleton("Hello"); //fineEdited by: endasil on 14-May-2010 4:13 PM

  • Passing values from a JSP to Action class

    Hi,
    I have one JSP in this I have two select boxes.
    The first select box is populated with default values.
    From the first select box I am selecting the value and moving to the other select box using java script.
    Now the value in the second select box has to be submitted alongwith some other values which I am getting.
    These values are to be submitted to a Action class and further to the form bean using struts.
    In the form tag in JSP I am calling the struts action class.
    The issue here is,I am able to get other values except the values in the second select box.
    I am using simple JSP page to get form values and submitting.
    I am not using struts tlds because of project constraints.
    Please advise on how to pass these values.
    Regards,
    Ram

    If the value from the select box isn't submitted, then it's not inside the form. Check the HTML output of your JSP to debug this problem.

  • How can i gather data from jtable!

    hi!
    in fact i am trying to gather all the rowdata from my table sothat i can insert thel into my databse !
    could you plkease tell me how to deal with this?
    thanks

    As a simple case, let's assume that your JTable's column header names are in the same order as the columns in the database table to which you want to insert the JTable data. Also, let's assume all your table values are Strings.
    You'll need to do something like this (sorry if there are syntax errors - I'm not coding in an IDE...!):
      String tempStr = "insert into table_name values (";
      StringBuffer sb = null;
      Statement stat = dbConnection.createStatement();
      for (int i=0; i<tableModel.getRowCount(); i++) {
        sb = new StringBuffer(tempStr);
        for (int j=0; j<tableModel.getColumnCount()-1; j++) {
          sb.concat("'").concat(tableModel.getValueAt(i, j)).concat("', ");
        // for the last column
        sb.concat("'").concat(tableModel.getValueAt(i, tableModel.getColumnCount()-1)).concat(");");
        // your sb object now has the entire insert statement to put in the database
        stat.executeQuery(sb.toString()) ;
      }If the JTable columns are not in the same order, then you'll need to modify the above code to build your sql statement with the explicit column order you need.
    I hope this helps.
    Cheers!

  • Calling a web service from a stand alone java class

    I need to invoke a web service from stand alone java class- Please let me know how to acheive this.
    Thanks

    Hi jazz123,
    There's an example in the [*Java Web Services Tutorial*|http://java.sun.com/webservices/docs/2.0/tutorial/doc/] : see Chapter 1: Building Web Services with JAX-WS - A Simple JAX-WS Client.

  • Is there any way to prevent web.xml from any change like java class?

    hi all,
    Is there any way to prevent web.xml from any change after making EAR(WAR)?
    One can easily make a change in web.xml and redeploy the application to get the result. Now we want to restrict the web.xml as java class for any change after making EAR(or WAR).
    Could some one help me to do this?
    thanks,
    dinesh

    hi,
    Not at development level. We want it after deploying the application on server .
    We want to create it (web.xml) at tomcat startup (or in any other web/app server ) before loading any context.
    Is there any way to run a simple java class(not servlet) on tomcat startup(before initializing the contexts)?
    Message was edited by:
    DP_java
    Message was edited by:
    DP_java

  • What types of problems stem from high number of loaded classes?

    Currently we are in the process of testing our code for long-ish periods of time, between 4 hours and 24 hours+ non stop. The code is not interactive/user based. I first noticed that our garbage collection times were very high (about 15-25% of our total processing time). I then looked at loaded classes and there is a pretty steady rise over team of loaded classes. At the time of start up it is around 6-7k. After appproximately 4 hours its up around 25k loaded classes. Only 35 or so classes have been unloaded over this time. I'm wondering if the high number of loaded classes occurs because objects aren't fully dereferenced but then when a new object is created it reloads the class. My knowledge of class loading is fairly limited. Any help would be appreciated. Also, if you need more info let me know.
    Heap Size: ~2GB
    CMSPermGenSweepingEnabled
    CMSClassUnloadingEnabled

    Take a look at this example and the output:
    public class Example {
          * @param args
         public static void main(String[] args) {
              StaticBlocks a = new StaticBlocks();
              StaticBlocks b = new StaticBlocks();
              a = new StaticBlocks();
    class StaticBlocks {
         static {
              System.out.println("A static init block. Only happens when class is first loaded.");
              System.out.println("\tInstance init block. Happens every time a class is instantiated.");
         StaticBlocks(){
              System.out.println("\tYou instantiated a class!");
    }Output:
    A static init block. Only happens when class is first loaded.
         Instance init block. Happens every time a class is instantiated.
         You instantiated a class!
         Instance init block. Happens every time a class is instantiated.
         You instantiated a class!
         Instance init block. Happens every time a class is instantiated.
         You instantiated a class!I'm really not sure where to go from here... hopefully someone else that knows the JVM better can provide some insight.
    Take a look at this link. It gives some details on class loading... might help you out a little.
    [http://onjava.com/pub/a/onjava/2005/01/26/classloading.html?page=1|http://onjava.com/pub/a/onjava/2005/01/26/classloading.html?page=1]
    Edited by: mikeyfreake on Jul 29, 2009 9:40 AM

Maybe you are looking for

  • IPhone 5s is stuck in wiggle mode

    This just started happening today. I tap and hold an app to move it. All the icons wiggle but I can't do anything with them, delete or move. After a few minutes the phone goes to the black screen with the apple icon, then to the logon screen. this in

  • Music sync to New iPod

    Ok, so I replaced my 5g iPod with the Classic, now I need to get the iTunes I had set up with the 5g to work with the classic. Is there a way I can just transfer everything to the new iPod, or do I have to start all over again?

  • Infospoke logical file name question

    Experts, We have what seems to be an anomaly that we need to understand. On the application server, when we extract our infospokes, two files are generated , a schema and a data file. the naming convention is like zxxx.infoprovider_date eg. zxxx.info

  • Why does my Mac auto-select the next few words or even sentences after i select and delete a batch of text?

    For instance, if i were to select the next seven words and then over-write or delete them, the next few words would automatically become selected and, because i'm already typing, i would over-write them as well.  The more words that i initially selec

  • Need a Query for the following Output

    I have a table name Table1. some of the data are like the following EmpCode    ProductCode    Quantity 20006         IMPLSA                  5 20006         LACJDT                 10 20006         LIVLSU                 15 20006         PEPPSU