Interfaces on java instances on XI

Hello Experts,
Can interfaces run only on java instance of XI? How can we validate such interfaces?
Please suggest.
Thanks and Regards
Suma

>>I got an issue where I need to validate an interface which uses java instance of XI server.
Do you mean XML validation with a XSD? I am not sure if this is possible in PI 7.0. In PI 7.1 you can validate a incoming XML payload against the XSD. The setting is available in the Communication channel.
>>And then this runs an executable file to map the XLM data and create an idoc in SAP.
I guess you are just talking about a java mapping here? If so this is straight forward. And you can not use complete java stack to build an interface to post idoc into SAP. The idoc adapter resides in ABAPstack. So you need dual stack (classic) configuration with RD, ID to build this interface. From PI 7.3 you have java idoc adapter and so you can use ICO (Integrated Configuration) which resides only on java stack.
>> I am just wondering how to find this interface in XI
???. I guess you mean build the interface in XI

Similar Messages

  • How can I correlate an Java instance number with a server id?

    I have 6 Web App Server running ABAP and the JAVA stacks. I can log into the Central Instance server and run /usr/sap/<SID>DVEBMSG00/j2ee/configtool/configtool.sh and bring up the GUI interface to "see" all the instances and their variables. I don't see an easy way to trace back the Java INSTANCE to the physical server's hostname.
    Is there a central repository to correlate a Web App Server Java instance number to the actual hostid/hostname of the target server? I realize I can log into each Web App Server and look at the /usr/sap/<SID>D00/j2ee/cluster/instance.properties and find the Instance number, but I was wondering if this information was held in the SAP Central instance or SAP Database somewhere.

    Hi Timothy,
    The instance ID used for the JAVA cluster is generated at installation time, and -amongst other things- takes into account the time it was generated. We installed two instances in parallel (on different hosts) and ended up with almost the same instance ID.
    Because this can be very confusing, we asked SAP if this was changable - in theory it is only an ID which could be changed as long as it is updated on all places the identifier is stored - but SAP indicated that that is not possible, nor supported. We ended up with a diagram of the system architecture with all the identifiers on our desk.
    Note that in the config tool - all instances are displayed with their system instance number. If you were to install a new system it might be usefull to install all instances with different instance numbers so you and distinguish more easily between them.
    Hope this helps,
    Cheers,
    Walter

  • MDM with separated ABAP and Java Instance

    We installed SAP ERP system with SRM server and Portal as Java instance.
    We use Oracle and have 2 oracle schemas/instances: ABAP and Java.
    After mounting of MDM server and DBMS configuraiton (to Java instance) we have the following oracle objects:
    Oracle Schema A2I_XCAT_DBS
    2 oracle users: A2I_XCAT_DBS (owner of the schema) and MDMADMIN
    2 tablespaces A2I_A2I_XCAT_DBS.DBF and A2I_A2I_XCAT_DBS_IX.DBF within the main dbs directory E:\oracle\<sid>\102\database
    The used tablespace was set to PSAPTEMP
    Questions:
    1) How can the DBMS configuration will be removed, because the oralce path  E:\oracle\<sid>\102\database was wrong
    Unfortunately we would like to avoid merge MDM and Portal data in one and the same tablespace PSAPTEMP
    2) Where can we find the oracle configuration for MDM with Java Schema, but using their own tablespace?

    Are you basically trying to put a new User Interface (UI) on top of MDM because you do not want to use the standard MDM UI?  If so, then yes you could write a custom WebDynpro and use the MDM API.  We evaluated WebDynpro as an option, but instead we built a new Adobe Flex based UI that sits on top of the MDM Catalog and it totally awesome!  There is a sample on our website (www.simplifying-it.net), but we are making some changes to the look/feel... however, the sample demo on the website should give you an idea.
    If you have any questions, please let me know.
    Thanks,
    Mark

  • Logon groups configuration for JAVA instances using NWA method

    Hello guys,
    we have a BI dual System landscape (CI ABAP+ JAVA plus 2 dialog instance ABAP+JAVA, based on NW04s. I have set up a Web Dispatcher to do a load balancing for JAVA instances. I configured the logon groups according this documentation using NWA (http://help.sap.com/saphelp_nw04/helpdata/en/45/3dbe11a82b6bf1e10000000a1553f6/content.htm).
    The following point is still quite unclear for me:
    I have defined the instance IDs (of DIs installed on linux servers) and exacte Alias in the logon groups definitions in NWA. Is it possible to proof somehow (while accessing my URL http://<host>:<port>/TestApp~test/<application_resource> ) either in web dispatcher ->Web Administration Interface(Application Server Monitor ?) or somewhere else on which Dialog Instance I actually land to be sure that my load balancing works properly and i don't land on my Central Instance?
    Thanks a lot in advance.
    best regards,
    Polina

    ok, I have understood what you ment in the first passage Thanks!
    When I put javascript:document.cookie in my Internet Explorer Address Bar i got the following information: 
    PortalAlias=portal; saplb_STD_JAVA=(sapt20p_T20_20)207175450; JSESSIONID=(sapt20p_T20_20)ID1892984750DB11747115157906231437End; saplb_test=(lx003207_T20_20)206509050; saplb_*=(lx003207_T20_20)206509050
    what does here saplb_STD_JAVA mean?
    you can use following URLs to access any particular Java Server node of any server.
    https://<host name>:<https port>/irj/portal;saplb_*=<Java serer node number> https://<host name>:<https port>/irj/portal;sapj2ee_irj=<Java server node number>
    What is the difference between saplb_* and sapj2ee_irj?
    Thanks in advance.
    regards,
    Polina

  • What is the diffrence between My Runnable Interface and Java Runnable

    Hi folks
    all we know that interfaces in java just a decleration for methods and variables.
    so my Question is why when i create an interface its name is "Runnable" and i declared a method called "run" inside it.then when i implements this interface with any class don't do the thread operation but when i implement the java.lang.Runnable the thread is going fine.
    so what is the diffrence between My Runnable Interface and Java Runnable?
    thnx

    Hi folks
    all we know that interfaces in java just a decleration
    for methods and variables.
    so my Question is why when i create an interface its
    name is "Runnable" and i declared a method called
    "run" inside it.then when i implements this interface
    with any class don't do the thread operation but when
    i implement the java.lang.Runnable the thread is going
    fine.
    so what is the diffrence between My Runnable Interface
    and Java Runnable?
    thnxClasses and interfaces are not identified by just their "name", like Runnable. The actual "name" the compiler uses is java.lang.Runnable. So even if you duplicate the Runnable interface in your own package, it's not the same as far as the compiler is concerned, because it's in a different package.
    Try importing both java.util.* and java.awt.* (which both have a class or interface named List), and then try to compile List myList = new ArrayList();

  • Java instance not working in ECC6

    Hi,
    I was installed ECC6 on Winsever2003 and oracle10g intialy both java and abap instaces works fine EP also works fine sudenly after three days Java instance is not starting but ABAP instance working fine without any problem I am posting error log here please suggest me or help me in this regard
    Here is develpoer trace log:
    trc file: "dev_enqsrv", trc level: 1, release: "700"
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    66
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        2620
    [Thr 4084] Mon Jul 07 19:50:57 2008
    [Thr 4084] *** ERROR => ShmDelete: Invalid shared memory Key=34. [shmnt.c      719]
    [Thr 4084] *** ERROR => ShmCleanup: ShmDelete failed for Key:34. [shmnt.c      793]
    [Thr 4084] initialize_global: enqueue server without replication
    [Thr 4084] Enqueue: EnqMemStartupAction Utc=1215440457
    [Thr 4084] Enqueue Info: replication enabled
    [Thr 4084] Enqueue Info: enque/replication_dll not set
    [Thr 4084] Mon Jul 07 19:50:58 2008
    [Thr 4084] ***LOG GEZ=> Server start [encllog.cpp  493]

    Hi,
    useing cleanipc u can delete old sharedmemory follow the bellow steps hope this will be helpful
    Delete the old shared memories manually by entering:
    cleanipc <SAPSYSTEM> remove
    You can take the value of <SAPSYSTEM> from the profile file enqsrv.pf.
    cleanipc is in /usr/sap/<SID>/SYS/exe/run.

  • Need Info Regarding Implementaion of Interfaces in java.sql package

    Hi All,
    I am interested in knowing details abt how the Interfaces in the java.sql package are implemented. We all work with the database using the interfaces provided ,but how do they work at the backend ? How can a Interface provide details (work ) with out an implementation class.I Is this taken care by the JVM or some of the Call level interfaces? Please do provide details abt this..

    hi Sheshadri,
    The implementation of the various interfaces in
    java.sql package are provided by your jdbc driver,
    which also manages the connection and communication of
    your java program with the appropriate database.
    cheers,
    -Jer

  • Java instance installation fails for EP 6.0 SR1 on AIX 5.1/Oracle 9.2

    Hi Friends
    I am currently installing EP 6.0 SR1 on NW04 on AIX 5.2 & Oracle 9.2.0.1, last few steps of installation I applied Oracle patchset 9.2.0.5. I am using the option SAPNW SR1-> Java system -> Central system ->custom installation-> Java system, the installation stops at step 30(Load Java database content) of 36 giving the message "java.sql.SQLException:Ioexception: The Network adapter could not establish the connection.
    I am also attaching the contents of log jload.log & jload.java.log. Really appreciate if somebody who has faced similar problem or knows the solution can provide a tip, thanks in advance.
    CDBAXD08:oraepd 27> more jload.log
    11.03.05 20:05 com.sap.inst.jload.Jload main
    INFO: Jload -sec
    EPD,jdbc/pool/EPD,/sapmnt/EPD/global/security/data/SecStore.properties,/
    sapmnt/EPD/global/
    security/data/SecStore.key -dataDir /epinst/was_java/J2EE_OSINDEP/J2EE-
    ENG/JDMP -job /tmp/sapinst_instdir/N
    W04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/IMPORT.XML -
    log /tmp/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST
    /jload.log
    11.03.05 20:05 com.sap.inst.jload.Jload main
    SEVERE: couldn't connect to DB
    java.sql.SQLException: Io exception: The Network Adapter could not
    establish the connection
    CDBAXD08:oraepd 28> more jload.java.log
    java version "1.4.2"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2)
    ClassicVM (build 1.4.2, J2RE 1.4.2 IBM AIX 5L for PowerPC (64 bit JVM)
    build caix64142ifx-20041126 (JIT en
    abled: jitc))
    Mar 11, 2005 8:05:10 PM com.sap.inst.jload.Jload main
    INFO: Jload -sec
    EPD,jdbc/pool/EPD,/sapmnt/EPD/global/security/data/SecStore.properties,/
    sapmnt/EPD/global/
    security/data/SecStore.key -dataDir /epinst/was_java/J2EE_OSINDEP/J2EE-
    ENG/JDMP -job /tmp/sapinst_instdir/N
    W04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST/IMPORT.XML -
    log /tmp/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/ONE_HOST
    /jload.log
    Mar 11, 2005 8:05:15 PM com.sap.inst.jload.Jload main
    SEVERE: couldn't connect to DB
    java.sql.SQLException: Io exception: The Network Adapter could not
    establish the connection
    FYI the SID name given to the Java instance is EPD & the output of
    java -version of the 3 id's root, epdadm & oraepd is as attached.
    CDBAXD08:epdadm 1> java -version
    java version "1.4.2"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2)
    Classic VM (build 1.4.2, J2RE 1.4.2 IBM AIX 5L for PowerPC (64 bit JVM)
    build caix64142ifx-20041126 (JIT enabled: jitc))
    Thanks & Rgds,
    Abhishek

    Hi Abhishek,
    I'm trying to install EP 6.0 SR1 on Aix and DB2.   I'm having problems with Secure Store installation step (Encryption: JCE and Crypto Toolkit).
    Did you have any problems with this ?   From which place did you get the JCE file ? 
    Thanks for your help, I really appreciate it !
    Regards from Mexico,
    Diego

  • Abap Instance + Java Instance

    Hi people,
    In the sap netweaver 7.0 EHP1 SR1, it´s possible to make the installation firstly the abap instance (Business Warehouse), and after the installation has finished to do the installation the java instance (Enterprise portal) ?
    In the installation guide
    Installation GuideSAP NetWeaver 7.0 ABAP+Java including Enhancement Package 1 SR1 on Windows Oracle
    In the new features says that:
    New dual stack (ABAPJava) systems only for SAP NetWeaver Process Integration (PI) and SAP NetWeaver Mobile Infrastructure (MI) --> As of SAP NetWeaver 7.0 including enhancement package 1, you can install dual stack (ABAPJava) systems only with usage type Process Integration (PI) or Mobile Infrastructure (MI). This means you can only install a dual stack system either as a Process Integration system or as a Mobile Infrastructure system.
    Installation option Java Add-In for ABAP disabled --> As of SAP NetWeaver 7.0 including enhancement package 1, the installation option Java Add-In for ABAP is disabled. That is, you can no longer install the Java Add-In to an existing ABAP system.
    It´s possible??
    More thanks

    Hi Rubben,
    That's true , with New relase of SAP we cannot install abap + java execpt for PI and MI due to some performance issues.
    Even concept of java addin has been removed by SAP.
    So, IF you want to install java with Abap , then you can fullful your requirement by installing seperate java instance .
    Thanks
    Anil

  • Should I use a separate JAVA instance for ADS

    My customer has Enterprise portal and R/3 installed already.  Now they want ADS installed.  Would it be best to install a new JAVA instance for ADS or should I use the existing JAVA instance that is installed for the portal?  I think the customer is preferring to use a separate instance so nothing already installed breaks.  Also, if I do use a separate JAVA instance, should I connect to the portal through SLD?
    Thanks,
    Peggy

    Hello,
    Installation of new java instance for ADS (or) using the one available inthe portal java instance depends on the following factors:-
    1) How much extra load can the existing java instance handle
    2) What is the user case and expected load for ADS in the customer landscape?
    3) Whether ADS will be used exclusively for portal ?
    Following link may give you a better idea of whether to use ADS within applicaiton portal (or) use standalone ADS
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0ce3d21-cb09-2e10-36b0-e4c8167389f6?quicklink=index&overridelayout=true
    Rgds,
    Mat.

  • How to  change host name entry for java instance using config tool

    Hi Gurus,
    We are trying to invoke DR for dual stack SAP PI system.Strategy followed is BR Tool  backup and restore method.
    We are able bring up ABAP stack and it is still pointing to production Java stack.
    Could any one please guide us with step by step procedure to change entries and bringing up java stack for DR system.
    While bringing up java instance we are facing below issues
    From starting framework it goes back to collecting data stack.
    Thanks,
    Avadhesh Sharma    
    +91-8095226536

    Hi Avadhesh,
    For dual stack systems backup/restore method is not recommended procedure for DR.
    As it will have hostnames from Production.
    Good approach will be to have export of Production Java stack and import the same into DR  OR
    Have the DR system installed using virtual hostnames which are similar to Production hostname.
    When DR needs to be operational enable these virtual hostnames.
    Hope this helps.
    Regards,
    Deepak Kori

  • Time out parameters for ABAP and JAVA instance

    Hello All,
    We are looking for Time out parameters for our ABAP and JAVA instances.
    As users are complaining that they are getting time out error
    while they are trying to access Cprojects from Portal.
    I was able to check/collect the ABAP instance parameters from SMICM Tcode.
    Can anybody tell me which parameters we need to look for JAVA instance.
    Thanks in advance.
    Regards,
    Amber S

    jstart/shutdownTimeout
    (jstartup/shutdown_timeout)
    Specifies the shutdown timeout, i.e. the grace period for the AS Java instance to shut down before the Java process terminates itself.  Unt is in Seconds. Default is 120
    j2ee/ms/connectTimeout
    (jstartup/wait_for_scs)
    Specifies the timeout for the first connection to the message server. The AS Java instance fails to start if this timeout expires.Unt is in Seconds.Default is  60
    j2ee/ms/reconnectTimeout
    (jstartup/wait_for_reconnect)
    Specifies the timeout for the reconnecting to the message server.The AS Java instance shuts down when this timeout expires.Unt is inSeconds.Default is  3600 (one hour)
    Thanks

  • Changing message server port for ABAP+Java Instance

    Hi,
    We had change our message server port for the Java instance from 3607 to 3667.
    We did this using the j2ee config tool. We also verified this information through the console config.
    But when we look into system info URL using the URL as shown below,  we still that the old message server port is being used. We have recycled the instance couple of times , but does not seem to help.
    http://dfudsbw1.dfna.corp.dom:50700/sap/monitoring/SystemInfo
    Any ideas where else we have to change the port no. for the message server

    Hi guys,
    I solved this on my own with documentation help from SAP.
    I had to change the port no. in the Global dispatcher and Global server area as well.
    Please see details from SAP below.
    "Message Server: Changing Ports/Hosts shows which areas need to be adjusted if
    the port or host of the message server changes. Ports are, of course, changed in the
    instance profile of the Central Services instance. In the example, the port 3677 and
    the HTTP port 8177 have been set, and the new host is called twdfxxx. You need to
    use the Config Tool to set these values. For each instance, you need to maintain the
    corresponding values for the Message server host and Message server port on the
    Message Server and Bootstrap tab page. The connection details for dispatchers or
    servers to the message server are maintained in the Cluster Manager. As shown in the
    figure, the ms.host and ms.port are maintained, respectively, in the Cluster Manager
    with Global Dispatcher and the Global Server. After you have maintained all of the
    parameters, you can start the instances."

  • Kernel upgrade having ABAP+JAVA instance

    Hi team,
    Can you provide the procedure how to kernel upgrade for our windows system having ABAP+JAVA instance releae version 700.
    Provide the links, your replies are very helpful.
    Regards
    Bhaskar

    Hi Bhaskar,
    You can use JSPM too in this case. Otherwise if you want to do it the old fashioned way:
    > Stop SAP, Database, Saprouter, listeners and all the
    related services.
    > The location of the kernel is /usr/sap/<SID>/SYS/exe/run
    > Take a backup of the files in this location and take a
    print out of the ls -ltr (This is needed to give the new files the
    correct permissions)
    > Overwrite all the new files to the kernel location. The
    purpose is to retain the old files for which the new version is not
    available.
    > The permissions of the file need to be changed as they
    were before.
    > Restart all the processes. The kernel upgrade is
    now done. System
    > status will give the newer version of the kernel.>
    >
    disp+work
    Will give the
    new Kernel version.
                            Finding files easily: http://www.easymarketplace.de/KernelPatches.php
    Regards,
    hemanth

  • Empty line at the end of  SAP Java instance profile

    I saw this today in help.sap.com, which says that an Java instance profile must have an empty line at the end of the file, would anyone know what is it for ?
    The instance profile (/usr/sap/<SID>/SYS/profile/<SID>_<instance name>_<hostname>) u2013 this file contains settings that apply to the instance as a whole. For a Java-only installation, the file can be edited with any text editor (beware that the file must have an empty line at the end.);
    http://help.sap.com/saphelp_nw04s/helpdata/en/2e/611724f410254ca12a3f396ec5ae85/frameset.htm
    thank you
    Jonu Joy

    I have heard many "explanations" for this, but never really any solid answers.
    From experience, however, I can tell you that the SAP profiles (both ABAP and Java) will miss the last parameter if it is located on the bottom line of the file.  I have always put in two or three blank spaces at the bottom of the profiles in order to avoid this.

Maybe you are looking for

  • Can I use my iPad as a screen to play content from my iPod

    I have an iPod classic which has a much greater capacity than my iPad. I want to know whether I can plug my iPod into the iPad in some way and use it as a larger screen to play the videos etc from my iPod. Does anyone know if this is possible?

  • Solution Design questions/suggestions/help needed

    Hi, I would appreciate any inputs regarding this. I am thinking of designing Solutions in Solman for our landscape which consists of ECC 6 and PI 7.1; each having a 3 system landscape D-Q-P. Is there an issue if I create Solutions Dev, QA and Prod vs

  • Import files from Helmet Cam

    Does anyone know if I will be able to import/edit video and audio files in iMovie 09 that were taken with a Drift Innovation X170 Helmet Cam? The videos were saved in format MJPEG AVI.

  • WAD - Switching the tabs

    Hi all , I am doing the Dashboard for the mangement reports by  using the Web Template web item . i have written the java script to switch the tabs and with that the templates associated with the tab , but when i select the 1st tab it looks ok but wh

  • How to add static port in Mac OS X?

    Dear All, I need to add a static route in my Mac OS X In windows I used to run: route add 10.0.50.0 mask 255.255.255.0 10.9.0.254 -p Please, how can I do the same in MAc OS X? Thanks in advance. Marcelo