Run JAVA code on a UDF value as OID process update

Hello
I have a JAVA code that I want to run as soon as "UDF Updated" task runs. I created this task on the "Update of the FDU" process, which is integrated into the map "adpOIDModifyUser". I want to run this JAVA code at the same time where there is a change in the value of the UDF and then this UDF value is pre-populated also in the form of process OID and then finally thrust to OID.

Basically I want these 2 tasks to occur at the time of the update of the UDF:
1.) run the JAVA code by taking the new value of the UDF.
2.) push the new value of the UDF in OID.

I created and all the changes in the lookup.usrprocesstriggers, tasks 2 process 'change UDF' and 'udf' updated and all that good stuff.
But I'm stuck at creating a task in JAVA and how to operate as a dependant on the UDF update task.

Anyone have any ideas?

Thank you
-oidm.

Just to see all the answers carefully.

See their description. You will find a description that tells you this task is completed. It is mapped to some C.

Just select this answer and see below, you will have the task to which it. Click Add task, and then select your task in which you attached your java code.
SO, whenever your update triggers or completed task successfully it wil trigger another task
Let me know if you need any other information.

As I have machine with you, I'm not able to tell the name of the exact answer. If you see carefully you will easily find it.

Tags: Fusion Middleware

Similar Questions

  • Run the java code when passing a parameter value.

    JDeveloper 11.1.2.1
    ADFbc + JSF

    I have two pages: Page1 call Page2 passing the parameter p1.

    I need to run java code in a bean. every time when Page2 is called with a value in the parameter p1.
    When I need to place the code to run when the page displays the data?

    Thank you

    Put a router between the pages element, it you decide if to call your method (and access method activity), or go directly to the page.

    Timo

  • How to kill a process of the system of java code.

    Hi,


    i need to kill or remove windows system process like cmd.exe from java code.

    as detached from end process in task mgr.

    i tried below code but its not removed.

    is there a better way we can do this.

    killing a system process from java code will create any issues?


      
    public static void main(String[] args) throws Exception {

      
    String[] cmd = { "cmd.exe" };
      
    Process p = Runtime.getRuntime().exec(cmd);
       p
    .destroy();
      
    }


    any suggestions or ideas are really appreciated.

    Thank you.


    The utility 'tasklist' will give you the same basic information in the Task Manager. You can always capture that and find the line (including the PID) of your application.

    Use your favorite search engine and look for "windows get the pid using java. You will find LOTS of other posts for this same issue.

  • Run the code from the jar java fixed pitch

    Hello

    based on article

    https://supportforums.Cisco.com/document/98986/UCCX-quick-Java-recipes

    I copied the code of 1). and they changed a bit for my daysx24hours. The only type is, give the script a parameter (here the number of credit card and return the result of UCCX (perhaps the last type is missing).)

    The following code:

    ###############################################################################

    public class ClassCheckCC {}

    Public Shared Sub main (String [] args) {}
    TODO self-generating method stub
    String ccnumber = args [0];
    String ccnumber = "66666666666666666";
    int isValid = 99;
    isValid = verifyCC (ccnumber);
    System.out.println (IsValid);
    }
            
            
            
            
    private static int verifyCC (String ccnumber) {}
    int sum = 0;
    Boolean alternate = false;
    Boolean isValid = false;
    try {}
    int i = 0;
    for (I = ccnumber.length () - 1; i > = 0; i--) {}
    int n = Integer.parseInt (ccnumber.substring (i, i + 1));
    If {(acting)
    n = n * 2;
    If (n > 9) {}
    n = (% n 10) + 1;
    }
    }
    sum += n;
    Alternate =! alternate;
    }
    isValid = (sum %10 == 0);

    } catch (Exception e) {}

    Returns - 1;

    }

    return (isValid == true? 1: 0);
    }
    }

    ###############################################################################

    In Eclipse, I create a new java project named "CheckCreditCardNumber" and insert this code into the new project. The name of the new class is 'ClassCheckCC '. I created a "CheckCCNumber1.jar" executable jar file This will work as expected in a DOS window.
    I call it this way: java-jar CheckCCNumber1.jar 1234567890123456

    The number represents a credit card number.

    In my opinion, always ready to implement in UCCX.

    JAR file downloaded on UCCX (you can find it in an attachment here), moved to the right side (to the Classpath entries. selected :) Some service restarted. Do some tests to access the file and can be seen in UCCX Editor.

    Then, I created a new script file and inserted a defined step

    takes it place the following errors:

    But the result expected from the byte type (-1.0 or 1) java code. Shit, I declared the variable isValid as string occurs:

    We try to call java code:

    Next, the error message is different:

    Yes, here are my questions. What wrong? Where can I call this java code little success.

    I know, it s possible to run code without additional jar files. I am interested to implement more than java classes in a jar file for future needs, and this is a first step.

    Greetings Naatz Maic

    Hello

    UH... Let's get a few things right if you don't mind.

    Your class is valid, as you say, you tested with Eclipse, which is a fair way to go. You have two methods, 'main' and a private static "verifyCC" returning an int value. Good. Now, if I take a quick glance at your UCCX script I see some interesting things there. First, you create a new variable of type ClassCheckCC, with the name CheckCC and with null as default. Cool, that's like saying JRE of UCCX for "Hey, let's use a new variable of type ClassCheckCC", or more precisely:

    ClassCheckCC CheckCC = null;

    Alrighty. Then, you kind of try to value of isValid saying CheckCC (ccnumber). Why it's wrong: in Java, it does:

    isValid = CheckCC (ccnumber);

    You see already? The above code actually means:

    isValid = null (ccnumber); Not valid!

    CheckCC is null.

    Let's try a slightly different approach:

    public class CheckCC {}
    Public Shared Sub main (String [] args) {}
    System.out.println ("Move along, nothing to see here, call verifyCC (String s) instead. ');
    }
    public static int verifyCC (String ccnumber) {}
    int sum = 0;
    Boolean alternate = false;
    Boolean isValid = false;
    try {}
    int i = 0;
    for (I = ccnumber.length () - 1; i > = 0; i--) {}
    int n = Integer.parseInt (ccnumber.substring (i, i + 1));
    If {(acting)
    n = n * 2;
    If (n > 9) {}
    n = (% n 10) + 1;
    }
    }
    sum += n;
    Alternate =! alternate;
    }
    isValid = (sum %10 == 0);
    } catch (Exception e) {}
    Returns - 1;
    }
    return (isValid == true? 1: 0);
    }
    }

    You may have noticed that I made a few adjustments. I renamed ClassCheckCC to the simpler CheckCC, I changed the method of verifyCC to the public modifier. It's actually a great example of a utility class where you have not all instances, so we should let JDK code optimization.

    Using this approach, we don't need to create instances of the object - that they are unnecessary in this case. Simply call CheckCC.verifyCC (String aString) is quite sufficient. We can, as I will demonstrate, but then again, why should create us instances of the class each time a script is run.

    The following three constructs are valid (assuming that I have created the necessary variables: val, validCCNumber, and invalidCCNumber):

    Valid value = CheckCC.verifyCC (validCCNumber)

    Pure and simple. I simply call the static verifyCC method on the CheckCC class with a parameter.

    The valid value = {return CheckCC.verifyCC (invalidCCNumber) ;}

    I just padded the single line above with braces, creating a block of code, point comma and the return keyword became necessary.

    The valid value = {CheckCC instance = new CheckCC(); return instance.verifyCC (validCCNumber) ;}

    Now, it's quite redundant but functional example. I created an instance of the CheckCC class, named instance and then ran the method verifyCC on the newly created class instance. Once again, it is a situation when a developer is boring and has nothing better to do than to create instances of the class and sending them to the eternal bytefields.

    G.

    Here is a screenshot:

  • Run the Code in a Java Applet

    I'm calling a Java to Javascript applet. The Java code must run in privileged mode.  Eventually it will display a file selector that allows you to view files on the local hard drive, but for now, she simply returns a dummy value simple.  The problem I have is that the JavaScript to Java call return PrivilegedActionException. The applet is in a signed Jar file.  I'm under 8u25.

    This is the Java class:

        // Java code
        public class OHLib extends Applet {
    
            public String getFile() {
                String result;
                try {
                    result = (String) AccessController.doPrivileged(new PrivilegedAction() {
                        public String run() {
                            // JFileChooser code will go here
                            return "xxx";
                       }
                    });
                } catch (Exception e) {
                    e.printStackTrace();
                }
                return result;
            }
    
        }
    
    

    Can someone tell me what's wrong with this code?  I would also be interested to know why the try/catch block above does not catch the exception.  The only place where I see the exception is in browser F12 developer tools.

    Here's the JavaScript code:

        function BrowseForFile() {
            var x;
            try {
                 // this code generates PrivilegedActionException
                 x = ohApplet.getFile();
            } catch (e) {
                 console.log(e);
            }
    
        }
    
    

    The applet is deployed on my web page as follows:

    <script src="/plugins/deployJava.js"></script>
    <script>
         var attributes = { 
             id:'ohApplet',
             code:'OHLib',
             codebase: 'java',
             archive: 'OHLib.jar', 
             width:1, 
             height:1,
         } ;
         var parameters = { 
          jnlp_href: 'OHLib.jnlp',
          classloader_cache: 'false',
         } ;
         deployJava.runApplet(attributes, parameters, '1.8');
    <script>
    
    
    

    The applet is in a jar signed with the following manifest file:

    Application name: < appname >

    Permissions: permissions everything

    CodeBase: < domain > .dev < domain > ".com"

    The appellant eligible Codebase: < domain > .dev < domain > ".com"

    Application library eligible Codebase: < domain > .dev < domain > ".com"

    The JNLP file is as follows:

        <?xml version="1.0" encoding="UTF-8"?>
        <jnlp spec="1.0+" codebase="" href="">
    
            <information>
                <title>title</title>
                <vendor>vendor</vendor>
            </information>
    
            <security>
                <all-permissions />
            </security>
    
            <resources>
                <j2se version="1.8+" href="http://java.sun.com/products/autodl/j2se" />
                <jar href="OHLib.jar" main="true" />
            </resources>
    
            <applet-desc 
                 main-class="OHLib"
                 name="OHLib"
                 width="1"
                 height="1">
             </applet-desc>
        </jnlp>        
    
    

    The problem was that I was not including the anonymous inner class (OHLib$ 1.class) in the jar file. My original CD jar command looks like this:

    jar cfmv OHLib.jar "../../jar_manifest.txt" OHLib.class
    

    Change to below solved the problem:

    jar cfmv OHLib.jar "../../jar_manifest.txt" OHLib.class OHLib$1.class
    

    Credits go to this page for the solution.

  • Run query from java code

    Hi all

    I have a requirement in which I need to create a selection based on the parameter query that user input. If the query will include the parameter if its value is not null.

    Is it possible to add this query in the resource file?

    In case I want to execute java code, how can I call to run the query of theis?

    I tried result Long = ws.executeSQL (query.toString ());

    but it gives an error because executeSQL is for DML queries.

    Please suggest an approach.

    If you do not know the name of the column, you must use createResultSetSQL.

    Jonathan

    http://jonathanhult.com

  • How to get the value on a model that is defined in the java code in email

    Hello

    I created a custom code and send email as well to custom component. I can send emails using the method:

    InternetFunctions.sendMailTo (EmailID, EmailTemplate, subject, cxt);

    But my problem is that I have to get a value in the model of "EmailTemplate" which are defined from java code. but I don't know how to get the value.

    I will highlight in the java code by using this code: binder.putLocal ("ErrorApproveRejectMsg", massegeBody);

    I'm trying to enhance the model using the code below, but not able to get.

    1 < $exec getValue ("#active", "ErrorApproveRejectMsg") $ >

    2 < $exec getValue ("#active", ErrorApproveRejectMsg) $ >

    3 < getValue ("ErrorApproveRejectMsg") $exec $ >

    4 < $exec getValue (ErrorApproveRejectMsg) $ >

    5 < getValue ("#local", ErrorApproveRejectMsg) $exec $ >

    6 < getValue ("#local", "ErrorApproveRejectMsg") $exec $ >

    7 < $ErrorApproveRejectMsg$ >

    8 < $exec ErrorApproveRejectMsg$ >

    Assuming that cxt will be your Service or execution context object

    You can do something like this

    DB. PutLocal ("ErrorApproveRejectMsg", "Error");

    cxt.setCachedObject ("DataBinder", db);

    PageMerger h = new PageMerger (db, cxt);

    cxt.setCachedObject ("PageMerger", h);

    InternetFunctions.sendMailTo (usersEmail, emailTemplate, emailSubject, cxt);

    where db is current databinder object, and you can put any variable custom in the workbook by using the putLocal method.

    Thank you

    Vikram

  • How to provide the value of a field defined by the user through java code

    I use OIM 11.1.1.5.
    I have a single-customer-number called user-defined field. This field must be pre-filled in the course of the creation of the user (using the interface user Web of IOM) and the value is a java code.

    Does anyone of you can tell me the high level steps to implement this.

    Thank you!
    Kabi

    You can view them in the tables...

    The tables you need are latest_plugins, plugin_metadata, plugin_zip

  • Run the java code before the page is rendered

    Hello

    In a workflow, can I run the code java before the page/view is rendered (i.e. some preprocessing). I need to be able to have access to the links on the page.

    Thank you!

    Yes, you can.
    Right-click on the activity of your method call, choose create the definition of the page and you can add the links you need.

  • the java code in JDeveloper 10.1.3.3.0 changes is not running

    I am currently working on the implementation of the Siebel Self Service 8.1.1.1 and I have a question. Hope someone answers it.


    Sources for Siebel self-service application files have been extracted into a directory (for example C:\sba81\SelfService\Sia)

    In doing so, I end up having the model directory and ViewController.

    I open the file SelfService.jws with JDeveloper 10.1.3.3.0 (I use this version for Jdeveloper because this is the only version supported for Siebel self-service)

    I open the C:\sba81\SelfService\Sia\Model\classes\oracle\apps\ss\base\model\security\SiebelWSHandler.java file to make some changes.

    I have recompile and run the application.

    The problem is that none of the changes are running regardless of the applied changes.

    For example in the SiebelWSHandler there is this function

    protected String findSiebelUserName() {}
    String username = null;
    {if (isStatefulAnonymousSession ())}
    username = ConfigurationCacheManager.get ("SIEBEL_PROXY_USER_NAME");
    log.info ("findSiebelUserName, proxy username =" + username);
    } else {}
    AppSession appSes = getAppSession();
    username = appSes.getUserName ();
    log.info ("findSiebelUserName, true username =" + username);
    }
    Returns the user name;
    }

    I just add a line to the code as follows


    protected String findSiebelUserName() {}

    String username = null;
    username = "GUESTCST";

    {if (isStatefulAnonymousSession ())}

    username = ConfigurationCacheManager.get ("SIEBEL_PROXY_USER_NAME");

    log.info ("findSiebelUserName, proxy username =" + username);

    } else {}

    AppSession appSes = getAppSession();

    username = appSes.getUserName ();

    log.info ("findSiebelUserName, true username =" + username);

    }

    Returns the user name;

    }

    I have recompile and run the program. The added line is not run. the variable usename is not reset to GUESTCST and nothing else.

    I use Debug, add a breakpoint and run the code line-by-line (using F8). The variable username never gets reset to GUESTCST...

    any help will be much appreciated.

    Hello

    Check the youe ViewController\public_html\WEB-INF folder. Are there any classes folder, if so remove it. And then run your application and check

    Kind regards
    Vikram

  • Get the URL parameter in the Java code

    Hi all

    I have a strange problem. I have a JSF page with two controls:
    -InputText
    -Button

    <? XML version = "1.0" encoding = "UTF - 8"? >
    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
    < f: view xmlns:f = "http://java.sun.com/jsf/core" xmlns:af = "http://xmlns.oracle.com/adf/faces/rich" >
    < af:document title = "view12.jsf" id = "d1" > "
    < af:messages id = "m1" / >
    < af:form id = "f1" >

    < af:inputText label = "Label 1" id = "it98" value = "#{param.test}" editable = "always" / > "
    < af:commandButton actionListener = "#{bindings.przekierowanie.execute}" = "przekierowanie" text "
    Disabled = "#{!}" Bindings.przekierowanie.Enabled}"id ="cb1"/ >
    < / af:form >
    < / af:document >
    < / f: view >


    And I want to boot the InputText with URL parameter (param name is test - value = "#{param.test}" "). In the JSF page, all right. But after clicking on the button I want to read the value of InputText in Java Code, so I have URL:

    http://127.0.0.1:7101/application6-ViewController-context-root/faces/view12.JSF?test=ASD

    and my Java code that runs when clicking the button:

    public String przekierowanie() {}
    Map < String, String > map = FacesContext.getCurrentInstance () .getExternalContext () .getRequestParameterMap ();
    String tttValue = map.get('zoom') ("test");
    System.Err.println ("test:" + tttValue);
    Returns a null value.
    }

    but it does not work... Whenever I get nothing when I click on the button. Could you tell me why and how to get the value of InputTex in my java function?

    Store the parameter to a parameter of sight and access this setting from Java using EL code.
    Here is the main part (without java code):
    https://blogs.Oracle.com/Shay/entry/passing_parameters_to_an_adf_p

  • How to get to variable in backing_bean from java code

    I need to reach one of my variable in a backing_bean of java code (when click the button I need to get the value of the variable is on one of the backing_bean)
    I have defined the field of beans as session
    what I need to do

    Copy the following code in my bean

    private String loginType.

    public String cb2_action() {/ / I call this method}
    setLoginType ("skip");
    }

    and in this method, I try to get the value of the parameter

    public String getLoginType() {}
    FacesContext fctx = FacesContext.getCurrentInstance ();
    ELContext elctx = fctx.getELContext ();
    Application = fctx.getApplication ();
    ExpressionFactory exprFactory = application.getExpressionFactory ();
    ValueExpression valueExpr =
    exprFactory.createValueExpression (elctx, "#{bindings.loginType.inputValue}", Object.class);
    oracle.jbo.domain.Number departmentId = null;
    loginType = (oracle.jbo.domain.Number) valueExpr.getValue (elctx);
    "" return loginType + ' ";
    }

    When I run the code it returns null

    so, in this case... Set the connection type in a sessionscope... and access it anywhere...

                Map sessionMap = (Map)ADFUtils.evaluateEL("#{sessionScope}");
                sessionMap.put("loginType",loginTypeValue); // loginType value is set here..
    
    //access it outside like
                Map sessionMap = (Map)ADFUtils.evaluateEL("#{sessionScope}");
               sessionMap.get("loginType");
    
  • How to compile java java code integrated into SOA 11 g

    Hello
    I can't compile the code java_embedded in the BPLE process. My java code is

    < bpelx:exec name = "Java_Embedding_1" version = "1.5" language = "java" >
    <! [CDATA [bpelx:exec import="org.w3c.dom.Element"/ <>
    < bpelx:exec import="org.w3c.dom.Node"/ >
    {

    System.out.println ("Hi Welcome");
    int index = 0;
    Key = ((Element) scheduling:getVariableData('inputVariable','payload','/ns1:Query/ns1:QueryStatement/ns1:QueryCriteria/ns1:QueryParameters/ns1:ParameterEntry/ns1:Key').getNodeValue();)
    Element operator = ((Element) scheduling:getVariableData('inputVariable','payload','/ns1:Query/ns1:QueryStatement/ns1:QueryCriteria/ns1:QueryParameters/ns1:ParameterEntry/ns1:QueryParameter/ns1:Operator').getNodeValue();)
    Element Value = ((Element) scheduling:getVariableData('inputVariable','payload','/ns1:Query/ns1:QueryStatement/ns1:QueryCriteria/ns1:QueryParameters/ns1:ParameterEntry/ns1:QueryParameter/ns1:Value').getNodeValue();)

    }] >
    < / bpelx:exec >

    And while compiling this java code, I get classpath problem. can any body help on this.

    [scac] D:\MiddlewareApplications\TestJava\TestjavaComposite\SCA-INF\bpel\testJavaEmbedded\src\orabpel\testjavaembedded\ExecLetBxExe2.Java:83: class, interface, or enum expected
    [scac] FATAL_ERROR: location {ns: composite / ns:component [@name = 'testJavaEmbedded']} (20.69): could not compile classes generated bpel.
    [scac] failure to compile the BPEL generated classes for process BPEL "testJavaEmbedded" composite "by default/TestjavaComposite! 1.0 ".
    [scac] The class path setting is incorrect.
    [scac] Make sure that the class path is set correctly. If this happens on the side server, verify that the custom classes or in pots according to the BPEL process are deployed correctly. Also, make sure that the run time uses the same version/version.
    [scac]

    BUILD FAILED
    C:\Oracle\Middleware\jdeveloper\bin\ant-SCA-compile.XML:264: Java returned: 1 check log file: D:\MiddlewareApplications\TestJava\TestjavaComposite\SCA-INF\classes\scac.log to find errors

    Total time: 50 seconds

    Kind regards
    Bharat



    int index = 0;

    try {}
    addAuditTrailEntry ("Hello Welcome");

    Object key = ((XMLElement) scheduling:getVariableData('inputVariable','payload','/ns1:Query/ns1:QueryStatement/ns1:QueryCriteria/ns1:QueryParameters/ns1:ParameterEntry/ns1:Key')).getNodeValue();)
    Object operator = ((XMLElement) scheduling:getVariableData('inputVariable','payload','/ns1:Query/ns1:QueryStatement/ns1:QueryCriteria/ns1:QueryParameters/ns1:ParameterEntry/ns1:QueryParameter/ns1:Operator')).getNodeValue();)
    Object Value = ((XMLElement) scheduling:getVariableData('inputVariable','payload','/ns1:Query/ns1:QueryStatement/ns1:QueryCriteria/ns1:QueryParameters/ns1:ParameterEntry/ns1:QueryParameter/ns1:Value')).getNodeValue();)
    } catch (Exception ex) {}
    addAuditTrailEntry ("Failed"),
    }

    ]]>

    Published by: harrylaou on February 8, 2010 05:23

  • Linux I get an error message when you run java in notebook.

    I am trying to run a simple java script from Scratchpad.
    
    <html>
    <body>
    
    <h1>My First Web Page</h1>
    
    <script>
    document.write("<p>My First JavaScript</p>");
    </script>
    
    </body>
    </html>
    ######
    
    <html>
    <body>
    
    <script>
    function myFunction()
    {
    var x="",i;
    for (i=0;i<5;i++)
      {
      x=x + "The number is " + i + "<br>";
      }
    document.getElementById("demo").innerHTML=x;
    }
    </script>
    
    </body>
    </html>
    
    the traceback error refers to the var variable;
    var x="",i;
    
    I highlight <script> to <script>
    and get this error message
    
    /*
    Exception: syntax error
    Scratchpad:4
    */

    It's this line
    var x = "", i; "

    I'm trying to run a simple loop that will be
    See the numbers in the loop, but the loop hangs.

    I need to know how to solve the problem.

    JOL

    It is not pure JavaScript code, but the code HTML.

    You cannot run this code via Notepad.

    In the second example, you are missing a container with id = 'demo' and you also call the function.

    data:text/html;charset=utf-8;base64,PGh0bWw+Cjxib2R5PgoKPGgxPk15IEZpcnN0IFdlYiBQYWdlPC9oMT4KCjxzY3JpcHQ+CmRvY3VtZW50LndyaXRlKCI8cD5NeSBGaXJzdCBKYXZhU2NyaXB0PC9wPiIpOwo8L3NjcmlwdD4KCjwvYm9keT4KPC9odG1sPgo=
    
    data:text/html;charset=utf-8;base64,PGh0bWw+Cjxib2R5Pgo8cCBpZD0iZGVtbyI+PC9wPgoKPHNjcmlwdD4KZnVuY3Rpb24gbXlGdW5jdGlvbigpCnsKdmFyIHg9IiIsaTsKZm9yIChpPTA7aTw1O2krKykKICB7CiAgeD14ICsgIlRoZSBudW1iZXIgaXMgIiArIGkgKyAiPGJyPiI7CiAgfQpkb2N1bWVudC5nZXRFbGVtZW50QnlJZCgiZGVtbyIpLmlubmVySFRNTD14Owp9Cm15RnVuY3Rpb24oKTsKPC9zY3JpcHQ+Cgo8L2JvZHk+CjwvaHRtbD4K
  • I'm unable to running Java; I get a ClassNotFoundException error.

    After updating to the latest version of Java (7.10), I am unable to run Java at all. Upon detection of Java (http://java.com/en/download/testjava.jsp), I get an error message and when I click, it says there is a ClassNotFoundException error. I tried to reinstall Firefox, reinstall this version of Java and some older versions, try Chrome and IE9, and in any case, I met the same problem. On my addons, it appears as usual, and installation works very well. Both:

    • Next-generation Java plug-in for browsers Mozilla 10.10.2
    • Deploy Script NPRuntime plugin Library for Java (TM)

    Are enabled, next to the browser settings on the parameters of control of Java, and I cleared the cache as well. I tried all the relevant patches on http://java.com/en/download/testjava.jsp. I have absolutely no idea what to do. I've tried everything. Anyone of you have any suggestions?

    Hey all, I just wanted to post the solution I came to. I found another thread which solved my problem (https://forums.oracle.com/thread/2397610), in particular the last post. It boils down to this line:

    "I used the tip above to add in the Panel / Java / Java / View / Runtime settings the value - Djava .net .preferIPv4Stack = true for my 2 JRE then saved and restarted my browser and suddenly he worked.*.

    It suddenly worked for me also. Good luck!

Maybe you are looking for