Is there a way to verify if JAVA stack is running w/o a browser

I wonder if it is possible to tell whether a java stack is running OR not from ECC GUI.
In other words, do not use a browser, do not use a URL, do not use OS level, how to
tell from a t-code only.
Thanks!

Use TCODE SMICM
Goto --> HTTP Server --> Display data
Check value of J2EE Server operational = True(If J2EE Running) or False(If J2ee not running)
Also, in logs of SMICM you can see entry indicating status of J2EE engine = 1 (When Started)
                                                                                = 0 (When Shutdown) 
Hope this helps.
- Nirav.

Similar Messages

  • Is there a way to verify SAP certification credentials?

    Hi,
    Is there a way to verify SAP certification credentials?
    I passed the test and did not receive any materials from SAP
    Trying to figure out if I can be verified by myself.
    I am not sure which forum to post this question.
    I could not find suitable forum for this. If anyone knows a better place, please advise me so.
    Since I regularly contribute to this place, I have started with this forum.
    Thanks

    I don't know how to close this unless I mark this answered. Do I miss any?
    thanks

  • Is there any way to write a Java prg without main()

    I would like to know Is there any way to write a Java program without using main() function.

    > i am unable to execute the program ..............i
    think there must be a main method through with the
    program starts
    The program can be compiled and run. After running it, you'll see "They'll kill you for that" followed by something like "java.lang.NoSuchMethodError: main" and finally someone with a big Volvo will burst into your room and runs you over.

  • Is there any way to transfer itunes from a mac running 10.4 to an iphone 5

    Is there any way to transfer itunes from a mac running 10.4 to an iphone 5?

    Nope. Very least is to have Snow Leopard and the latest iTunes on the Mac.

  • Is there any way to limit the number of Threads running in Application(JVM)

    Hello all,
    is there any way to limit the number of Threads running in Application(JVM)?
    how to ensure that only 100 Threads are running in an Application?
    Thanks
    Mohamed Javeed

    You should definitely use a thread pool for this. You can specify maximum number of threads that can be run. Be note that the thread pool will only limit the number of threads that are submitted to it. So donot call "Thread"s start() method to start thread on your own. Submit it to the pool. To know more, study about executor service and thread pool creation. Actually it will not be more than 20 line code for a class and you might need maximum of 2 such classes, one for threadPool and other one for rejection handler (if you want).
    Just choose the queue used carefully, you just have to pass it as a parameter to the pool.
    You should use "Bounded" queue for limiting threads, but also be careful in using queues like SynchronizedQueue as the queue will execute immediately the threads submitted to it if maximum number of threads have not been running. Otherwise it will reject it and you should use rejection handler. So if your pool has a synchronized queue of size 100, if you submit 101th thread, it will be rejected and is not executed.
    If you want some kind of waiting mechanism, use something like LinkedBlockingQueue. What this will do is even if you want 100 threads, you can specify the queue's size to be 1000, so that you can submit 1000 threads, only 100 will run at a time and the remaining will wait in the queue. They will be executed when each thread already executing will complete. Rejection occurs only when the queue oveflows.

  • Is there a way to create a Java class based on what's defined in a schema?

    I have a set of schemas that define what messages I will get as an XML stream (sent as UDP packets). Is there a way to parse the schemas into a set of java classes that match the fields in the schema? If so, next think would be to feed a string or byte array to instances of these objects and have a method that parses it and fills all the fields. But is the first part possible? Somebody linked http://www.cafeconleche.org/books/xmljava/chapters/ in another thread, but that seems to be for regular XML, not schema, unless I'm confused which is entirely possible, I'm new to XML and using it in Java in this way.

    For future reference, [Java API for XML Binding|http://www.dummies.com/WileyCDA/DummiesArticle/Building-Custom-Code-with-Java-API-for-XML-Binding-JAXB-.id-1489,subcat-BUILDING.html] (JAXB) allows for [generation of Java classes|http://www.oracle.com/technology/pub/articles/marx-jse6.html] from XML Schema (or even DTD) using its xjc compiler.

  • Is there a way to handle custom java exception in OSB?

    For example, i created a exception that extends RuntimeException.
    My exception has a new field called "code".
    I want to handle this exception in Oracle Service Bus process and retrieve this code to throws another exception with a XML structure that includes the code.
    Is there a way to do that ?
    <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
         <con:errorCode>BEA-382515</con:errorCode>
         <con:reason>Callout to java method "public static org.apache.xmlbeans.XmlObject ...</con:reason>
         <con:java-exception xmlns:con="http://www.bea.com/wli/sb/context">
             <con:java-content ref="jcid:33a6c126:14006f3df18:-7fd9"/>
         </con:java-exception>
         <con:location xmlns:con="http://www.bea.com/wli/sb/context">
             <con:node>optmusPipeline</con:node>                    
             <con:pipeline>optmusPipeline_request</con:pipeline>
             <con:stage>processStage</con:stage>
             <con:path>request-pipeline</con:path>   
         </con:location>
    </con:fault>
    it is not enough to recover the information i needed.

    Hi Sandro,
    I've got the same situation. I agree that returning xml from function is not a best choice as you have to manually check if return status is an error or not. Processing exception in error handler is better and this is how I do it:
    I am doing a java callout to a function that can throw exception. Then I add ErrorHandler to stage containing this callout (all the exception are caught here).
    In the error handler I check if $fault/ctx:java-exception is not null. If not then I pass thrown exception to my utility function that converts it to xml similar to yours:
    import org.apache.xmlbeans.XmlException;
    import org.apache.xmlbeans.XmlObject;
    public static XmlObject exceptionToXML(Throwable exception)
      throws XmlException {
      String xmlString = exceptionToString(exception);
      return XmlObject.Factory.parse(xmlString);
    public static String exceptionToString(Throwable exception) {
      String cause = "";
      if (exception.getCause() != null) {
      cause = exceptionToString(exception.getCause());
      return String
      .format("<exception><name>%s</name><description>%s</description>%s</exception>",
      exception.getClass().getName(), exception.getMessage(),
      cause);
    Calling exceptionToXML with $fault/ctx:java-exception/ctx:java-content returns:
    <exception>
         <name>pl.app.MyException</name>
         <description>Exception message</description>
    </exception>
    Then you can check the exception class (IF action: $exception/name/text() = "pl.app.MyException") and handle it accordingly.
    Good luck,
    Krzysiek

  • Is there a way to compress using Java deflator & uncompress using UTL ?

    hi,
    I was wondering if there is a way to compress using Java deflator on the java side & then uncompress in the stored procedure. UTL_COMPRESS.LZ_UNCOMPRESS(BLOB) ?
    I tried that, but I'm currently getting Invalid data exceptions..
    The Other option is to use Java Inflator in the Java stored procedure. But I want to avoid java stored procedures.
    Thanks in advance.
    /// java side
    String inputString = loadXML (inputfile);
    byte[] input = inputString.getBytes("UTF-8");
    byte[] output = new byte[inputString.length()];
    Deflater compresser = new Deflater(Deflater.BEST_SPEED, true);
    compresser.setInput(input);
    OracleCallableStatement insertALLStatement = (OracleCallableStatement) con.prepareCall(insertALLSQL);
    InputStream stream = new ByteArrayInputStream(data);
    insertALLStatement.setBinaryStream(1, stream, (int)data.length);
    insertALLStatement.execute();
    // pl sql
    create or replace PROCEDURE INSERTBYTES
    ( compressed IN BLOB
    ) AS
    uncompressed:=UTL_COMPRESS.lz_uncompress (compressed);
    ...

    That depends.
    Does Java Deflator use the same compression technique as UTL_COMPRESS.LZ_UNCOMPRESS? i.e. is it using Lempel Ziff compression algorithms. If so, then, yes, there's a possibility it could work, however it also depends if the Java Deflator stores header information about the compressed data differently to how LZ_UNCOMPRESS expects it, or even if header information is included or it's just raw compressed data.
    It sounds a bit like compressing a file with Yoshi compression and then trying to use PKZIP to uncompress it methinks, in which case you're going to be out of luck. You have to ensure the compression algorithms and file formats are compatible.

  • Is there a way to verify the contents of my Vault?

    I have recently attempted to move my vault to another drive and the process stopped part way through, the receiving drive ( Verbatim Firewire 500 Gig.) stopped and I got the "a drive has been improperly disconnected" type error message and the following pop-up:
    and this when I tried to eject the source drive (WD My Book 500 Gig.)
    I was able to eject it after a relaunch of Finder and a restart of my iMac  I did a disk repair to both the WD drive and the Verbatim drive. The latter had some errors in "Volume" information which were repaired by disk utility and I tried to move the Vault again with the same result again so I wonder whether the Vault file is corrupted and need to know if there is a way to verify the integrity of the files contained in it.

    Hi Kieran,
    You can read and set the tool tips using the .assist.toolTip property:
    this.assist.toolTip = "This is a tooltip...";
    Hope that helps,
    Niall

  • Is there any way to check another Java program running status?

    HI. I want to write a Java program on hand-set but my program seems needs lots of resources and if there is another Java program running on the same hand-set simultaneously, my program will slow down. So, I want to check if there is another Java program is running on the hand-set, my program will show a message to user reminding user to close another program first.
    Is there any way to do so?

    On most recent devices, the application is not terminated but paused by using phone functions, and can be reactivated from the aplication management software. The javax.microedition.midlet package documentation is quite specific, if a tad obscure, about the MIDlet lifecycle and the role of the MIDelt methods vis-a-vis the AMS.
    {color:#0000ff}http://java.sun.com/javame/reference/apis/jsr037/javax/microedition/midlet/package-summary.html{color}
    Parenthetically, I've never been able to figure out how resumeApp should be used, nor have I seen this method invoked in any of the samples that come with the WTK, but I haven't gone through all of them.
    I believe the still-in-progress MIDP3 will make it possible to have MIDlets that share the screen with native apps and which can be minimized and restored.
    db

  • Is there any way to verify or repair an MP3 File?

    I've got a Rio Cali MP3 Player. I occasionally have problems with MP3's -- they won't play. I may upload 140 tracks to the Rio's memory card, and out of the 140, 3 or 4 tracks won't play. They play fine in iTunes and there doesn't seem to be anything wrong with them, however they won't play on the Rio, even if I reload them.
    This makes me suspect that there is something wrong with the MP3 file, however I can't figure out what's wrong or how to verify the file.
    Is there some way I can check and repair a damaged MP3 file -- perhaps a mac or unix utility?

    MP3Trimmer will give you a report of what problems it
    encountered. You will have to scroll through a long
    list of the frames though. Unfortunately as you have
    pointed out it does not batch process files,
    something i have long asked him to implement, amongst
    other things.
    The report may identify that there were problems
    which at least tells you were you stand.
    Thanks. I'll take a closer look at MP3Trimmer and see if I can figure out exactly what's happening with the error files.
    Definitely try changing your format for those
    particular problem files and see if that fixes
    things.
    The other thing is to examine your original CD for
    defects if the problems reappear at the same point. I
    have found that CD drives with diferent lasers can
    give different results. When my slower dual layer
    DVD/CD drive in my iMac G5 fails me I will often
    successfully use my high speed external CD burner.
    Also give the CD a careful wipe with an optical
    (glasses) cloth it may just be a smudge or grime on
    the surface.
    I have had problems with CDs. I typically copy all the AIFF's to my HD first, and have had some files not copy. I usually try cleaning the disk or use a different CD reader for those files. I usually manage to get all the AIFFs onto my HD, where I run an Applescript that renames the files. I then import them into iTunes where i rip them and add ID3 tags. They rip and play fine i iTunes.
    I noted your settings. I do a heck of a lot of what
    you are talking about and have a How to make
    Audiobooks "manual" floating around the net.
    I'll do some trolling and see if I can find it.
    I suggest you forget the VBR, it makes little
    difference to a 32kbs MP3 ripped from a good quality
    source but as I have noted seems less reliable.
    Sounds like a good suggestion. I haven't done any size comparisons with and without VBR, but I suspect it's pretty negligible.
    Also I suggest you join the tracks into one file per CD,
    usually 30-60mins long and much less cumbersome than
    hundreds of meaninglessly divided tracks.
    That alone may ride over your problem.
    That might get pretty labor-intensive especially for a 10 or 15 disk set. Plus, the Rio chokes on big files -- I think it's more than the ram can handle. I've downloaded a few books from iTunes and have had to cut them up into smaller segments. I've also found it easier to bookmark smaller files than to try to scroll thru a 30 min track to find the spot where you left off.

  • Is there a way to verify if my Macbook's all right after a fall?

    I bought my Macbook Pro back in 2007, and until tonight I've never done anything worse than dropping it an inch or so onto my mattress, which is hardly going to cause damage. Tonight, though...it slid off a chair and fell three feet onto hard, tiled floor, impacting along the left side of the laptop.
    None of the areas are showing the insides of the computer, there are just small misalignments and a few pretty small gaps, but I really don't know enough about computers to tell if everything inside is all right, and my Applecare expired months ago. And since I'm utterly broke, I seriously can't afford to send it in and pay out of pocket, or buy a new machine.
    I know the SMART status is verified, and the few functions I've tried since the fall - opening, using, switching, and closing programs, as well as adjusting volume and lighting - all seem fine. There was a minute right after, though, when Finder stopped responding and then nothing but the mouse was working. I left it alone and it swung back into action pretty quickly, but it definitely makes me nervous, I don't want to take anything for granted.
    So yes. My question boils down to this - are there any programs I could install, tests I could run, or anything else I could examine, to determine whether or not the hardware is still all right?

    Run the Hardware tests from the install DVD by inserting it and holding down d at a restart, that will check everything and give you a good idea of how it's doing.

  • Is there a way to affect the URL used when running a report subscription?

    We are using SQL Server 2008 R2.  I am finding out that when running a report subscription to extract a file in csv format, an extra blank line is created at the bottom (i.e., extra line feed), and the mysterious BOM characters also get inserted at
    the beginning.  Both of these "features" are causing problems with a client's import of these files.  Of course, it affects multiple clients.
    I have done some research and have found information on how to edit the rsconfigserver file to render CSV files using ASCII and to not use Excel formatting.  This removes both "features"/problems stated above.
    However, editing the server config file will affect all csv extractions on that report server.  Is there a way to control the URL of a specific report subscription to include these values (so only the reports that need the fix get it)?  For example,
    someone gave this URL as an example of how to add parameters including encoding in the URL.   http://MyReportServer/ReportServer?%2fReport+Folder%2fReportName&rs:Command=Render&rs:Format=CSV&rc:Encoding=ASCII
    Is there a way to have the report subscription run the report using a URL like this so it extracts it without the BOM characters?  I was thinking a data driven subscription would allow me to set the values like this, but these parameters are only pertinent
    AFTER the report is run and only needed for the final rendering.  Not sure how to do this. Maybe it's not possible. If it's not, that's fine.  I just need to write a proposal to our DBA's to talk them into making a couple edits to the server config
    file.
    Has anyone ever worked around this before in SSRS?
    Thank you!!
    Dana

    Hi DanaSSRS,
    According to your description, you want to have some report exported into CSV file with ASCII encoding when running a subscription. Right?
    In Reporting Services, when we run the subscription, it will call the Render Extension as we configured in rsreportserver.config file, we can't set the Render format with ASCII Encoding on subscription level. As you said, the Render Extension we configured
    in the rsreportserver.config will apply to all reports. In this scenario, you only want that extension apply to specific reports. For your requirement, we suggest you add a custom Render Extension in configure file. You just need to copy the CSV Extension
    and add a <OverrideNames/> to override a new name. Then set the <Encoding> in <Configure>. And you can select this custom Extension when creating the subscription. This might be the most effective workaround.
    Reference:
    Customizing Rendering Extension Parameters in RSReportServer.Config
    CSV Device Information Settings
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Is there a way to force System.out.println to run when called

    I working on my first threaded program and having a hard time debugging. I've used System.out.println to let me know what's going on but due (I assume) to the nature of threads the output is not sequential. Is there a way to force println to execute immediatly so that they show up in the order they were called?
    Thanks --- Mike

    mjs1138 wrote:
    endasil, Thanks for the reply. I'm currenlty running the program from within the NetBeans IDE. It is the output displayed by in NetBeans "output" that I'm looking at.
    --- MikeI don't use Netbeans, but I would guess that it too pipes Standard Out and Standard Error to the same console. You didn't address my comment. Are you printing to System.err as well? This happens implicitly if you use Exception.printStackTrace(), for example.

  • My iPhone 4 does not "switch" from portrait to landscape mode in any app. Is there a way to fix this? I'm running 5.0.1

    My phone does not toggle between landscape and portrait mode any more. This is, as far as I tested, in any application. Is there any way to fix this?

    Hi ckuan,
    Thanks a lot for that fast reply. Must have touched that lock button by mistake without noticing.
    Stupid me :-D. Btw happy new year!!!!!

Maybe you are looking for

  • Problem with get in to iTunes store

    I Cant  get in to iTunes store from my iPhone or iPad  sól i can check accout history!

  • Rollup process is failing every day

    Hi, Bi statistics data is loading to info cube and this cube have Adjust process in process chain. Adjust process is failing daily and giving following 18 messages and showing 16th  point as error. And one more thing is, even though Adjust process is

  • Online number does not ring

    My online number does not ring on my computer...it has in the past and all of a sudden it no longer rings...what is the problem....all sound and speakers work correctly it doesnt even show an incoming call only registers that the number has called

  • N96, USB Connection Problems.

    Iv Used the USB device before to transfer films and music to the handset but whenever i now put the USB device into the headset the Internet connection option pops up and when i cancel it it just pops up again. anyway to fix this ? Thanks

  • How do I get purchased iTunes moves onto my android tablet?

    Trying to good some good movies I bought using some iTunes gift cards onto my android tablet but it's not working. Any advice?