How to access thru java stack

Hi All
can anyone pls let me know
how to access sap thru java stack like what is ipaddress and port etc.
Thanks in Advance
Arun

you can find full java administartion documentation at
http://help.sap.com/saphelp_nwce10/helpdata/en/c8/cdfacc37efa84d914699ad31eb69b8/frameset.htm
Also the link for accessing java page is
http://<full hostname>:<port>
full hostname- hostname of your SAP JAVA instance
port no- 50000+100*Instance number
Instance no- SAP system instance no
Rohit

Similar Messages

  • How to access the java stack table "xi_af_msg" from the ABAP engine.

    Hello Guys,
    How to access the java stack table "xi_af_msg" from the ABAP engine.
    I need to access this table.

    These 3 are the tables that are for XI Adapter in ABAP Stack.
    SWFRXICNT
    SWFRXIHDR
    SWFRXIPRC
    You can also try the following tables.
    SXMSAEADPMOD                   XI: Adapter and Module Information
    SXMSAEADPMODCHN                XI: Adapter Module Chains
    SXMSAEAGG                      XI: Adapter Runtime Data (Aggregated)
    SXMSAERAW                      XI: Adapter Runtime Data (Raw Data)
    Cheers,
    Sarath.
    Award if helpful.

  • How to access a JAVA Script variable in JSP Code

    How to access a JAVA Script variable in JSP Code. I have been unable todo this.
    Plz Suggest a way.
    Thanks
    Soumya

    try to do this code
    String s=request.getParameter("javascriptvariablename");

  • How to access the *.java file corresponding to a TypeElement T?

    Here is a problem:
    How to access the *.java file corresponding to a TypeElement T from a AnnotationProcessor environment?
    Let us say the hook method
    public boolean process(Set<? extends TypeElement> annos, RoundEnvironment roundEnv)
    is invoked with a TypeElement T such that T.getQualifiedname() = "a.b.c.X"
    And the problem is how to locate the file that has the *.java source code for a.b.c.X?
    That is the file that has the source code for a.b.c.X say "some/path/a/b/c/X.java"?
    For simplicity, let us assume that TypeElement T corresponds to a top-level Java class.

    Pinaki wrote:
    That is not something you as the annotation processor author should be asking about. That is something you the person configuring the javac environment should set up via the -d option or its equivalent.
    I strongly recommend using a separate output directory hierarchy.That is the way the current implementation is. The annotation processor takes a -Aout= <some directory path> to write generated output relative to a user-specified location (which defaults to the class output location).That is contrary to the design of the annotation processing facility. The intended use is for that information to be configured via options like "javac -d".
    Additionally, IMO it is a serious configuration error to put generated files and input files, presumably tracked under version control, in the same directory. Interesting you said that. We are just running some "field trial" with these things and some users want them to be in the same directory of the original *.java files (especially when their source files are spread across many roots) .
    Who knows what the user wants?The user does and the user is free to (mis)configure their environment however they like ;-) However, that is the user's option and the user has control of this via the javac command line. The annotation processor is not the proper place to configure this setting; see slide 7 of http://blogs.sun.com/darcy/resource/J1_2006-BOF-0606.pdf for some thoughts on different roles in annotation processing.
    presumably tracked under version control, in the same directory.version control is another 'usability issues' that we are trying to get our heads around with this stuff. "To check-in or not?" - that seems to be the question. When presented these facilities without any cue, "the users" were divided -- some wanted them to be checked-in, some did not. The context where these generated files being used -- there exists some rationale to check them in a version control system.The right answer depends on the circumstances, but IMO generally generated files should not be checked in under version control, especially if they are derived from other source files. Checking in generated files of this nature just creates the opportunity for them to get out of date with the originating files.

  • How to access custom JAVA webdynpro application from an iPad?

    Hi,
    We are trying to access custom JAVA webdynpro application from an iPad, but nothing is opening up from the iPad browser.
    What can be the possible reasons for this? Any kind of SICF enablement or opening up of ports in the network?
    Any inputs are welcome!!
    TIA,
    Regards
    Deepthi

    Hi,
    it is possible to show Java Web Dynpro applications on a mobile device in general, but the controls and the ui should be optimized for the mobile device.
    Safari devices are not officially supported so far for Mobile Web Dynpro.
    Supported are Windows Mobile devices and Blackberry devices. I also got some good results with Symbian devices.
    You can find more inforamtion on Mobile Always Connected at:
    ht[http://help.sap.com/saphelp_nwce711core/helpdata/en/7d/28fa3e7cb1d861e10000000a114084/content.htm|http://help.sap.com/saphelp_nwce711core/helpdata/en/7d/28fa3e7cb1d861e10000000a114084/content.htm]
    Best Regards,
    Stefan

  • Access to JAVA stack DB from an ABAP Program

    Hi ABAP gurus,
    We would like to write an ABAP program (from ABAP Stack) to execute SQL queries against tables that exist under the JAVA stack DB.
    Has any of you ever face this topic?
    Many thanks in advance. Regards,
       Imanol

    Please use search in this forum with keyword DBCON. you will lot of threads

  • How to access a Java class from view controller?

    Hi All,
    I have created a Test.java class file from Navigator view under
    Src --> Packages --> com.sap.MyProject.
    When I try to access the Test class from view controller,
    I getting this error "Test cannot be resolved or is not a type".
    How do I fix this?
    Thanks
    Sundar

    Hi,
    I have created a Test.java class file from Navigator view under
    Src --> Packages --> com.sap.MyProject.
    After this you can goto the context of your View and define the VA goto the type of VA and click on the right side button and go to java native type and type your java file name click you name .
    that means the jave file s assigned to VA.
    U can utilize thrut that VA.
    Thanks,
    Lohi.

  • 10.1.3.4 - How to access custom java methods in worklist ?

    We want to invoke a custom java method inside of worklist, when the file attachments are added to the worklist. We are planning to modify the auto-generated jsp page to do the same. We have created the custom jar files, but am not sure where to deploy this jar file ? We are not able to compile the jsp /jar. Does anybody have any idea where the custom jar file goes ?

    The bpel\samples\hw\worklistapp\readme will explain you about how to do this.

  • How to access the Java plugin certifcate store from a signed applet?

    Is there any easy way I can access the certificates in the Java plugin certificate store?
    I think I can load the C:\Documents and Settings\<login user>\ Application Data\Sun\Java\Deployment\security\trusted.certs into a KeyStore and examine the certificates that way.
    But I just wonder if there is more robust way to do this without loading up an external file since an applet is executed within a Java plugin.
    Thank you :)

    Is there any easy way I can access the certificates in the Java plugin certificate store?
    I think I can load the C:\Documents and Settings\<login user>\ Application Data\Sun\Java\Deployment\security\trusted.certs into a KeyStore and examine the certificates that way.
    But I just wonder if there is more robust way to do this without loading up an external file since an applet is executed within a Java plugin.
    Thank you :)

  • How to access another java process?

    I run two java process, A and B, any possiblity to access process A from process B?
    Process A and B are started with class's main method.
    Thanks.

    masijade. wrote:
    georgemc wrote:
    laguna8 wrote:
    Socket will not be appropriate for my case.
    My case is: I write a document editor (just like UltraEdit), after starting the editor, there is one process running, then I right click a file and choose to open that file with my editor, it starts another editor process. What I want now is just to open that file with the editor that has already run.Don't see why sockets aren't appropriate there. Why did you dismiss them?Because he wants a single pre-finished method call answer, maybe? ;-)Teh Codez!! Indeed. It's pretty obvious that there's an entire subsection of forum users who automatically dismiss any reply which doesn't include code. If we produce an exhaustive list of all the methods by which IPC can be achieved, however archaic, he'll dismiss the lot, and then spend the rest of his life pondering this simple problem

  • Exceptions - how to access data in stack frames?

    Presently when an exception is thrown, the stack trace with line numbers can be printed.
    e.printStackTrace().
    I feel that it is equally important to be able to print out the state ie. the data at each step of the stack frame.
    By data, I mean local and member variables, method parameters. This could be very useful.
    Question: is the data in the stack frame (including frames below the current one) accessible from a catch block?
    thanks,
    Anil Philip
    Kansas City, MO
    Software Engineer,
    Sprint PCS

    Hello Anil,
    You have my permission to post my reply at the forums. And you are correct that the approach I mentioned (which many developers follow) works only with the current stack frame.
    All the best.
    Jeff
    -----Original Message-----
    From: Jeff Friesen [mailto:[email protected]]
    Sent: Tuesday, March 04, 2003 1:42 PM
    To: Philip, Anil [PCS]
    Cc: Jennifer Orr
    Subject: Reply to your question
    Hello Anil,
    Being able to obtain current state values from within a catch clause is helpful in figuring out what a program was doing just
    prior to an exception. (When catch clauses are left empty, there's obviously no need to obtain those values.) To obtain the
    current state values (found in local variables, method parameters, and member -- field -- variables), developers typically do
    the following:
    1) Subclass an appropriate exception class (such as Exception for checked exceptions or RuntimeException for unchecked
    exceptions).
    2) Within the subclass, declare private field variables to hold appropriate state values.
    3) Within the subclass, declare some combination of a constructor and setter methods to initialize those field variables to
    current state values.
    4) Within the subclass, declare getter methods to return those state values.
    5) Just before throwing an exception, create an object from the exception subclass and populate that object (via constructor
    and setter methods) with current state values found in local variables, method parameters, and fields.
    6) From within the appropriate catch clause, call the getter methods to obtain the state values.
    What I've just stated is commonly done by developers. Why doesn't Sun provide an automatic means for obtaining all these
    values? In other words, why doesn't Sun do much of the above work for you? I personally believe that performance has a lot to
    do with the answer. When you think about the potentially infinite number of local variable, method parameter, and field
    combinations, an automated mechanism to accomplish this task would be time-consuming -- like garbage collection. For the
    many catch clauses that don't require access to state values, the time needed to retrieve such values wouldn't be justified. (I'm
    sure better reasons than the performance reason I've given can be stated: I can't think of any other reasons, at the moment.)
    In closing, my suggestion is to design appropriate exception classes that capture just the amount of state needed to figure
    out why an exception has occurred and properly recover from that exception.
    Jeff
    P.S.
    As to your "is the data in the stack frame (including frames below the current one) accessible from a catch block," my answer
    is that it's accessible if you've stored those values in an exception object prior to throwing the exception. Otherwise, I
    don't believe it is accessible -- at least not from StackTraceElement or the Reflection API.

  • Access to the JAVA Stack of PI system

    Hi,
    User want access to JAVA Stack in PI System.
    Below is the message while user try to logon to Integration Builder in SAP NetWeaver for the PI Portal:
    "No authorization for this action".
    Kindly let us know how access to JAVA stack is possible?
    Thanks and Regards,
    Sachin.

    Hi,
           At present i would like to go for Alert configuration as Raja sekhar suggested. I reffered number of blogs contains how to get alert mail (through Alrtcatdef and scot ) but i need how to get Alert as SMS. where can i specify the mobile numbers and how to do it. Please do the needful.
    Regards,
    srihari.

  • How to add SAP PI 7.1 JAVA stack in solution manager

    Hi,
    I just added PI system in solution manager.For ABAP stack it is working fine.
    Could you please help me that, how can I add java stack of PI system in solution manager?
    If it is through NWA in PI what will be the steps?
    Regards
    Amit

    Hi,
    could you please more specific as I am new to this one?
    In my PI system SLD Data supplier is already configured for other system.
    How can I do this using NWA for solution manager.
    regards
    Amit

  • How to access calendar rules via java

    Hi to all,
    We have a process in which we need to set a Timer, but the date must be validated against Calendar Rules. We searched in forums, webs, documentation and we couldn't find a way to do this.
    I know it is possible to set an expiration date based on Business Calendar on a Human Task (deadline tab in Human task editor), but this is not what we need.
    We actually need a way to set a variable date in the process that can handle only business days. e.g.: 'now' + 2 business days.
    Right now we are setting the Timers with this expression from a Business Rule: Duration.from string("PT48H")
    Then I associate the business rule output with a Time type variable(deadlineTime) doing: 'now' + deadlineTime
    So right after that I can use the Time variable on a timer attached to the human tasks I need. * We need to use business rules because the customer may want to change the times accordingly to their needs through BPM Composer. *
    The problem is that this solution does not take into account Saturday and Sundays (holidays are a concern too).
    We need to set the expiration time to timers attached to human tasks, but the time should consider working days only. We consulted with experts from Oracle and told us that functionality is available in the PS 6 version. At the moment it is impossible to migrate to that version. I need to know how to access via Java APIs to the calendar rules for checking programmatically.
    JDeveloper version: 11.1.1.6
    Any suggestion?
    Thanks in advance
    Marcelo

    Hi Yarner,
    Once you have all your dll included in a jar and used the nativelib tag, you have to use, at the beginning of you application, the command System.loadLibrary to load all the dll you need. Including the ones called by the others you have direct access.
    The dll�s have to be explicitly loaded in the order they are called.
    For example: you use lib1.dll and lib2.dll. The lib1.dll needs lib0.dll.
    Even if you don't use lib0.dll directly, once its called by lib1.dll you have to put then in the order.
    System.loadLibrary("lib0.dll");
    System.loadLibrary("lib1.dll");
    System.loadLibrary("lib2.dll");
    I hope it may help you, good luck.
    Mario

  • How to install java stack pathes

    hi friends
         i have installed EP and DI in a box and  sp level is sp09. now i want to apply upto sp13. i got sp 11 java stack with  the softwaer  its in dvd and its having lable.asc file . i would like to know how apply it .
    my question is
    1 . how to install the java stack sp 11 dvd which contains (lable .asc).
    2 . do i need to  fallow the sequence to apply the stacks. like (sp 10,11.12,13) only java stack
    3. what is the processor to apply stacks .
    4 . can i  install the stacks when the system is down.
    its urgent
    regards
    raja

    Hi,
      You can apply stacks when server is running. Make sure server is up and running. You can then start installing the stack 13 directly. (No need for 10, 11,12 etc).
    Regards,
    Harini S

Maybe you are looking for

  • Update desktop (beige) G3 from OS 8.6 to 9.0 or higher

    hello. please excuse if this sounds like a dumb question, but, here goes. i gave my sister my G3 desktop (beige) years and years ago. she's just starting to use it now. it is working on the OS 8.6 system. i think she should upgrade to a higher versio

  • Usb pci1033,e0 Enhanced Host Controller G5 PowerPC 1.8GHz

    Hi every one need help to sort this silly problem out We have a PowerPC G5 1.8 duel fitted with 8GB ram - everything works great until I ftted this USB PCI card We have just fitted a PCI card into it: usb pci1033,e0 Enhanced Host Controller (into slo

  • Desktop touch?

    Does Photoshop CC work as a touch application on a Windows 8 desktop with a 27" screen?

  • Mobo swap affect current RAID 0 Config??

    Hi guys, I need your help. I,ve just received this K8N Neo Plat mobo, currently i have an ABIT KV8 with RAID 0 enabled (VIA Chipset) 2x 120Mb Hardisk SATA 7200rpm, 8Mb cache both from Seagate & Maxtor. My question is, if change my old mobo (VIA K8T80

  • Dbconsole and internet

    Hi everyone, I have installed oracle 10g on my windows xp professionnel but i have a problem about the enterprise manager and internet. when i turn on my pc with the internet connection and i try to start the service dbconsole i get an error (code 2)