JMF bundlejava.lang.RuntimeException: No permission to capture from applets

Hello!
I'm developing a SIP Softphone Applet which works with Java Media Framework 2.1 (uses RTP).
I want to make a jmf bundle for my applet, that is very important for me, because users will not install Java Media Framework.
I have done a jar which contains unpacked JMF, it works very nice when I lunch my applet (jar) as a simple Java application, but NOT IN BROWSER...
I have used JMFRegistry for generate a jmf.properties file that allows devices to be captured from applets...
When I try to run my application from browser one error appears : java.lang.RuntimeException: No permission to capture from applets, because the jmf.jar doesn't detect jmf.properties...
I don't need to use system variables (CLASSPATH), registry because it will require a restart of the system.
Sorry for my bad English and I wish that I have exposed my minds correctly.
Help me please!!!
Thanks!!!

Hi!
1.Are you getting this error in Vista or XP ?
Response:
I have this error on XP. (I've tried this on the Vista, but there are some problems with JMF...)
2. If XP,
a) Do you have any service packs installed in your system ?
Response:
Not, I haven't installed any Service Packs.
b) Which browsers you tried ? In all browsers are you getting this error ?
Response:
I'm tried on Internet Explore and on Firefox. The error is in both browsers.
3. For your Java Application requires JMF to be installed in client machine ?
Response:
Not, I don't need to install JMF on client machine, because I must to bundle JMF in my application...
4. How to create a jar with unpacked JMF ? (is it jmf installer from sun)
Response:
Yes, there is a installer from sun (for Windows is .exe, but on linux there are some problems: some packages are missed).
I use Intellij Idea to develop my Softphone and in this IDE there is a nice plugin "Jar Tool", which can help you to archive...
I have tried to unjar JMF with 7zip, after that I make a jar with Netbeans IDE and it works...
5. Did you singed your applet ?
Response:
Sure, I've signed my applet...
Good luck, friend... If you will resolve this problem (to include jmf.properties somewhere and applet will work from browser...) tell me please...

Similar Messages

  • Java.lang.RuntimeException: No permission to capture from applets

    i am getting this proble is anybody can help me plz

    java.lang.RuntimeException: No permission to capture from applets
    i have designed applet which capture the audio from comp
    when i run in the browser then it gives exception
    i am useing jdk1.5.0
    windows 2000 server oprating system

  • Finally.... Video captured from applet in Vista!!

    Hello!
    Hurray!! finally I can see myself smiling and waving back in browser in Vista.
    I mentioned in another thread just a day earlier that I will post a new topic if I succeed in capturing from applets in Vista, so thats what I am doing.... This thread is all about how achieved it.
    I have seen many posts mentioning problems in capturing from applets in vista. I was also one of the sufferer. And most people including me blamed that on restricted sandbox of Vista. But surprisingly it was all about classpath.
    I think I mentioned in some earlier thread that the 'Java console' shows the classpath to be *"{JREHOME}/classes"* instead of the classpath specified in CLASSPATH environment variable. You can check that by pressing 's' which *'dumps system and deployment properties'* in the Java Console. You can check the classpath by noting the value of *"java.class.path"* field which for my case was"C:\\PROGRA~1\\Java\\jre6\\classes". This turned out to be the main problem. The applet was not accessing any classes from the real CLASSPATH instead it was considering the classpath to be jrehome/classes. So, now I had enough hint what to do next. I simply created a folder 'classes' in {JREHOME} and copied the jmf registry files to that folder. By registry files I mean *'jmf.properties'* and *'jmf.properties.orig'* files in *'{JMF Install}/lib'* folder (actually i don't which among them has got some thing to do with the registry but I copied them both). So, after doing this, all my capture applets, whether signed or unsigned started running. Earlier they all were throwing *"java.lang.RuntimeException: No permission to capture from applets"* exception even after I have allowed capture from applets in JMF registry. That was perhaps not taking affect because of classpath issues. So, thats the story.... if someone faces the same problem he can use this workaround or you can say hack ;-)
    Some questions which can be asked from me would be:
    1- Did you set your CLASSPATH environment variable correctly?
    ans: Yes, infact all my jmf applications were running correctly, the problem was only with the applets.
    2- What classpath other systems (e.g. XP) mention in the Java console ?
    ans: surprisingly, the same classpath that Vista mentions i.e. {JREHOME}/classes. I tested on XP-SP3, but it supposedly had access to the real CLASSPATH also.
    3- Is this problem really Vista specific?
    ans: Can't say... but it can be. It maybe the case that Vista does not allow access to real CLASSPATH, but this problem can easily be my system specific, it would be called a general vista problem if this happens on all Vista systems, I need volunteers for this test. captfoss, can you please test this on your system? :)
    4- Is this problem JMF specific?
    ans: Chances are low. I am going to test this by making my own test library and adding it to classpath and then try to access it via applet. If this fails then this problem is not JMF specific.
    Drawbacks of this work around:
    1- This can be a pain for ordinary users , copying registry files from JMF/lib to JRE/classes.
    2- Whatever you change in JMF registry would not be effective to the applets. As the old registry files are to be replaced with new registry files every time JMF registry is changed for changes to take effect in applets.
    The real big question:
    How can we force Vista to look in the real CLASSPATH? this is the real question, if this can be done just by changing some settings then all this workaround is useless :) I am looking forward to the answer of this question.....
    captfoss, I would highly appreciate your comments.
    Thanks for reading this rather long post.... :)
    Thanks!

    A couple of comments here...the answer is, in fact, no, you didn't set your classpath correctly. One, you're probably using a JAR file to run your applet from (I'm not an applet programmer but I do believe that a JAR is required) which do not use the environment's classpath, they use their manifest classpath. No, the applet was not jared.
    Second, I believe that the browser itself specifies its own classpath, which you cannot modify. I believe this would be considered a security feature...Both IE7 and firefox3 fail.
    "You have little control over the CLASSPATH used by a browser for an Applet"
    [http://mindprod.com/jgloss/classpath.html]
    Ok this maybe the reason, I will go through the link....
    2- What classpath other systems (e.g. XP) mention in the Java console ?
    ans: surprisingly, the same classpath that Vista mentions i.e. {JREHOME}/classes. I tested on XP-SP3, but it supposedly had access to the real CLASSPATH also. There isn't a "real" CLASSPATH, there is just the classpath stored as an environmental variable. It's no more or less real than the one in the browser.Thats what I thought.... but I think {JREHOME}/classes is the default class path used by the jre whether we set any CLASSPATH variable or not it would be there, something of that sort.....
    Lots of possibilities, but my best guess is that Vista doesn't let code running in the browser read environmental variables.Yes, I fully agree with this. I think I should file a bug report.
    4- Is this problem JMF specific?
    ans: Chances are low. I am going to test this by making my own test library and adding it to classpath and then try to access it via applet. If this fails then this problem is not JMF specific. Definately not. It would apply to any code that wants to access something on the classpath. You are right... as I said I would test it, I tested by making a small library, added it to classpath, made an application and an applet. As expected, the aplication worked while the applet failed.
    Any application with a custom classpath would be affected.I don't understand what you mean here, do you mean 'Class-path' header in jar manifest?
    I like the "installation requirement" part. I'd suggest looking into that. Alternately, there may be something in the security settings to allow access to environmental variables.I will try to look into both.
    I just tried this statement in applet:
    System.out.println( System.getProperty( "java.class.path" ) );It threw this exception:
    Exception: java.security.AccessControlException: access denied (java.util.PropertyPermission java.class.path read)
    I don't know what conclusion should I draw from this... this does mean applet has no right to know what the classpath is.... but this doesn't mean even jre plugin responsible for running applet does not know what the classpath is :)
    Finally, I want to say that due to some problems I could not post earlier, and I may not post for few more days. But I appreciate your comments and would appreciate more of them.
    Thanks!

  • JMF 2.1.1 audio capture from an applet

    I'm trying to write an implementation of a soft phone as an applet. All I want the user to do is download the JRE and browse to my web page. I've included the JMF jar files in my applet and signed it. My problem is that even though the applet is signed, I still can't capture audio from it. I keep getting "java.lang.RuntimeException: No permission to capture from applets." Is it possible to write an applet that can capture audio without requiring the user to install the JMF or modify their policy files? I am using JMF 2.1.1e and JRE 1.6.0_02
    Thanks,
    Phil

    Well, there's lots of bad news, and some good news.
    Applets have always been problematic, and are
    becoming more so by the quarter. That is entirely
    without putting JMF into the mix.
    As you may have figured by now, JMF will not work
    in applets unless it has already been installed,
    even then, the installer will ask during installation
    if the end-user wishes to 'Allow applet capture' and
    that defaults to false.
    A far better alternative for launching JMF for a
    project that comes from the internet, is using
    JWS (Java web start) to launch an application (or
    applet) as a free floating GUI. I had an example
    of this up at my JavaSaver site, but unfortunately
    JavaSaver is offline for the time being.
    In any case, I think you have it mostly wrong by
    looking to the JMF, since JavaSound was introduced
    into the J2SE around Java 1.3.
    I recommend looking to JWS to launch a trusted
    Java application directly onto screen, that uses
    the JavaSound API for the recording.
    I have an example here, of a sound based JWS app.
    <http://www.physci.org/sound/audiotrace.html>
    The source of an early version is also available..
    <http://www.physci.org/test/oscilloscope/AudioTrace.java>
    Other tests I did (not finished) indicated it
    was quite possible to capture sound and record
    it to disk (AudioTrace makes no attempt to store
    the audio signal, just plot it on-screen) using
    the J2SE sound API.

  • Java.lang.RuntimeException: Caller doesn't have enough permission to call this method

    Hi,
    I am trying to abort a composite instance from SOA BPM Worklist.
    I was able to do the same using weblogic 10.3.6 and SOA 11.1.1.6
    Now, I am using weblogic 10.3.6 (same server) and SOA 11.1.1.7 . I have done the complete FacadeFinderBean and SOATestBean JNDI setup on my servers.
    I am getting the below error now.
    Caused by:  An error occurred while aborting or purging composite instance.
    Caused by: java.rmi.RemoteException: EJB Exception: ; nested exception is:
      java.lang.RuntimeException: Caller doesn't have enough permission to call this method.
      at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:237)
      at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:223)
      at oracle.soa.management.internal.ejb.impl.FacadeFinderBean_4vacyo_FacadeFinderBeanImpl_1036_WLStub.getCompositeInstances(Unknown Source)
      at oracle.soa.management.internal.ejb.EJBLocatorImpl.getCompositeInstances(EJBLocatorImpl.java:401)
    Caused by: java.lang.RuntimeException: Caller doesn't have enough permission to call this method.
      at oracle.soa.management.internal.ejb.impl.BaseSOABeanImpl.checkSecurityRole(BaseSOABeanImpl.java:55)
      at oracle.soa.management.internal.ejb.impl.FacadeFinderBeanImpl.getCompositeInstances(FacadeFinderBeanImpl.java:913)
      at oracle.soa.management.internal.ejb.impl.FacadeFinderBeanImpl.getCompositeInstances(FacadeFinderBeanImpl.java:905)
      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:597)
    Please provide your valuable inputs to solve the issue.
    Thanks and Regards,
    Vijay

    Hi,
    I was able to solve the issue by a workaround >>>
    Set the facade.security.check system property to false in setDomainEnv.sh on SOA domain under java_options
    -Dfacade.security.check=false
    Regards,
    Vijay

  • Exception: java.lang.RuntimeException: Caller doesn't have enough permission to call this method.

    Hi All,
        I am getting the exception "Exception: java.lang.RuntimeException: Caller doesn't have enough permission to call this method.", when i try to execute the code  "Composite MFTComposite = (Composite)locator.lookupComposite(compositeNameRevision); ".Below mentioned the sample code , i am using this code for getting the running instances.
    try{   
              String componentInstanceID = new Long(getInstanceId()).toString();   
              addAuditTrailEntry("Component Instance ID is "+componentInstanceID);   
              Locator locator = LocatorFactory.createLocator();   
              addAuditTrailEntry("Created locator..");   
             String compositeRevision = (String)getVariableData("compositeRevision"); 
    addAuditTrailEntry("compositeRevision..1111"+compositeRevision);   
              String compositeNameRevision = "ManagedFileTransfer/MFT!" + compositeRevision;
              Composite MFTComposite = (Composite)locator.lookupComposite(compositeNameRevision);  
              addAuditTrailEntry("MFT Composite lookup complete..setting filter");   
              CompositeInstanceFilter filter = new CompositeInstanceFilter();   
              filter.setState(CompositeInstance.STATE_RUNNING);  
              filter.setTitle((String) getVariableData("transferName"));  
              List<CompositeInstance> instances = MFTComposite.getInstances(filter);   
              StringBuffer message = new StringBuffer();  
              if ((instances != null) && (instances.size() > 1)) {   
                  addAuditTrailEntry("currently running MFT Instances..");   
                  for (CompositeInstance instance : instances) {   
                    message.append("Instance: " + instance.getId() + " Creation date: " + instance.getCreationDate() + ",");        
                    addAuditTrailEntry("Instance: " + instance.getId() +   
                                 " creation-date: " + instance.getCreationDate());  
              setVariableData("runningInstance", message.toString());    
            } catch (Exception ex) {   
                setVariableData("runningInstance", ex.getMessage());  
                addAuditTrailEntry("Exception: " + ex);   
    Appreaciate your quick response.
    Thank You,
    Vamsi.P

    Hi Vamsi.P,
    Try something like below... Using weblogic admin credentials...
    Hashtable props = new Hashtable();
    props.put(Context.SECURITY_PRINCIPAL,   "fred");
    props.put(Context.SECURITY_CREDENTIALS, "seafood");
    Locator locator = LocatorFactory.createLocator(props);  
    Cheers,
    Vlad

  • Java.lang.RuntimeException: Could not find the OffLine WLST class

    Installation of OIM On weblogic.
    oracle/oim/xellerate/setup/setup.xml:443: The following error occurred while executing this line:
    /oracle/oim/xellerate/setup/weblogic-setup.xml:196: java.lang.RuntimeException: Could not find the OffLine WLST class
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:384)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at org.apache.tools.ant.Main.runBuild(Main.java:668)
    at org.apache.tools.ant.Main.startAnt(Main.java:187)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    Tried to run this command ./wlst.sh
    shows
    CLASSPATH=/home/oracle/bea/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/home/oracle/bea/patch_cie660/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/oracle/jdk/lib/tools.jar:/oracle/weblogic/server/server/lib/weblogic_sp.jar:/oracle/weblogic/server/server/lib/weblogic.jar:/home/oracle/bea/modules/features/weblogic.server.modules_10.3.0.0.jar:/oracle/weblogic/server/server/lib/webservices.jar:/home/oracle/bea/modules/org.apache.ant_1.6.5/lib/ant-all.jar:/home/oracle/bea/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar:
    PATH=/oracle/weblogic/server/server/bin:/home/oracle/bea/modules/org.apache.ant_1.6.5/bin:/oracle/jdk/jre/bin:/oracle/jdk/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/oracle/bin:/home/oracle/bin:/oracle/jdk/bin
    Your environment has been set.
    CLASSPATH=/home/oracle/bea/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/home/oracle/bea/patch_cie660/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/oracle/jdk/lib/tools.jar:/oracle/weblogic/server/server/lib/weblogic_sp.jar:/oracle/weblogic/server/server/lib/weblogic.jar:/home/oracle/bea/modules/features/weblogic.server.modules_10.3.0.0.jar:/oracle/weblogic/server/server/lib/webservices.jar:/home/oracle/bea/modules/org.apache.ant_1.6.5/lib/ant-all.jar:/home/oracle/bea/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar::/oracle/weblogic/server/common/eval/pointbase/lib/pbembedded57.jar:/oracle/weblogic/server/common/eval/pointbase/lib/pbtools57.jar:/oracle/weblogic/server/common/eval/pointbase/lib/pbclient57.jar
    Initializing WebLogic Scripting Tool (WLST) ...
    Problem invoking WLST - java.lang.RuntimeException: Could not find the OffLine WLST class

    try Problem invoking WLST - Could not find the OffLine WLST class the last post on this thread, he claims to solve the problem...

  • OIM Installn :java.lang.RuntimeException: Could not find OffLine WLST class

    Installation of OIM On weblogic.
    oracle/oim/xellerate/setup/setup.xml:443: The following error occurred while executing this line:
    /oracle/oim/xellerate/setup/weblogic-setup.xml:196: java.lang.RuntimeException: Could not find the OffLine WLST class
         at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
         at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:384)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at org.apache.tools.ant.Main.runBuild(Main.java:668)
         at org.apache.tools.ant.Main.startAnt(Main.java:187)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    Tried to run this command ./wlst.sh
    shows
    CLASSPATH=/home/oracle/bea/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/home/oracle/bea/patch_cie660/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/oracle/jdk/lib/tools.jar:/oracle/weblogic/server/server/lib/weblogic_sp.jar:/oracle/weblogic/server/server/lib/weblogic.jar:/home/oracle/bea/modules/features/weblogic.server.modules_10.3.0.0.jar:/oracle/weblogic/server/server/lib/webservices.jar:/home/oracle/bea/modules/org.apache.ant_1.6.5/lib/ant-all.jar:/home/oracle/bea/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar:
    PATH=/oracle/weblogic/server/server/bin:/home/oracle/bea/modules/org.apache.ant_1.6.5/bin:/oracle/jdk/jre/bin:/oracle/jdk/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/oracle/bin:/home/oracle/bin:/oracle/jdk/bin
    Your environment has been set.
    CLASSPATH=/home/oracle/bea/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/home/oracle/bea/patch_cie660/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/oracle/jdk/lib/tools.jar:/oracle/weblogic/server/server/lib/weblogic_sp.jar:/oracle/weblogic/server/server/lib/weblogic.jar:/home/oracle/bea/modules/features/weblogic.server.modules_10.3.0.0.jar:/oracle/weblogic/server/server/lib/webservices.jar:/home/oracle/bea/modules/org.apache.ant_1.6.5/lib/ant-all.jar:/home/oracle/bea/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar::/oracle/weblogic/server/common/eval/pointbase/lib/pbembedded57.jar:/oracle/weblogic/server/common/eval/pointbase/lib/pbtools57.jar:/oracle/weblogic/server/common/eval/pointbase/lib/pbclient57.jar
    Initializing WebLogic Scripting Tool (WLST) ...
    Problem invoking WLST - java.lang.RuntimeException: Could not find the OffLine WLST class
    Edited by: user10213645 on Mar 9, 2010 3:37 PM

    There is an existing Bug 8431390 - WLST NOT WORKING IF WE USE NON-DEFAULT INSTALLATION (WL_HOME OUTSIDE BEA_HOME)
    As per this bug, the issue can be reproduced as follows:
    Steps to reproduce:
    1. Install WLS 10.3GA (essex) kit in a non-default fashion (WL_HOME outside BEA_HOME)
    2. Go to ur $WL_HOME/common/bin directory and execute wlst.cmd
    3. It exits with the following exception:
    java.lang.RuntimeException:could not find the OffLine WLST class
    Hope this helps.
    For more details, refer: http://idm-oracle.blogspot.com/2010/03/javalangruntimeexception-could-not-find.html

  • Java.lang.RuntimeException: Error while creating embedded frame

    hello,
    i know about http://forums.sun.com/thread.jspa?messageID=10273756, but this doens't helped.
    i got a
    java.lang.RuntimeException: Error while creating embedded frame
    at sun.plugin.viewer.WNetscapePluginObject.createFrame(Unknown Source)
    at sun.plugin.viewer.WNetscapePluginObject.setWindow(Unknown Source)
    when starting a complex Java Applet in Firefox (2 + 3). Then the bowser freezes.
    Internet Explorer freezes too, but doesn't left anything in the console.
    Simple applets like http://www.java.com/en/download/help/testvm.xml works fine, but i doesn't know the special thing on my applet that keeps it from running.
    The best thing about it is ... this happens only on some computers, on most systems the applet works as aspected.
    i have no idea, where i should start to search to solve this problem, does anybody have one?
    Systems that doesn't work : Win XP; Java Plugin 1.6.0_06
    Systems that work : Win XP; all Java Plugins

    I solved this problem by correcting a typo in the HTML source:
    I had a error within the DIV tag containing the applet. In this case a TD tag within this DIV contained some bad characters. Such problems could be avoided by using a HTML validator.

  • Java.lang.RuntimeException: Uncompilable source code - missing method body

    Hi,
    I am getting the following error at runtime
    java.lang.RuntimeException: Uncompilable source code - missing method body, or declare abstractwhen I try to instantiate a class using reflexion as following:
    MyInstance = MyClass.newInstance(); I have tried to find some explanation using Google, but could not find any that fit my case. MyClass's implementation has a public constructor with no parameter. There is no error at compile time when cleaning and building all code.
    Anyone has tips about what could cause this error?
    Thanks.

    Jrm wrote:
    It is not my code originally... You are making far too many unchecked assumptions about the reality of this situation to even get close to what that reality it is... Get over patronizing, it would improve your social/people skills... Thanks !It is your own problem that you perceive something as patronizing, while in fact it was only an honest and straight to the point attempt to help you. This forum does not deal in sensitivity, it gets in the way of helping people to see the error of their ways.

  • I am getting a "java.lang.RuntimeException: Error loading file:....NULL content-length." message when attempting to load a jnlp file

    I am the applications administrator for an instance of Galaxy server. In Galaxy there is an option / plugin to opne a BAM file via the Integrative Genomics Viewer (IGV) created at the Broad Institute. When invoked it downloads a jnlp file and launches IGV and then is supposed to open the BAM file in the viewer. However, when it attempts to open the BAM file I get the following error:
    "An Error occurred while loading: http://galaxy/display_application/52cef830ad5766ca/igv_bam/web/29212308ff643a94/data/galaxy_52cef830ad5766ca.bam
    java.lang.RuntimeException: Error loading file: http://galaxy/display_application/52cef830ad5766ca/igv_bam/web/29212308ff643a94/data/galaxy_52cef830ad5766ca.bam NULL content-length."

    UPDATE
    Compiling from command line I found out that the class definition for oracle.oats.scripting.modules.basic.api.IteratingVUserScript is missing. Do you know what .jar file contains this class?
    Thanks.
    Fede.

  • Need help (java.lang.RuntimeException: Unknown/unsupported charset:)

    Hi,
    Previously our application is running fine in
    iPlanet web server 4 and some times in Tomcat. Now we
    are migrating this application to weblogic 8.1 due to
    some load.
    After migrating to weblogic 8.1 we are getting some
    exception.
    The exception is:
    Servlet failed with Exception
    java.lang.RuntimeException: Unknown/unsupported
    charset: - java.io.UnsupportedEncodingException:
    Charset: '' not recognized, and there is no alias for
    it in the WebServerMBean
    at
    weblogic.servlet.jsp.JspParser.parse(JspParser.java:288)
    at
    weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:125)
    In my Jsp page we have top declarations like in the
    below:
    <%@ include file="header.jsp" %>
    <%@ page import="com.customer.customercare.servlet.*"
    %>
    <%@ page import="com.customer.customercare.types.*" %>
    <%@ page import="com.customer.customercare.search.*"
    %>
    <%@ page import="com.customer.customercare.utils.*" %>
    <%@ page import="com.customer.customercare.log.*"%>
    <%@ page import="java.util.Date" %>
    <%@ page import="com.customer.customercare.utils.*" %>
    <%@ page
    import="com.customer.customercare.servlet.handler.*"
    %>
    <%@ page import="java.sql.Timestamp"%>
    <%@ page import="java.text.SimpleDateFormat"%>
    <%@ page import="java.util.StringTokenizer"%>
    <%@ page import="java.util.Calendar"%>
    We are not using any charter sets in the above page
    directory but we are using that in a meta tag:
    <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1">
    This might cause any problem?
    I tried charset=UTF-8, windows-1252 and UTF-16. But i
    am getting the same error.
    The thing is i am not getting this error from the JSP
    page. This jsp page calls a java class, that java
    class has a prepared statement. When the prepared
    statement is executed or before execution, this error is thrown on weblogic console. That
    error is not related to SQL.
    I think "charset" exception means it should come in JSP only. But i don't know why it is coming in the java class? i am confused?
    I don't know why exactly that error is coming...?
    My application is compiled in JDK1.3.1_08 and running
    in weblogic 8.1 which internally uses JDK1.4. Is this
    because of version problem?
    I am creating the .war file from the command prompt
    which path is set to JDK1.3.1_08...
    Can anybody help me out in this problem?
    Thanks and Regards,
    Chandu.

    Hi,
              For this issue,The CR was filed in weblogic 8.1 sp2
              go through the link, you will find CR information in link.
              http://e-docs.bea.com/wls/docs81/notes/resolved_sp02.html#1390392
              -----Anilkumar kari

  • Java.lang.RuntimeException: Cannot find FacesContext

    Error 500--Internal Server Error
    java.lang.RuntimeException: Cannot find FacesContext
         at javax.faces.webapp.UIComponentClassicTagBase.getFacesContext(UIComponentClassicTagBase.java:1855)
         at javax.faces.webapp.UIComponentClassicTagBase.setJspId(UIComponentClassicTagBase.java:1672)
         at jsp_servlet.__servicemethod_jspx._jspx___tag0(__servicemethod_jspx.java:90)
         at jsp_servlet.__servicemethod_jspx._jspService(__servicemethod_jspx.java:65)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    *** Using port 7101 ***
    "C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\bin\startWebLogic.cmd"
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\ext\jdbc\oracle\11g\ojdbc6dms.jar;C:\Oracle\MIDDLE~1\patch_wls1033\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\JDK160~1\lib\tools.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.3.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar
    PATH=C:\Oracle\MIDDLE~1\patch_wls1033\profiles\default\native;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bin;C:\OracleBI\web\bin;C:\OracleBI\web\catalogmanager;C:\OracleBI\SQLAnywhere;C:\Program Files\Java\jdk1.5.0_15\bin;C:\OracleBI\server\Bin;C:\ADE\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\emacs\bin;c:\PROGRAM FILES\TERATERM;C:\CYGWIN\BIN;c:\Program Files\WinZip;\\StCifsRR1.us.oracle.com\packages\windows\packages\farm\farm;\\StCifsRR1.us.oracle.com\packages\windows\packages\farm\sfe\generic;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_18"
    Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
    Java HotSpot(TM) Client VM (build 16.0-b13, mixed mode)
    Starting WLS with line:
    C:\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=C:\Oracle\Middleware\wlserver_10.3\server\lib\DemoTrust.jks -Dhttp.proxyHost=www-proxy.us.oracle.com -Dhttp.proxyPort=80 "-Dhttp.nonProxyHosts=*oraclecorp.com|*oracle.com|localhost|localhost.localdomain|127.0.0.1|::1|sgodavar-pc.us.oracle.com|sgodavar-pc" -Dhttps.proxyHost=www-proxy.us.oracle.com -Dhttps.proxyPort=80 "-Dhttps.nonProxyHosts=*oraclecorp.com|*oracle.com|localhost|localhost.localdomain|127.0.0.1|::1|sgodavar-pc.us.oracle.com|sgodavar-pc" -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Ddomain.home=C:\DOCUME~1\sgodavar\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1 -Dcommon.components.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.domain.config.dir=C:\DOCUME~1\sgodavar\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1 -Doracle.server.config.dir=C:\DOCUME~1\sgodavar\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.security.jps.config=C:\DOCUME~1\sgodavar\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Digf.arisidbeans.carmlloc=C:\DOCUME~1\sgodavar\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\DOCUME~1\sgodavar\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\config\FMWCON~1\arisidprovider -Dweblogic.alternateTypesDirectory=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\DOCUME~1\sgodavar\APPLIC~1\JDEVEL~1\SYSTEM~1.60\DEFAUL~1\oracle\store\gmds -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1033\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    <Oct 5, 2010 10:31:50 AM PDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 16.0-b13 from Sun Microsystems Inc.>
    <Oct 5, 2010 10:31:51 AM PDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401 >
    <Oct 5, 2010 10:31:53 AM PDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Oct 5, 2010 10:31:53 AM PDT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Oct 5, 2010 10:31:53 AM PDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Oct 5, 2010 10:31:53 AM PDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00009. Log messages will continue to be logged in C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Oct 5, 2010 10:31:53 AM PDT> <Notice> <Log Management> <BEA-170019> <The server log file C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <Oct 5, 2010 10:32:01 AM PDT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Oct 5, 2010 10:32:06 AM PDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Oct 5, 2010 10:32:06 AM PDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\access.log00005. Log messages will continue to be logged in C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\access.log.>
    <Oct 5, 2010 10:32:20 AM PDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Oct 5, 2010 10:32:20 AM PDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Oct 5, 2010 10:32:30 AM PDT> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application BrowseEditApp is not versioned.>
    <Oct 5, 2010 10:32:46 AM PDT> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application methodActionInvokeAction is not versioned.>
    <Oct 5, 2010 10:33:21 AM PDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Oct 5, 2010 10:33:21 AM PDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00009. Log messages will continue to be logged in C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Oct 5, 2010 10:33:21 AM PDT> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Oct 5, 2010 10:33:24 AM PDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Oct 5, 2010 10:33:24 AM PDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Oct 5, 2010 10:33:24 AM PDT> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Oct 5, 2010 10:33:24 AM PDT> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 144.25.110.215:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Oct 5, 2010 10:33:24 AM PDT> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Oct 5, 2010 10:33:25 AM PDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Oct 5, 2010 10:33:25 AM PDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    IntegratedWebLogicServer startup time: 101421 ms.
    IntegratedWebLogicServer started.
    [Running application service_method_app on Server Instance IntegratedWebLogicServer...]
    [10:33:28 AM] ---- Deployment started. ----
    [10:33:28 AM] Target platform is (Weblogic 10.3).
    [10:33:31 AM] Retrieving existing application information
    [10:33:32 AM] Running dependency analysis...
    [10:33:32 AM] Deploying 2 profiles...
    [10:33:34 AM] Wrote Web Application Module to C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\o.j2ee\drs\service_method_app\ViewControllerWebApp.war
    [10:33:36 AM] Wrote Enterprise Application Module to C:\Documents and Settings\sgodavar\Application Data\JDeveloper\system11.1.1.3.37.56.60\o.j2ee\drs\service_method_app
    [10:33:36 AM] Deploying Application...
    <Oct 5, 2010 10:33:37 AM PDT> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application service_method_app is not versioned.>
    [10:33:50 AM] Application Deployed Successfully.
    [10:33:50 AM] The following URL context root(s) were defined and can be used as a starting point to test your application:
    [10:33:50 AM] http://144.25.110.215:7101/service_method_app-ViewController-context-root
    [10:33:50 AM] Elapsed time for deployment: 22 seconds
    [10:33:50 AM] ---- Deployment finished. ----
    Run startup time: 22250 ms.
    [Application service_method_app deployed to Server Instance IntegratedWebLogicServer]
    Target URL -- http://127.0.0.1:7101/service_method_app-ViewController-context-root/servicemethod.jspx
    <Oct 5, 2010 10:33:51 AM PDT> <Error> <HTTP> <BEA-101020> <[ServletContext@5299877[app:service_method_app module:service_method_app-ViewController-context-root path:/service_method_app-ViewController-context-root spec-version:2.5]] Servlet failed with Exception
    java.lang.RuntimeException: Cannot find FacesContext
         at javax.faces.webapp.UIComponentClassicTagBase.getFacesContext(UIComponentClassicTagBase.java:1855)
         at javax.faces.webapp.UIComponentClassicTagBase.setJspId(UIComponentClassicTagBase.java:1672)
         at jsp_servlet.__servicemethod_jspx._jspx___tag0(__servicemethod_jspx.java:90)
         at jsp_servlet.__servicemethod_jspx._jspService(__servicemethod_jspx.java:65)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         Truncated. see log file for complete stacktrace
    >
    <Oct 5, 2010 10:33:51 AM PDT> <Notice> <Diagnostics> <BEA-320068> <Watch 'UncheckedException' with severity 'Notice' on server 'DefaultServer' has triggered at Oct 5, 2010 10:33:51 AM PDT. Notification details:
    WatchRuleType: Log
    WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
    WatchData: DATE = Oct 5, 2010 10:33:51 AM PDT SERVER = DefaultServer MESSAGE = [ServletContext@5299877[app:service_method_app module:service_method_app-ViewController-context-root path:/service_method_app-ViewController-context-root spec-version:2.5]] Servlet failed with Exception
    java.lang.RuntimeException: Cannot find FacesContext
         at javax.faces.webapp.UIComponentClassicTagBase.getFacesContext(UIComponentClassicTagBase.java:1855)
         at javax.faces.webapp.UIComponentClassicTagBase.setJspId(UIComponentClassicTagBase.java:1672)
         at jsp_servlet.__servicemethod_jspx._jspx___tag0(__servicemethod_jspx.java:90)
         at jsp_servlet.__servicemethod_jspx._jspService(__servicemethod_jspx.java:65)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    SUBSYSTEM = HTTP USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-101020 MACHINE = sgodavar-pc TXID = CONTEXTID = 15a0f7a52bec9522:45602610:12b7d74678b:-8000-0000000000000014 TIMESTAMP = 1286300031515
    WatchAlarmType: AutomaticReset
    WatchAlarmResetPeriod: 30000
    >
    <Oct 5, 2010 10:33:55 AM PDT> <Alert> <Diagnostics> <BEA-320016> <Creating diagnostic image in c:\documents and settings\sgodavar\application data\jdeveloper\system11.1.1.3.37.56.60\defaultdomain\servers\defaultserver\adr\diag\ofm\defaultdomain\defaultserver\incident\incdir_4 with a lockout minute period of 1.>

    Wow, I like stack traces ;-)
    No indication what you try to do, no information about your environment either.
    What I see is that the URL you use to start the app (if it is an app) has a suffix '.jspx' in it. This is normally not the case for Fusion Web apps. And the 'faces' part of the url is missing. So try http://127.0.0.1:7101/service_method_app-ViewController-context-root/faces/servicemethodTimo
    @John: same idea :-) You beat me again...

  • Java.lang.RuntimeException: failed to compile execlets (JAVA embeding issue in BPEL 2.0)

    HI i was trying to use java code in BPEL 2.0 by using java Embedding. while deploying the application getting the error.
    even after importing the corrsponding class
    below is the code snippet for the same :
    <import location="oracle.soa.management.facade.Locator"
         importType="http://schemas.oracle.com/bpel/extension/java"/>
         <import location="oracle.soa.management.facade.LocatorFactory"
         importType="http://schemas.oracle.com/bpel/extension/java"/>
         <import location="oracle.soa.management.facade.Component"
         importType="http://schemas.oracle.com/bpel/extension/java"/>
    <extensionActivity>
          <bpelx:exec name="Java_Embedding1" language="java">
            <![CDATA[Locator locator = LocatorFactory.createLocator();    
    String compositeRevision = (String)getVariableData("compositeRevision");  
    String compositeNameRevision = "ASG/ImportCustomerData!"+ compositeRevision; 
    Composite prowessCustomerComposite = (Composite)locator.lookupComposite(compositeNameRevision);   
    CompositeInstanceFilter filter = new CompositeInstanceFilter();    
    filter.setState(CompositeInstance.STATE_RUNNING);]]>
          </bpelx:exec>
        </extensionActivity>
    while deploying gettting below error.
    06:18:58 PM] Error deploying archive sca_ImportCutomerData_rev1.0.jar to partition "default" on server AdminServer [http://LTRTHIPIREDDY.keste.com:7001]
    [06:18:58 PM] HTTP error code returned [500]
    [06:18:58 PM] Error message from server:
    There was an error deploying the composite on AdminServer: Deployment Failed: Error occurred during deployment of component: importCustomerData_BPEL to service engine: implementation.bpel, for composite: ImportCutomerData: ORABPEL-05250
    Error deploying BPEL suitcase.
    error while attempting to deploy the BPEL component file "E:\Oracle\Middleware\user_projects\domains\Raja_domain\servers\AdminServer\dc\soa_3ca99378-812f-460f-9760-d19a15c0ef44"; the exception reported is: java.lang.RuntimeException: failed to compile execlets of importCustomerData_BPEL
    This error contained an exception thrown by the underlying deployment module.
    Verify the exception trace in the log (with logging level set to debug mode).
    [06:18:58 PM] Check server log for more details.
    [06:18:58 PM] Error deploying archive sca_ImportCutomerData_rev1.0.jar to partition "default" on server AdminServer [http://LTRTHIPIREDDY.keste.com:7001]
    [06:18:58 PM] ####  Deployment incomplete.  ####
    [06:18:58 PM] Error deploying archive file:/C:/JDeveloper/mywork_Arbonne/CustomerInboundApp/ImportCutomerData/deploy/sca_ImportCutomerData_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    Thanks in Advance...
    rajashekar

    Hi have solved the issue by importing the  class file.
    <import location="oracle.soa.management.facade.Locator"
              importType="http://schemas.oracle.com/bpel/extension/java"/>
      <import location="oracle.soa.management.facade.LocatorFactory"
              importType="http://schemas.oracle.com/bpel/extension/java"/>
      <import location="oracle.soa.management.facade.Composite"
              importType="http://schemas.oracle.com/bpel/extension/java"/>
      <import location="java.util.List"
              importType="http://schemas.oracle.com/bpel/extension/java"/>
      <import location="oracle.soa.management.util.CompositeInstanceFilter"
              importType="http://schemas.oracle.com/bpel/extension/java"/>
      <import location="oracle.soa.management.facade.CompositeInstance"
              importType="http://schemas.oracle.com/bpel/extension/java"/>

  • Intermittent java.lang.RuntimeException: Storage is not configured

    My (storage disabled) application runs zero or more times successfully and then starts getting "java.lang.RuntimeException: Storage is not configured" at startup. My console output from the cache-server and my app are below. I'm running the coherence-server.cmd and the trading apps on the same dual core machine. I assume my coherence server is screwing up because all simultaneously running apps start getting this error at the same time. After a short time the system seems to recover and the apps are again talking to the coherence cache. Sorry for pasting so much text - not sure what's relevant.
    Thanks!
    Andrew
    2009-02-23 23:05:01.134/1353.518 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): Member 3 joined Service DistributedCache with senior member 1
    2009-02-23 23:05:01.158/1353.542 Oracle Coherence GE 3.4.2/411 <D5> (thread=Dist
    ributedCache, member=1): Service DistributedCache: sending ServiceConfigSync con
    taining 259 entries to Member 3
    2009-02-23 23:05:01.850/1354.234 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): TcpRing: disconnected from member 2 due to a kill request
    2009-02-23 23:05:01.850/1354.234 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): Member 2 left service DistributedCache with senior member 1
    2009-02-23 23:05:01.850/1354.234 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): Member(Id=2, Timestamp=2009-02-23 23:05:01.85, Address=192.168.1
    .102:8089, MachineId=26982, Location=process:2496, Role=Trading_appOrderGenerato
    r) left Cluster with senior member 1
    2009-02-23 23:05:02.993/1355.377 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpR
    ingListener, member=1): TcpRing: connecting to member 3 using TcpSocket{State=ST
    ATE_OPEN, Socket=Socket[addr=/192.168.1.102,port=55841,localport=8088]}
    2009-02-23 23:05:06.850/1359.234 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): TcpRing: disconnected from member 3 due to a kill request
    2009-02-23 23:05:06.850/1359.234 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): Member 3 left service DistributedCache with senior member 1
    2009-02-23 23:05:06.851/1359.235 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): Member(Id=3, Timestamp=2009-02-23 23:05:06.85, Address=192.168.1
    .102:8091, MachineId=26982, Location=process:4824, Role=Trading_appOrderGenerato
    r) left Cluster with senior member 1
    c:\oc_test\trading_app&gt;java.exe -Dtangosol.coherence.distributed.localstorage=fa
    lse -client -classpath C:\oc_test\trading_app\classes;C:\java\javaclasses\apache
    -log4j-1.2.15\log4j-1.2.15.jar;C:\coherence\lib\coherence.jar trading_app.OrderG
    enerator
    2009-02-23 22:08:40.219/0.221 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational configuration from resource "jar:file:/C:/coherenc
    e/lib/coherence.jar!/tangosol-coherence.xml"
    2009-02-23 22:08:40.224/0.226 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational overrides from resource "jar:file:/C:/coherence/li
    b/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-02-23 22:08:40.225/0.227 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/tangosol-coherence-override.xml" is n
    ot specified
    2009-02-23 22:08:40.228/0.230 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-02-23 22:08:40.394/0.396 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=main,
    member=n/a): Loaded cache configuration from resource "jar:file:/C:/coherence/l
    ib/coherence.jar!/coherence-cache-config.xml"
    2009-02-23 22:08:40.857/0.859 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-02-23 22:08:41.068/1.070 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=Clust
    er, member=n/a): This Member(Id=44, Timestamp=2009-02-23 22:08:40.865, Address=1
    0.1.1.1:8091, MachineId=2561, Location=machine:andrew-PC,process:4900, Role=Trad
    ing_appOrderGenerator, Edition=Grid Edition, Mode=Development, CpuCount=2, Socke
    tCount=1) joined cluster "cluster:0x2FFB" with senior Member(Id=2, Timestamp=200
    9-02-23 20:00:41.971, Address=10.1.1.1:8089, MachineId=2561, Location=machine:an
    drew-PC,process:1212, Role=Exchange_simExchange, Edition=Grid Edition, Mode=Deve
    lopment, CpuCount=2, SocketCount=1)
    2009-02-23 22:08:41.076/1.078 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member(Id=3, Timestamp=2009-02-23 20:15:55.39, Address=10.1.1.1:8
    088, MachineId=2561, Location=machine:andrew-PC,process:440, Role=Exchange_simEx
    change) joined Cluster with senior member 2
    2009-02-23 22:08:41.076/1.078 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member(Id=4, Timestamp=2009-02-23 22:04:23.567, Address=10.1.1.1:
    8090, MachineId=2561, Location=machine:andrew-PC,process:4196, Role=CoherenceSer
    ver) joined Cluster with senior member 2
    2009-02-23 22:08:41.080/1.082 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 2 joined Service DistributedCache with senior member 2
    2009-02-23 22:08:41.080/1.082 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 4 joined Service DistributedCache with senior member 2
    2009-02-23 22:08:41.080/1.082 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 4 joined Service ReplicatedCache with senior member 4
    2009-02-23 22:08:41.080/1.082 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 4 joined Service OptimisticCache with senior member 4
    2009-02-23 22:08:41.080/1.083 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 4 joined Service InvocationService with senior member 4
    2009-02-23 22:08:41.081/1.083 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 3 joined Service DistributedCache with senior member 2
    2009-02-23 22:08:41.266/1.268 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=44): TcpRing: connecting to member 4 using TcpSocket{State=STATE_OPEN,
    Socket=Socket[http://addr=/10.1.1.1,port=8090,localport=55342]}
    2009-02-23 22:08:41.292/1.294 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Distrib
    utedCache, member=44): Service DistributedCache joined the cluster with senior s
    ervice member 2
    2009-02-23 22:08:41.299/1.301 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Distrib
    utedCache, member=44): Service DistributedCache: received ServiceConfigSync cont
    aining 259 entries
    c:\oc_test\trading_app&gt;call run.bat
    c:\oc_test\trading_app&gt;java.exe -Dtangosol.coherence.distributed.localstorage=fa
    lse -client -classpath C:\oc_test\trading_app\classes;C:\java\javaclasses\apache
    -log4j-1.2.15\log4j-1.2.15.jar;C:\coherence\lib\coherence.jar trading_app.OrderG
    enerator
    2009-02-23 22:08:42.149/0.230 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational configuration from resource "jar:file:/C:/coherenc
    e/lib/coherence.jar!/tangosol-coherence.xml"
    2009-02-23 22:08:42.153/0.234 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational overrides from resource "jar:file:/C:/coherence/li
    b/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-02-23 22:08:42.154/0.235 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/tangosol-coherence-override.xml" is n
    ot specified
    2009-02-23 22:08:42.157/0.238 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-02-23 22:08:42.318/0.399 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=main,
    member=n/a): Loaded cache configuration from resource "jar:file:/C:/coherence/l
    ib/coherence.jar!/coherence-cache-config.xml"
    2009-02-23 22:08:42.781/0.862 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-02-23 22:08:45.981/4.062 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=Clust
    er, member=n/a): Created a new cluster "cluster:0x2FFB" with Member(Id=1, Timest
    amp=2009-02-23 22:08:42.625, Address=192.168.1.102:8088, MachineId=26982, Locati
    on=process:644, Role=Trading_appOrderGenerator, Edition=Grid Edition, Mode=Devel
    opment, CpuCount=2, SocketCount=1) UID=0xC0A801660000011FA678678169661F98
    2009-02-23 22:08:46.258/4.339 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Distrib
    utedCache, member=1): Service DistributedCache joined the cluster with senior se
    rvice member 1
    Exception in thread "main" java.lang.RuntimeException: Storage is not configured
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.DistributedCache$BinaryMap.onMissingStorage(DistributedCache.CDB:9)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.DistributedCache$BinaryMap.ensureRequestTarget(DistributedCache.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.DistributedCache$BinaryMap.addMapListener(DistributedCache.CDB:49)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.DistributedCache$ViewMap.addMapListener(DistributedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.addMapListener(S
    afeNamedCache.CDB:12)
    at com.tangosol.coherence.component.util.SafeNamedCache.addMapListener(S
    afeNamedCache.CDB:47)
    at trading_app.OrderGenerator.&lt;init&gt;(OrderGenerator.java:33)
    at trading_app.OrderGenerator.main(OrderGenerator.java:50)
    c:\coherence\bin&gt;cache-server.cmd
    java version "1.6.0_12"
    Java(TM) SE Runtime Environment (build 1.6.0_12-b04)
    Java HotSpot(TM) Server VM (build 11.2-b01, mixed mode)
    2009-02-23 22:42:27.878/0.262 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational configuration from resource "jar:file:/C:/coherenc
    e/lib/coherence.jar!/tangosol-coherence.xml"
    2009-02-23 22:42:27.883/0.267 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational overrides from resource "jar:file:/C:/coherence/li
    b/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-02-23 22:42:27.883/0.267 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/tangosol-coherence-override.xml" is n
    ot specified
    2009-02-23 22:42:27.888/0.272 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-02-23 22:42:28.128/0.512 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=main,
    member=n/a): Loaded cache configuration from resource "jar:file:/C:/coherence/l
    ib/coherence.jar!/coherence-cache-config.xml"
    2009-02-23 22:42:28.618/1.002 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-02-23 22:42:31.819/4.203 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=Clust
    er, member=n/a): Created a new cluster "cluster:0x2FFB" with Member(Id=1, Timest
    amp=2009-02-23 22:42:28.461, Address=192.168.1.102:8088, MachineId=26982, Locati
    on=process:2152, Role=CoherenceServer, Edition=Grid Edition, Mode=Development, C
    puCount=2, SocketCount=1) UID=0xC0A801660000011FA69750ED69661F98
    2009-02-23 22:42:32.072/4.456 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Distrib
    utedCache, member=1): Service DistributedCache joined the cluster with senior se
    rvice member 1
    2009-02-23 22:42:32.147/4.531 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Replica
    tedCache, member=1): Service ReplicatedCache joined the cluster with senior serv
    ice member 1
    2009-02-23 22:42:32.159/4.543 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Optimis
    ticCache, member=1): Service OptimisticCache joined the cluster with senior serv
    ice member 1
    2009-02-23 22:42:32.178/4.562 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Invocat
    ion:InvocationService, member=1): Service InvocationService joined the cluster w
    ith senior service member 1
    2009-02-23 22:42:32.180/4.564 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=main,
    member=1): Started DefaultCacheServer...
    SafeCluster: Name=cluster:0x2FFB
    Group{Address=224.3.4.2, Port=34411, TTL=4}
    MasterMemberSet
    ThisMember=Member(Id=1, Timestamp=2009-02-23 22:42:28.461, Address=192.168.1.1
    02:8088, MachineId=26982, Location=process:2152, Role=CoherenceServer)
    OldestMember=Member(Id=1, Timestamp=2009-02-23 22:42:28.461, Address=192.168.1
    .102:8088, MachineId=26982, Location=process:2152, Role=CoherenceServer)
    ActualMemberSet=MemberSet(Size=1, BitSetCount=2
    Member(Id=1, Timestamp=2009-02-23 22:42:28.461, Address=192.168.1.102:8088,
    MachineId=26982, Location=process:2152, Role=CoherenceServer)
    RecycleMillis=120000
    RecycleSet=MemberSet(Size=0, BitSetCount=0
    Services
    TcpRing{TcpSocketAccepter{State=STATE_OPEN, ServerSocket=192.168.1.102:8088},
    Connections=[]}
    ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_JOINED), Id=0, Vers
    ion=3.4, OldestMemberId=1}
    DistributedCache{Name=DistributedCache, State=(SERVICE_STARTED), LocalStorage=
    enabled, PartitionCount=257, BackupCount=1, AssignedPartitions=257, BackupPartit
    ions=0}
    ReplicatedCache{Name=ReplicatedCache, State=(SERVICE_STARTED), Id=2, Version=3
    .0, OldestMemberId=1}
    Optimistic{Name=OptimisticCache, State=(SERVICE_STARTED), Id=3, Version=3.0, O
    ldestMemberId=1}
    InvocationService{Name=InvocationService, State=(SERVICE_STARTED), Id=4, Versi
    on=3.1, OldestMemberId=1}
    2009-02-23 22:08:22.950/240.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 34 due to a kill request
    2009-02-23 22:08:22.950/240.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 34 left service DistributedCache with senior member
    2009-02-23 22:08:22.951/240.290 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=34, Timestamp=2009-02-23 22:08:22.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:4988, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:24.015/241.354 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=35, Timestamp=2009-02-23 22:08:23.816, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:5600, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:24.219/241.558 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 35 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55333,localport=8090]}
    2009-02-23 22:08:24.219/241.558 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 35 joined Service DistributedCache with senior memb
    2009-02-23 22:08:24.950/242.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 35 due to a kill request
    2009-02-23 22:08:24.950/242.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 35 left service DistributedCache with senior member
    2009-02-23 22:08:24.951/242.290 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=35, Timestamp=2009-02-23 22:08:24.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:5600, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:25.920/243.259 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=36, Timestamp=2009-02-23 22:08:25.72, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:5168, Role=Tradi
    rderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:26.121/243.460 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 36 joined Service DistributedCache with senior memb
    2009-02-23 22:08:26.126/243.465 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 36 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55334,localport=8090]}
    2009-02-23 22:08:26.950/244.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 36 due to a kill request
    2009-02-23 22:08:26.950/244.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 36 left service DistributedCache with senior member
    2009-02-23 22:08:26.950/244.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=36, Timestamp=2009-02-23 22:08:26.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:5168, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:27.796/245.135 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=37, Timestamp=2009-02-23 22:08:27.604, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:4500, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:28.000/245.339 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 37 joined Service DistributedCache with senior memb
    2009-02-23 22:08:28.001/245.340 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 37 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55335,localport=8090]}
    2009-02-23 22:08:28.950/246.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 37 due to a kill request
    2009-02-23 22:08:28.950/246.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 37 left service DistributedCache with senior member
    2009-02-23 22:08:28.950/246.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=37, Timestamp=2009-02-23 22:08:28.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:4500, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:29.645/246.984 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=38, Timestamp=2009-02-23 22:08:29.453, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:5456, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:29.846/247.185 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 38 joined Service DistributedCache with senior memb
    2009-02-23 22:08:29.850/247.189 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 38 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55336,localport=8090]}
    2009-02-23 22:08:30.950/248.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 38 due to a kill request
    2009-02-23 22:08:30.950/248.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 38 left service DistributedCache with senior member
    2009-02-23 22:08:30.950/248.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=38, Timestamp=2009-02-23 22:08:30.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:5456, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:31.505/248.844 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=39, Timestamp=2009-02-23 22:08:31.313, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:4324, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:31.712/249.051 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 39 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55337,localport=8090]}
    2009-02-23 22:08:31.712/249.051 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 39 joined Service DistributedCache with senior memb
    2009-02-23 22:08:32.950/250.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 39 due to a kill request
    2009-02-23 22:08:32.950/250.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 39 left service DistributedCache with senior member
    2009-02-23 22:08:32.950/250.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=39, Timestamp=2009-02-23 22:08:32.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:4324, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:33.405/250.744 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=40, Timestamp=2009-02-23 22:08:33.214, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:6052, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:33.610/250.949 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 40 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55338,localport=8090]}
    2009-02-23 22:08:33.633/250.972 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 40 joined Service DistributedCache with senior memb
    2009-02-23 22:08:34.950/252.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 40 due to a kill request
    2009-02-23 22:08:34.950/252.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 40 left service DistributedCache with senior member
    2009-02-23 22:08:34.951/252.290 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=40, Timestamp=2009-02-23 22:08:34.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:6052, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:35.304/252.643 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=41, Timestamp=2009-02-23 22:08:35.112, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:4004, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:35.509/252.848 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 41 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55339,localport=8090]}
    2009-02-23 22:08:35.535/252.874 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 41 joined Service DistributedCache with senior memb
    2009-02-23 22:08:36.950/254.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 41 due to a kill request
    2009-02-23 22:08:36.950/254.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 41 left service DistributedCache with senior member
    2009-02-23 22:08:36.950/254.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=41, Timestamp=2009-02-23 22:08:36.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:4004, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:37.217/254.556 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=42, Timestamp=2009-02-23 22:08:37.024, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:5916, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:37.423/254.762 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 42 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55340,localport=8090]}
    2009-02-23 22:08:37.447/254.786 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 42 joined Service DistributedCache with senior memb
    2009-02-23 22:08:37.950/255.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 42 due to a kill request
    2009-02-23 22:08:37.950/255.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 42 left service DistributedCache with senior member
    2009-02-23 22:08:37.951/255.290 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=42, Timestamp=2009-02-23 22:08:37.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:5916, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:39.131/256.470 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=43, Timestamp=2009-02-23 22:08:38.94, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:2464, Role=Tradi
    rderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:39.336/256.675 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 43 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55341,localport=8090]}
    2009-02-23 22:08:39.359/256.698 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 43 joined Service DistributedCache with senior memb
    2009-02-23 22:08:39.950/257.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 43 due to a kill request
    2009-02-23 22:08:39.950/257.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 43 left service DistributedCache with senior member
    2009-02-23 22:08:39.950/257.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=43, Timestamp=2009-02-23 22:08:39.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:2464, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:41.064/258.403 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=44, Timestamp=2009-02-23 22:08:40.865, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:4900, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:41.268/258.607 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 44 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55342,localport=8090]}
    2009-02-23 22:08:41.287/258.626 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 44 joined Service DistributedCache with senior memb
    2009-02-23 22:08:41.950/259.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 44 due to a kill request
    2009-02-23 22:08:41.950/259.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 44 left service DistributedCache with senior member
    2009-02-23 22:08:41.951/259.290 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=44, Timestamp=2009-02-23 22:08:41.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:4900, Role=Tradi
    rderGenerator) left Cluster with senior member 2

    This is what I see on one of my client apps when the problem occurs. Looks like the coherence server disappears, no?
    waiting for events...
    waiting for events...
    waiting for events...
    waiting for events...
    2009-02-23 23:30:13.869/113.548 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clust
    er, member=2): MemberLeft notification for Member 4 received from Member(Id=1, T
    imestamp=2009-02-23 22:42:28.461, Address=192.168.1.102:8088, MachineId=26982, L
    ocation=process:2152, Role=CoherenceServer)
    2009-02-23 23:30:13.869/113.548 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clust
    er, member=2): Member 4 left service DistributedCache with senior member 1
    2009-02-23 23:30:13.874/113.553 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clust
    er, member=2): Member(Id=4, Timestamp=2009-02-23 23:30:13.87, Address=192.168.1.
    102:8090, MachineId=26982, Location=process:4988, Role=Trading_appOrderGenerator
    ) left Cluster with senior member 1
    waiting for events...
    waiting for events...
    waiting for events...

Maybe you are looking for

  • Can't change my Game Center account settings

    After a few tries I noticed my friend never receive my GameCenter invites. So I wanted to check my Game Center settings but I have problem, nothing can be change. I don't have any 'done' button on the top right corner, the only button I have is 'canc

  • Will visual composer replace webdynpro

    Hi All ,     I am new to portal , i have one basic question , can we do all our development using visual composer .. when do we need to use webdynpro ??

  • Database Size Required for SOA

    I will be installing SOA Suite with OSB in Exalogic for testing. It is not for the production environment and very simple application will be used for testing. Database admin asked me what size database would be required but I did not find clear answ

  • Newbie: Saving Edited Photo to Take to Commercial Processor

    I REALLY new and posted this in the wrong Forum: I'm brand new to digital photography, editing and Photoshop Elements 4. want to take a photo edited in PE4 to a local big box store and print it there. I will be saving it to a flash drive and/or a DVD

  • Why is picture size smaller when going from RAW to Photoshop

    My computer went down recently and i had to reload Photoshop CS2 ver 9 and I had to download Camera Raw plug in Ver. 3.7. Now when I process a Raw file which is normaly a 54x36 inch image I now am getting a 16.2x10.8 image. I cannot find why it is re