Websphere server to sap

hi guys,
  we are using websphere server can i connect to sap?
  if yes means, plz send me full details......
  step by step guide i want bcoz i am new to sap connection.........
thanks,
tony

hi guys,
  we are using websphere server can i connect to sap?
  if yes means, plz send me full details......
  step by step guide i want bcoz i am new to sap connection.........
thanks,
tony

Similar Messages

  • RFC in IBM Websphere server

    Hi all,
    I want to run a Java application that calls SAP RFC in an IBM Websphere server. Right now its working fine in Tomcat server.(I have installed JCO for Tomacat).
    What all are the steps (intallations and configurations) I need to do in Websphere server.
    I came across terms like SAPODA and JCO. Is SAP ODA neccessary??? or JCO installation alone will work?
    Thanks in advance
    George

    u need only sapjco.jar file and dll files ..............
    u put sapjco.jar file in ibm/sdp/6.0/portal/eclipse/plugins/eis.webtools.sap.6.0_0
    here u copy that file.....
    go to dynamic webproject, right click>properties>java build path-->add external
    jars>add that sapjco.jar file  and click okfinish..
    now u write ur program..........
    it works fine...........

  • Copy file from FTP server to sap application server

    Hi,
    I am able to copy a particular file from FTP server to sap application server using FTP_CONNECT, FTP_COMMAND and FTP_DISCONNECT. But here my problem is, it copies into default application server path(DIR_HIOME). I want to copy into specified folder in the application server. How can I specify the required destination path.
    Can you please suggest how to achieve this.
    Thanks,
    Shiva Kankanala

    try something like this:
    data: user(30) type c value 'ftpuser', "ftp username
                  pwd(30) type c value 'ftppass', "ftp password
                  host(64) type c value '255.255.255.255', "ftp server IP
                  cmd1(80) type c value 'lcd /dump', "location on app server where you want to copy the file
                  cmd2(80) type c value 'get', "specifies you are going to get the file from ftp server
                  dest like rfcdes-rfcdest value 'SAPFTPA',
                  file(15) type c value 'file.txt'. "specifies file that you want to get from ftp server
    data: hdl type i,
            key type i value 26101957,
            slen type i.
    slen = strlen( pwd ).
    call function 'HTTP_SCRAMBLE'
        EXPORTING
          source      = pwd
          sourcelen   = slen
          key         = key
        IMPORTING
          destination = pwd.
    call function 'FTP_CONNECT'
        EXPORTING
          user            = user
          password        = pwd
          host            = host
          rfc_destination = dest
        IMPORTING
          handle          = hdl.
    call function 'FTP_COMMAND'
        EXPORTING
          handle        = hdl
          command       = cmd1
        TABLES
          data          = result
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      loop at result.
        write at / result-line.
      endloop.
    CONCATENATE cmd2 file INTO cmd2 SEPARATED BY SPACE.
    call function 'FTP_COMMAND'
          EXPORTING
            handle        = hdl
            command       = cmd2
          TABLES
            data          = result
          EXCEPTIONS
            command_error = 1
            tcpip_error   = 2.
        loop at result.
          write at / result-line.
        endloop.
        refresh result.

  • Fetching of multiple files from Application Server into SAP Program

    Hi All,
    I have a issue related <b>Fetching of multiple files from Application Server into SAP Program</b>.
    Actual issue is as below.
    In the <b>selection screen</b> of <b>my program</b> i will give <b>Application Server Path</b> as :
    <b>/PW/DATA/SAP/D1S/PP/DOWN/eppi0720*</b>
    Then the based on above input it should pick up all the files that are matching <b>eppi0720*</b> criteria.
    Suppose if i am having <b>5</b> files with above scenario, i have to fetch all those <b>5</b> files at a time and place in my SAP Program.
    All those 5 file's data should come into SAP at a time.
    Can anybody tell me how can we solve above issue.
    If any body has come across same issue please provide me with solution.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    If you want to get around the authorization check, you can do something like this.
    report zrich_0001 .
    parameters: p_path type epsf-epsdirnam
                      default '/usr/sap/TST/SYS/global'.
    parameters: p_file type epsf-epsfilnam default 'CO*'.
    start-of-selection.
    perform get_file_list.
    *       FORM get_file_list                                            *
    form get_file_list.
      types: name_of_dir(1024)        type c,
             name_of_file(260)        type c,
             name_of_path(1285)       type c.
      data: begin of file_list occurs 100,
              dirname     type name_of_dir,  " name of directory. (possibly
                                             " truncated.)
              name        type name_of_file, " name of entry. (possibly
                                             " truncated.)
              type(10)    type c,            " type of entry.
              len(8)      type p,            " length in bytes.
              owner(8)    type c,            " owner of the entry.
            mtime(6)    type p, " last modification date, seconds since 1970
              mode(9)     type c, " like "rwx-r-x--x": protection mode.
              useable(1)  type c,
              subrc(4)    type c,
              errno(3)    type c,
              errmsg(40)  type c,
              mod_date    type d,
              mod_time(8) type c,            " hh:mm:ss
              seen(1)     type c,
              changed(1)  type c,
            end of file_list.
      data: begin of file,
              dirname     type name_of_dir,  " name of directory. (possibly
                                             " truncated.)
              name        type name_of_file, " name of entry. (possibly
                                             " truncated.)
              type(10)    type c,            " type of entry.
              len(8)      type p,            " length in bytes.
              owner(8)    type c,            " owner of the entry.
            mtime(6)    type p, " last modification date, seconds since 1970
              mode(9)     type c, " like "rwx-r-x--x": protection mode.
              useable(1)  type c,
              subrc(4)    type c,
              errno(3)    type c,
              errmsg(40)  type c,
              mod_date    type d,
              mod_time(8) type c,            " hh:mm:ss
              seen(1)     type c,
              changed(1)  type c,
            end of file.
      call 'C_DIR_READ_FINISH'             " just to be sure
           id 'ERRNO'  field file_list-errno
           id 'ERRMSG' field file_list-errmsg.
      call 'C_DIR_READ_START' id 'DIR'    field p_path
                              id 'FILE'   field p_file
                              id 'ERRNO'  field file-errno
                              id 'ERRMSG' field file-errmsg.
      if sy-subrc <> 0.
        sy-subrc = 4.
        exit.
      endif.
    * Read the file list and add to internal table.
      do.
        clear file.
        call 'C_DIR_READ_NEXT'
          id 'TYPE'   field file-type
          id 'NAME'   field file-name
          id 'LEN'    field file-len
          id 'OWNER'  field file-owner
          id 'MTIME'  field file-mtime
          id 'MODE'   field file-mode
          id 'ERRNO'  field file-errno
          id 'ERRMSG' field file-errmsg.
        if sy-subrc =  1.
          exit.
        endif.
        append file to file_list.
      enddo.
    * Write out the file list
      loop at file_list.
        write:/ file_list-name.
      endloop.
    endform.
    Regards,
    Rich Heilman

  • Reading of File from legacy system into SAP Application Server using SAP XI

    Hi All,
      I have a file in <b>Legacy System with Exchange rates information data</b> i have to read that file using SAP XI process and put that file in SAP Application Server in SAP Specific Format and latter i have to use program RFTBFF00 to upload the file in the Application Server into SAP Tables.
      Can anybody tell me how can i do this with some example of same scenario.
      It would be better if anybody provides code example as i am new to SAP XI.
    Thanks in advance.
    Warm Regards,
    Rayeez.

    Hi Shaik,
    You need the access to the file system of ur legacy application and then you can follow this link for the required ifnormation
    File & Header
    Regards
    Vishnu

  • Query on integrating windows file server into SAP KM using WEBDAV

    hi
    I have sucessfully integrated windows file server into SAP KM using WEBDAV. I have query in it regarding the possible validation against the portal Database user. Can we configure such that the user comparison happens for LDAP as well as database user. Have anyone configured such a scenario?
    Regards,
    Ganesh N

    Hi Ganesh,
    this should work in principle.
    However you would need a user in Active Directory for each user in the portal database that should connect to the file server if you are using the SSO22KerbMap Module as I assume.
    In my whitepaper I have mentioned this for the internal user index_service that does only exist in the portal database.
    Best regards,
    André

  • Picking a IDOC Flat File stored in SAP R/3 Application Server by SAP PI

    Hi,
    Can SAP PI pickup a IDOC Flat File stored in SAP R/3 Application Server Directory and send it back as an Inbound IDOC.
    Scenario:
    We have a data in the EXCEL Sheet, which will be used to a fill an IDOC and the IDOC will be just save in the SAP R/3 Application Server Directory, but can not be triggered due to its peculiar behavior. Afterwards, SAP PI should pole the SAP R/3 and pick up that IDOC Flat File from the R/3 Application Server and send it back to the SAP R/3 as an Inbound IDOC.
    For Ref: IDOC does not have a Outbound Process Code, thus can not be triggered and send to SAP PI. It is always used as a Inbound IDOC in SAP R/3 system.
    Regards,
    Saurabh

    SAP PI should pole the SAP R/3 and pick up that IDOC Flat File from the R/3 Application Server
    If SAP PI = 7.11 --> /people/william.li/blog/2009/04/01/how-to-use-user-module-for-conversion-of-idoc-messages-between-flat-and-xml-formats
    send it back to the SAP R/3 as an Inbound IDOC
    why to send  some information again into R3 which it already has? cant some internal code in R3 read the info from excel and then update the IDOC directly?

  • Problems concerning "How to integrate MS Exchange Server into SAP EP"

    Hi,
    I want to realize the scenario in "How to integrate Microsoft Exchange Server into SAP Enterprise Portal" from the Microsoft-Website.
    We´re using SAP NetWeaver 04, SAP NetWeaver Portal 6.0.14.0.0 and KMC 6.0.14.2.0 and Microsoft Exchange Server 2000 SP3.
    I have created (as described in the document) the HTTP-System and a WebDAV RM. But the repository doesn´t appeaer in the KM-Content-iView.
    I checked the Component Monitor and got this error-message for "servers" (it was marked with a red square)
    last-error-3   2006-05-16T13:12:11Z: PROPFIND /public: 401 Access Denied
    last-error-4   2006-05-16T13:15:04Z: PROPFIND /public: 401 Access Denied
    last-error-6   2006-05-16T13:26:35Z: PROPFIND /public: 401 Access Denied
    errors   8
    last-error-2   2006-05-16T13:12:10Z: PROPFIND /public: 401 Access Denied
    requests   8
    last-error-7   2006-05-16T13:26:35Z: PROPFIND /public: 401 Access Denied
    bytes-per-second   0
    successes   0
    response-average   194
    last-error-1   2006-05-16T13:11:55Z: PROPFIND /public: 401 Access Denied
    last-error-0   2006-05-16T13:11:54Z: PROPFIND /public: 401 Access Denied
    last-error-5   2006-05-16T13:15:05Z: PROPFIND /public: 401 Access Denied
    failures   0
    Any idea, what´s wrong? And how to solve the problem.
    Thanks for help,
    Sven
    Message was edited by: Sven Keller

    Hi James,
    How can I check the KM ACLs/Security Zones?
    I had a look on "System Administration - System Configuration - Knowledge Management - Content Management - Repository Managers - Security Manager - WebDAV ACL Security Manager".
    There was just "WDAclSecurityManager" and the Permission Rendering Class was "com.sapportals.wcm.control.acl.ResourcePermissionControl".
    Or where do I have to look for the ACL?

  • How to connect Client to server in SAP B1 8.8

    Hi All,
    how i can connect client with  other server in sap B1 8.8
    Plaese tell me the way
    Thanks

    You  may check these threads:
    Re: XL Reporter and SQLEXPRESS: unable to connect to XL Reporter
    Re: 8.8 Annoying licence-server switching
    Thanks,
    Gordon

  • Change server in SAP B1 8.8

    Hi Experts,
    I have installed 2 server at my client place, 1st one is Live server and 2nd one is test server.
    I am using client on my laptop and if i want to change the server, could not able to find change server button on change company form, earlier it was available in SAP B1  2007.
    Is there any other option to change the server in SAP B1 8.8
    Thanks in advance,
    Regards
    Kamlesh Vagal

    >
    senthilnathan murugesan wrote:
    > Hi ,
    >
    > You Just Dis Connect Your Test Server from  LAN.
    >
    > And Open Your SAP Business one  8.8 Client.
    >
    > This Time It Will asks for License server Name.
    >
    > Here You can give your Live Server Name!
    >
    > Hope This one  Would Helps You.
    >
    >
    > Regards,
    >
    > M.Senthilnathan
    It worked thank you
    Edited by: Marc Roussel on Aug 4, 2010 2:51 PM

  • Fetch the data from the tables in the SQL 2005 server to sap R/3.

    Hi Experts,
    We need to fetch the data from the tables in the SQL 2005 server to sap R/3.
    Please explain which will be the best approach to fetch the same and how to do it. Sample program can greatly help.
    << Please do not offer points >>
    Regards,
    Shobana K
    Edited by: Rob Burbank on Sep 21, 2010 2:36 PM

    Hi,
    Try NATIVE SQL statements in your abap code otherwise you can try to establish jdbc connection from ABAP program.
    search in SDN for samples!
    Suresh

  • PDF file transfer from File server into SAP

    Hi,
    I need to get the PDF file which exists in the File server into SAP using XI in any format so that I can convert into required form in SAP but the file exists in PDF format in File server or any method other than XI .Is it possible to do it through XI if so please explain me the procedure.
    Answers will be appreciated with points.
    Thanks,
    Ramesh.

    Hi Ramesh,
        In addition to above reply, also go through these blogs whcuh also talk about ADF Conversion:
    <a href="/people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield:///people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield
    <a href="/people/sap.user72/blog/2005/07/27/xi-generate-pdf-file-out-of-file-adapter:///people/sap.user72/blog/2005/07/27/xi-generate-pdf-file-out-of-file-adapter
    Regards,
    Subhasha Ranjan

  • Problem starting websphere server 6.0 with Eclipse.

    Hi Frndz,
    I'm trying to start WAS6 server from Eclipse IDE view but I get the exception DescriptorParseException with the XML file com/ibm/ws/management/descriptor/xml/JVM.xml. On the other hand, I can start without any problem my WAS6 server outside Eclipse.
    I would really appreciate any help on this.
    Thanks in advance.
    ************ Start Display Current Environment ************
    Host Operating System is Windows XP, version 5.1
    Java version = 1.5.0_05, Java Compiler = null, Java VM name = Java HotSpot(TM) Client VM
    was.install.root = C:/IBM/WebSphere/AppServer
    user.install.root = C:/IBM/WebSphere/AppServer/profiles/AppSrv01
    Java Home = C:\Program Files\Java\jdk1.5.0_05\jre
    ws.ext.dirs = C:/IBM/WebSphere/AppServer/java/lib;C:/IBM/WebSphere/AppServer/profiles/AppSrv01/classes;C:/IBM/WebSphere/AppServer/classes;C:/IBM/WebSphere/AppServer/lib;C:/IBM/WebSphere/AppServer/installedChannels;C:/IBM/WebSphere/AppServer/lib/ext;C:/IBM/WebSphere/AppServer/web/help;C:/IBM/WebSphere/AppServer/deploytool/itp/plugins/com.ibm.etools.ejbdeploy/runtime
    Classpath = C:\IBM\WebSphere\AppServer\properties;C:\IBM\WebSphere\AppServer\lib\bootstrap.jar;C:\IBM\WebSphere\AppServer\lib\j2ee.jar;C:\IBM\WebSphere\AppServer\lib\lmproxy.jar;C:\IBM\WebSphere\AppServer\lib\urlprotocols.jar
    Java Library path = C:/IBM/WebSphere/AppServer/java/bin;C:/IBM/WebSphere/AppServer/bin;C:/IBM/WebSphere/AppServer/java/bin;C:/IBM/WebSphere/AppServer/java/jre/bin
    Current trace specification = *=info
    ************* End Display Current Environment *************
    [4/3/08 17:01:59:093 GMT+05:30] 0000000a ManagerAdmin I TRAS0017I: The startup trace state is *=info.
    [4/3/08 17:01:59:203 GMT+05:30] 0000000a MBeanDescript W ADMN0001W: The service is unable to parse the MBean descriptor file com/ibm/ws/management/descriptor/xml/mbeans.xml.
    [4/3/08 17:01:59:265 GMT+05:30] 0000000a AdminInitiali A ADMN0015I: The administration service is initialized.
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R java.lang.NullPointerException
         at javax.management.MBeanNotificationInfo.equals(MBeanNotificationInfo.java:146)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.addFeatures(MBeanDescriptorLoader.java:461)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadParentTypes(MBeanDescriptorLoader.java:434)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.endDocument(MBeanDescriptorLoader.java:217)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endDocument(AbstractSAXParser.java:769)
         at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.endDocument(XMLDTDValidator.java:981)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.endEntity(XMLDocumentScannerImpl.java:560)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.endEntity(XMLEntityManager.java:1779)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.load(XMLEntityScanner.java:1758)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.skipSpaces(XMLEntityScanner.java:1274)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$TrailingMiscDispatcher.dispatch(XMLDocumentScannerImpl.java:1247)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadDescriptor(MBeanDescriptorLoader.java:155)
         at com.ibm.ws.management.descriptor.MBeanDescriptorManager.loadDescriptorFile(MBeanDescriptorManager.java:319)
         at com.ibm.ws.management.descriptor.MBeanDescriptorManager.getDescriptor(MBeanDescriptorManager.java:133)
         at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:375)
         at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:348)
         at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:350)
         at com.ibm.ws.runtime.component.ContainerImpl.initializeComponent(ContainerImpl.java:1161)
         at com.ibm.ws.runtime.component.ContainerImpl.initializeComponents(ContainerImpl.java:1015)
         at com.ibm.ws.runtime.component.ServerImpl.initialize(ServerImpl.java:245)
         at com.ibm.ws.runtime.WsServerImpl.bootServerContainer(WsServerImpl.java:157)
         at com.ibm.ws.runtime.WsServerImpl.start(WsServerImpl.java:120)
         at com.ibm.ws.runtime.WsServerImpl.main(WsServerImpl.java:378)
         at com.ibm.ws.runtime.WsServer.main(WsServer.java:50)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:190)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at javax.management.MBeanNotificationInfo.equals(MBeanNotificationInfo.java:146)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.addFeatures(MBeanDescriptorLoader.java:461)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadParentTypes(MBeanDescriptorLoader.java:434)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.endDocument(MBeanDescriptorLoader.java:217)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endDocument(AbstractSAXParser.java:769)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.endDocument(XMLDTDValidator.java:981)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.endEntity(XMLDocumentScannerImpl.java:560)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.endEntity(XMLEntityManager.java:1779)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.load(XMLEntityScanner.java:1758)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.skipSpaces(XMLEntityScanner.java:1274)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$TrailingMiscDispatcher.dispatch(XMLDocumentScannerImpl.java:1247)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadDescriptor(MBeanDescriptorLoader.java:155)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorManager.loadDescriptorFile(MBeanDescriptorManager.java:319)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorManager.getDescriptor(MBeanDescriptorManager.java:133)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:375)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:348)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:350)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.component.ContainerImpl.initializeComponent(ContainerImpl.java:1161)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.component.ContainerImpl.initializeComponents(ContainerImpl.java:1015)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.component.ServerImpl.initialize(ServerImpl.java:245)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.WsServerImpl.bootServerContainer(WsServerImpl.java:157)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.WsServerImpl.start(WsServerImpl.java:120)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.WsServerImpl.main(WsServerImpl.java:378)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.WsServer.main(WsServer.java:50)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at java.lang.reflect.Method.invoke(Method.java:585)
    [4/3/08 17:01:59:312 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:190)
    [4/3/08 17:01:59:328 GMT+05:30] 0000000a MBeanDescript W ADMN0001W: The service is unable to parse the MBean descriptor file com.ibm.websphere.management.exception.DescriptorParseException: ADMN0001W: The service is unable to parse the MBean descriptor file com/ibm/ws/management/descriptor/xml/JVM.xml.
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadDescriptor(MBeanDescriptorLoader.java:164)
         at com.ibm.ws.management.descriptor.MBeanDescriptorManager.loadDescriptorFile(MBeanDescriptorManager.java:319)
         at com.ibm.ws.management.descriptor.MBeanDescriptorManager.getDescriptor(MBeanDescriptorManager.java:133)
         at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:375)
         at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:348)
         at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:350)
         at com.ibm.ws.runtime.component.ContainerImpl.initializeComponent(ContainerImpl.java:1161)
         at com.ibm.ws.runtime.component.ContainerImpl.initializeComponents(ContainerImpl.java:1015)
         at com.ibm.ws.runtime.component.ServerImpl.initialize(ServerImpl.java:245)
         at com.ibm.ws.runtime.WsServerImpl.bootServerContainer(WsServerImpl.java:157)
         at com.ibm.ws.runtime.WsServerImpl.start(WsServerImpl.java:120)
         at com.ibm.ws.runtime.WsServerImpl.main(WsServerImpl.java:378)
         at com.ibm.ws.runtime.WsServer.main(WsServer.java:50)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:190)
    Caused by: java.lang.NullPointerException
         at javax.management.MBeanNotificationInfo.equals(MBeanNotificationInfo.java:146)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.addFeatures(MBeanDescriptorLoader.java:461)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadParentTypes(MBeanDescriptorLoader.java:434)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.endDocument(MBeanDescriptorLoader.java:217)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endDocument(AbstractSAXParser.java:769)
         at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.endDocument(XMLDTDValidator.java:981)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.endEntity(XMLDocumentScannerImpl.java:560)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.endEntity(XMLEntityManager.java:1779)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.load(XMLEntityScanner.java:1758)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.skipSpaces(XMLEntityScanner.java:1274)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$TrailingMiscDispatcher.dispatch(XMLDocumentScannerImpl.java:1247)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadDescriptor(MBeanDescriptorLoader.java:155)
         ... 17 more
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R com.ibm.ws.exception.ConfigurationError: Problem initializing AdminImpl:
         at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:697)
         at com.ibm.ws.runtime.component.ContainerImpl.initializeComponent(ContainerImpl.java:1161)
         at com.ibm.ws.runtime.component.ContainerImpl.initializeComponents(ContainerImpl.java:1015)
         at com.ibm.ws.runtime.component.ServerImpl.initialize(ServerImpl.java:245)
         at com.ibm.ws.runtime.WsServerImpl.bootServerContainer(WsServerImpl.java:157)
         at com.ibm.ws.runtime.WsServerImpl.start(WsServerImpl.java:120)
         at com.ibm.ws.runtime.WsServerImpl.main(WsServerImpl.java:378)
         at com.ibm.ws.runtime.WsServer.main(WsServer.java:50)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:190)
    Caused by: com.ibm.ws.exception.ConfigurationWarning: Problem registering JVM MBean.
         at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:361)
         ... 12 more
    Caused by: com.ibm.websphere.management.exception.AdminException: ADMN0005E: The service is unable to activate MBean: type JVM, collaborator com.ibm.ws.management.component.JVMMBean@f38cf0, configuration ID JVM, descriptor null.
         at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:600)
         at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:348)
         at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:350)
         ... 12 more
    Caused by: com.ibm.websphere.management.exception.DescriptorParseException: ADMN0001W: The service is unable to parse the MBean descriptor file com/ibm/ws/management/descriptor/xml/JVM.xml.
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadDescriptor(MBeanDescriptorLoader.java:164)
         at com.ibm.ws.management.descriptor.MBeanDescriptorManager.loadDescriptorFile(MBeanDescriptorManager.java:319)
         at com.ibm.ws.management.descriptor.MBeanDescriptorManager.getDescriptor(MBeanDescriptorManager.java:133)
         at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:375)
         ... 14 more
    Caused by: java.lang.NullPointerException
         at javax.management.MBeanNotificationInfo.equals(MBeanNotificationInfo.java:146)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.addFeatures(MBeanDescriptorLoader.java:461)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadParentTypes(MBeanDescriptorLoader.java:434)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.endDocument(MBeanDescriptorLoader.java:217)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endDocument(AbstractSAXParser.java:769)
         at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.endDocument(XMLDTDValidator.java:981)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.endEntity(XMLDocumentScannerImpl.java:560)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.endEntity(XMLEntityManager.java:1779)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.load(XMLEntityScanner.java:1758)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.skipSpaces(XMLEntityScanner.java:1274)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$TrailingMiscDispatcher.dispatch(XMLDocumentScannerImpl.java:1247)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadDescriptor(MBeanDescriptorLoader.java:155)
         ... 17 more
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:697)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.component.ContainerImpl.initializeComponent(ContainerImpl.java:1161)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.component.ContainerImpl.initializeComponents(ContainerImpl.java:1015)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.component.ServerImpl.initialize(ServerImpl.java:245)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.WsServerImpl.bootServerContainer(WsServerImpl.java:157)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.WsServerImpl.start(WsServerImpl.java:120)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.WsServerImpl.main(WsServerImpl.java:378)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.runtime.WsServer.main(WsServer.java:50)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at java.lang.reflect.Method.invoke(Method.java:585)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:190)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R Caused by: com.ibm.ws.exception.ConfigurationWarning: Problem registering JVM MBean.
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:361)
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      ... 12 more
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R Caused by: com.ibm.websphere.management.exception.AdminException: ADMN0005E: The service is unable to activate MBean: type JVM, collaborator com.ibm.ws.management.component.JVMMBean@f38cf0, configuration ID JVM, descriptor null.
    [4/3/08 17:01:59:343 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:600)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:348)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:350)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      ... 12 more
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R Caused by: com.ibm.websphere.management.exception.DescriptorParseException: ADMN0001W: The service is unable to parse the MBean descriptor file com/ibm/ws/management/descriptor/xml/JVM.xml.
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadDescriptor(MBeanDescriptorLoader.java:164)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorManager.loadDescriptorFile(MBeanDescriptorManager.java:319)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorManager.getDescriptor(MBeanDescriptorManager.java:133)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:375)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      ... 14 more
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R Caused by: java.lang.NullPointerException
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at javax.management.MBeanNotificationInfo.equals(MBeanNotificationInfo.java:146)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.addFeatures(MBeanDescriptorLoader.java:461)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadParentTypes(MBeanDescriptorLoader.java:434)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.endDocument(MBeanDescriptorLoader.java:217)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endDocument(AbstractSAXParser.java:769)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.endDocument(XMLDTDValidator.java:981)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.endEntity(XMLDocumentScannerImpl.java:560)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.endEntity(XMLEntityManager.java:1779)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.load(XMLEntityScanner.java:1758)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.skipSpaces(XMLEntityScanner.java:1274)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$TrailingMiscDispatcher.dispatch(XMLDocumentScannerImpl.java:1247)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadDescriptor(MBeanDescriptorLoader.java:155)
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a SystemErr R      ... 17 more
    [4/3/08 17:01:59:359 GMT+05:30] 0000000a WsServerImpl E WSVR0009E: Error occurred during startup
    META-INF/ws-server-components.xml
    [4/3/08 17:01:59:390 GMT+05:30] 0000000a WsServerImpl E WSVR0009E: Error occurred during startup
    com.ibm.ws.exception.ConfigurationError: com.ibm.ws.exception.ConfigurationError: Problem initializing AdminImpl:
         at com.ibm.ws.runtime.WsServerImpl.bootServerContainer(WsServerImpl.java:166)
         at com.ibm.ws.runtime.WsServerImpl.start(WsServerImpl.java:120)
         at com.ibm.ws.runtime.WsServerImpl.main(WsServerImpl.java:378)
         at com.ibm.ws.runtime.WsServer.main(WsServer.java:50)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:190)
    Caused by: com.ibm.ws.exception.ConfigurationError: Problem initializing AdminImpl:
         at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:697)
         at com.ibm.ws.runtime.component.ContainerImpl.initializeComponent(ContainerImpl.java:1161)
         at com.ibm.ws.runtime.component.ContainerImpl.initializeComponents(ContainerImpl.java:1015)
         at com.ibm.ws.runtime.component.ServerImpl.initialize(ServerImpl.java:245)
         at com.ibm.ws.runtime.WsServerImpl.bootServerContainer(WsServerImpl.java:157)
         ... 8 more
    Caused by: com.ibm.ws.exception.ConfigurationWarning: Problem registering JVM MBean.
         at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:361)
         ... 12 more
    Caused by: com.ibm.websphere.management.exception.AdminException: ADMN0005E: The service is unable to activate MBean: type JVM, collaborator com.ibm.ws.management.component.JVMMBean@f38cf0, configuration ID JVM, descriptor null.
         at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:600)
         at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:348)
         at com.ibm.ws.management.component.AdminImpl.initialize(AdminImpl.java:350)
         ... 12 more
    Caused by: com.ibm.websphere.management.exception.DescriptorParseException: ADMN0001W: The service is unable to parse the MBean descriptor file com/ibm/ws/management/descriptor/xml/JVM.xml.
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadDescriptor(MBeanDescriptorLoader.java:164)
         at com.ibm.ws.management.descriptor.MBeanDescriptorManager.loadDescriptorFile(MBeanDescriptorManager.java:319)
         at com.ibm.ws.management.descriptor.MBeanDescriptorManager.getDescriptor(MBeanDescriptorManager.java:133)
         at com.ibm.ws.management.MBeanFactoryImpl.activateMBean(MBeanFactoryImpl.java:375)
         ... 14 more
    Caused by: java.lang.NullPointerException
         at javax.management.MBeanNotificationInfo.equals(MBeanNotificationInfo.java:146)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.addFeatures(MBeanDescriptorLoader.java:461)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadParentTypes(MBeanDescriptorLoader.java:434)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.endDocument(MBeanDescriptorLoader.java:217)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endDocument(AbstractSAXParser.java:769)
         at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.endDocument(XMLDTDValidator.java:981)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.endEntity(XMLDocumentScannerImpl.java:560)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.endEntity(XMLEntityManager.java:1779)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.load(XMLEntityScanner.java:1758)
         at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.skipSpaces(XMLEntityScanner.java:1274)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$TrailingMiscDispatcher.dispatch(XMLDocumentScannerImpl.java:1247)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
         at com.ibm.ws.management.descriptor.MBeanDescriptorLoader.loadDescriptor(MBeanDescriptorLoader.java:155)
         ... 17 more
    [4/3/08 17:01:59:421 GMT+05:30] 0000000a SystemErr R com.ibm.ws.exception.ConfigurationError: com.ibm.ws.exception.ConfigurationError: Problem initializing AdminImpl:
         at com.ibm.ws.runtime.WsServerImpl.bootServerContainer(WsServerImpl.java:166)
         at com.ibm.ws.runtime.WsServerImpl.start(WsServerImpl.java:120)
         at com.ibm.ws.runtime.WsServerImpl.main(WsServerImpl.java:378)
         at com.ibm.ws.runtime.WsServer.main(WsServer.java:50)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(

    Hi Frndz,
    Problem got resolved. It is the issue with using sun jdk installed in my machine.
    We need to use the jdk installed in websphere server.
    Thanks.

  • Publishing XI exposed webservices in the UDDI Server of SAP WAS JAVA 640

    Hi Friends,
        I have a question regarding publishing a WSDL created via XI (Integration Directory) to a UDDI Server of SAP WAS JAVA 640. Can I publish the WSDL generated from XI in the UDDI Server provided as a part of SAP WAS 640 ?  I know that the WSDL will be specific  for a client( sender) but I feel that its better than emailing the WSDL to the client after generating it in the integration directory. Any relevant documents, links explaining how to do that will be appreciated.
        The above question was asked by Siva Maranani before. His question was as below .
    "I know that whenever a webservice is developed using NDS it can be deployed in WebAs and the same can be registered in UDDI ( webAs acting as UDDI registry).
    Now my requirement is to register a WSDL file (which describes) for an external webservice. Can WebAs be used as a UDDI registry..?
    I like to know if this is possible or not..? if yes.. how..?"
    Waiting for the reply...
    Thanks & Regards,
    Mathew

    Hi Naveen,
               Thanks for the quick response. I tried the steps mentioned in the link.
    1. Successfully created a new local UDDI registry in SAP WAS..
    2. Assigned users etc.
      The place I am getting stuck is..
    "Make sure that the Web Service Definition has already been created and configured".
    I have a WSDL document created via Define webservice in the XI integration directory.(We are successfully able to call the webservice using this WSDL via .net & xmlspy)
    Where should I upload this WSDL ? so that the users will able to download/reference it w/out myself emailing to them.We dont/won't have NDS installed in our landscape.
    I understand that whenever a webservice is developed using NDS it can be deployed in WebAs and the same can be registered in UDDI ( webAs acting as UDDI registry).
    The requirement is to register a WSDL file generated via XI w/out using NDS.
    Did you able to  publish a WSDL file generated via XI in the local UDDI w/out using NDS ?
    waiting for your reply
    Thanks a lot,
    Mathew

  • Lumira Server on SAP HANA Cloud Platform?

    Hi,
    Can we run Lumira Server on SAP HANA Cloud Platform (not SAP HANA)?
    Reason:
    Unless there is a way to publish Lumira Story via Lumira Cloud to BI LaunchPad, otherwise I am only interested in the Lumira Desktop version at the moment. As we want to continue to pursue to have one central portal for all BI contents using BI LaunchPad.
    Question:
    In summary, is it possible to apply SAP Lumira Server on SAP HANA Cloud Platform?
    See screenshots below for the ideal scenarios.

    Hi Ken,
    Great question.
    Yes, absolutely you can.
    As an example: I work with some customers who have small Hana estates "on-premise" (say, for Fraud on Hana, or BW HANA sidecar); as such they may not have the available infrastructure to decouple a sandbox Hana to evaluate new Hana Analytics innovations (like Lumira Server)
    In such situations I recommend this page http://hcp.sap.com/platform.html  to evaluate our Hana Cloud platform options.
    If you scroll half-way down, you'll see a nice graphic under the heading "Choose the Service That's Best for You". (the 3 stacked pillars)
    Depending on your own licensing particulars, you may already have a runtime license for Lumira Server (through your BI bundle), and you may already have HDB (database) licenses available in your enterprise, so potentially you need only the 'infrastructure service' (leftmost chart).
    Then, I've seen this integrated into productive on-premise systems, typically (but optionally) via a "leased line" (between customer & provider (SAP)) , and a VPN tunnel in between to make the secure bridge.
    It's a really neat way to get on the Hana journey: quick to deploy, flexible, and well priced.
    Regards,
    H

Maybe you are looking for