Problem in Accessing User Objects from ADS

hi,
I am trying to search for the users from the root domain exchange.com in Active Directory Service
I am getting an exception like this
javax.naming.PartialResultException: Unprocessed Continuation Reference(s); rema
ining name 'dc=exchange,dc=com'
at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2695)
at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2669)
at com.sun.jndi.ldap.LdapCtx.searchAux(LdapCtx.java:1757)
at com.sun.jndi.ldap.LdapCtx.c_search(LdapCtx.java:1680)
at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_search(ComponentDirCon
text.java:368)
at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCom
positeDirContext.java:328)
at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCom
positeDirContext.java:313)
at javax.naming.directory.InitialDirContext.search(InitialDirContext.jav
a:238)
at SearchActive.main(SearchActive.java:55)
The Code I used is as follows
import javax.naming.*;
import javax.naming.directory.*;
import java.util.Hashtable;
import java.util.Enumeration;
public class SearchActive
     public static void main(String[] args)
          // rechargement de l'environnement de l'initialisation du context
          DirContext ctx = null;
          Hashtable env = new Hashtable();
          env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
          env.put(Context.PROVIDER_URL, "ldap://200.200.200.12/");
          env.put(Context.SECURITY_AUTHENTICATION,"simple");
          env.put(Context.SECURITY_PRINCIPAL,"200.200.200.12\\Administrator");
          // specify the username
     //     env.put(Context.SECURITY_CREDENTIALS,"digactive");
          // specify the password
          try {
               // Crer le context initial
               ctx = new InitialDirContext(env);
               System.out.println("8");
               SearchControls cons = new SearchControls();
               cons.setSearchScope(SearchControls.SUBTREE_SCOPE);
               NamingEnumeration answer = ctx.search("dc=exchange,dc=com","objectclass=user",cons);
               while(answer.hasMore())
                    SearchResult result = (SearchResult)answer.next();
                    Attributes rattr = result.getAttributes();
                    for(NamingEnumeration ne = rattr.getAll();ne.hasMore();)
                         Attribute natt = (Attribute)ne.next();
                         String sid = natt.getID();
                         for(Enumeration vals = natt.getAll();vals.hasMoreElements();)
                              System.out.println(sid+": "+vals.nextElement());
          catch(Exception e)
               e.printStackTrace();     
Can anybody tell me where is the problem
Thanks
Thiru

Hi, all
Please help me to check where is wrong for the code to access LDAP and get a user's email address.
The code is shown below.
It works before calling ctx.getAttributes, and it shows the error msg as below after calling ctx.getAttributes.
"Problem getting attribute:javax.naming.NamingException: [LDAP: error code 1 - 00000000: LdapErr: DSID-0C0905FF, comment: In order to perform  this operation a successful bind must be completed on the connection., data 0, veceFinished executing"
I don't know if the getAttributes parameter setting is wrong or the env constant setting wroong.
package com.mycompany;
import java.io.*;
import java.util.*;
import javax.naming.Context;
import javax.naming.directory.InitialDirContext;
import javax.naming.directory.DirContext;
import javax.naming.directory.Attributes;
import javax.naming.NamingException;
public class aaa
     public static void main(String args[]) throws Exception
          Hashtable env = new Hashtable();
          env.put(Context.INITIAL_CONTEXT_FACTORY,
     "com.sun.jndi.ldap.LdapCtxFactory");
          env.put(Context.PROVIDER_URL, "ldap://mycompany.com");
          env.put(Context.SECURITY_AUTHENTICATION,"simple");
          env.put(Context.SECURITY_PRINCIPAL,"mycompany.com/Administrator/");
          env.put( Context.REFERRAL, "follow" );
          try
     System.out.println("0");
          // Create the initial directory context
          DirContext ctx = new InitialDirContext(env);
     System.out.println("1");
          Attributes attrs = ctx.getAttributes("cn=andym,cn=Users,dc=mycompany,dc=com");
               System.out.println("mail: " + attrs.get("mail").get());
          catch (NamingException e)
          System.err.println("Problem getting attribute:" + e);

Similar Messages

  • Problem removing a user object from OpenLDAP

    Hi all
    I'm trying to remove a user object (without children's) uid=test,ou=testou,ou=users,dc=my,dc=com , and appears the following exception:
    Java: [LDAP: error code 53 - no global su
    perior knowledge]; remaining name 'uid=test,ou=testou'
            at com.sun.jndi.ldap.LdapCtx.mapErrorCode(Unknown Source)
            at com.sun.jndi.ldap.LdapCtx.processReturnCode(Unknown Source)
            at com.sun.jndi.ldap.LdapCtx.processReturnCode(Unknown Source)
            at com.sun.jndi.ldap.LdapCtx.c_destroySubcontext(Unknown Source)
            at com.sun.jndi.toolkit.ctx.ComponentContext.p_destroySubcontext(Unknown
    Source)
            at com.sun.jndi.toolkit.ctx.PartialCompositeContext.destroySubcontext(Un
    known Source)
            at com.sun.jndi.toolkit.ctx.PartialCompositeContext.destroySubcontext(Un
    known Source)
            at javax.naming.InitialContext.destroySubcontext(Unknown Source)
            at plato.service.OpenLdap.removeUser(OpenLdap.java:172)
            at plato.service.rmi.LdapOperationsImpl.removeUser(LdapOperationsImpl.ja
    va:103)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
            at java.lang.reflect.Method.invoke(Unknown Source)
            at sun.rmi.server.UnicastServerRef.dispatch(Unknown Source)
            at sun.rmi.transport.Transport$1.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.rmi.transport.Transport.serviceCall(Unknown Source)
            at sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Sour
    ce)
            at java.lang.Thread.run(Unknown Source)The code is the following:
                String[] attrIDs = {"uid"};
                SearchControls ctls = new SearchControls();
                ctls.setReturningAttributes(attrIDs);
                ctls.setSearchScope(SearchControls.SUBTREE_SCOPE);
                String filter = "(uid=" + uid + ")";
                NamingEnumeration enums = ctx.search("ou=users,dc=my,dc=com", filter, ctls);
                int total = 0;
                while (enums.hasMore()) {
                    SearchResult entry = (SearchResult)enums.next();
                    total++;
                if (total < 1) throw new NotFoundException("UID "+ uid + "not found!");
                else if (total > 1) throw new TooManyElementsException("Too many for UID ="+ uid);
                else {
                    enums.close();
                    ctls.setCountLimit(1);
                    enums = ctx.search("ou=users,dc=my,dc=com", filter, ctls);
                    SearchResult entry = (SearchResult)enums.next();
                    ctx.destroySubcontext(entry.getName());
                }Any help would be appreciated :)

    If you added a user for screensharing - they'll be shown in System Preferences - Accounts, from where the password can be reset, or the account removed altogether. The user may also be removed individually from ... Sharing - Screensharing/filesharing etc

  • Problem with accessing Signed Applet from javascript method

    Hi,
    I am facing the following problem while accessing Signed Applet from javascript method.
    java.security.AccessControlException: access denied (java.io.FilePermission c:/temp.txt read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at FileTest.testPerm(FileTest.java:19)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.plugin.javascript.invoke.JSInvoke.invoke(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.plugin.javascript.JSClassLoader.invoke(Unknown Source)
         at sun.plugin.com.MethodDispatcher.invoke(Unknown Source)
         at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
         at sun.plugin.com.DispatchImpl$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.com.DispatchImpl.invoke(Unknown Source)
    I am using jdk1.5 for my development...
    Can anyone help to resolve this security issue. Urgent...
    Thanks in advance.

    Hey thanks. I wasn't able to get it to work with that sample but I did find this very similar code that does allow javascript to call JFileChooser in an applets public method.
    java.security.AccessController.doPrivileged(
    new java.security.PrivilegedAction()
    public Object run(){                           
    //do your special code here
    return null; //return whatever you want
    It seems a bit tempermental in that if you don't select a file quickly, it will hang the browser....no perfect solution but I'm going in the right direction.
    Thanks,
    Scott

  • Access file object from flex web app

    Hi all,
    I want to access file object from flex web app. What should i do?
    I have to take array from my XML. In XML there will be only dir path. So for taking file name from dir i have to access it and have to perform for loop on that dir.
    What should I do?
    Any Ideas?
    Thanks,
    -CK

    Hi Michael
    My question is that I dont want to give name of images in XML file.
    In XML file there will be only path of image directory. So I need to find all image name from that image directory.
    Thats why I want to access file object.
    Any ideas?    

  • Problem with access to SipFactory from jsp-pages in JBoss environment

    Hello!
    I have an installation of the OCMS 10.1.3.3. deployed into a JBoss (jboss-4.0.5.GA) environment. Unfortunately I have a problem with accessing the SipFactory from a jps-page. Encouraged by the "messagesender" example I tried to get an instance of SipFactory from my jsp-page simply by calling:
    SipFactory sipFactory = (SipFactory) application.getAttribute(SipServlet.SIP_FACTORY);
    But unfortunately there seems to be no attribute "SipServlet.SIP_FACTORY" and I only get a null pointer. I have also tried running that code in the orignal messagesender example but it didn't work either. So I wonder if this should definetely work in a JBoss environment or if this might be a known problem. Is there anything that I could check/do regarding this problem? I suppose there must be an oracle module which should take care of making the SipFactory availabe after it is deployed. Perhaps something went wrong during the deployment?!
    Best regards,
    Tim

    Hi
    On JBoss, OCMS does not support converge applications.
    I.e the SipFactory can be retrieved from the servlet context when running on OC4J.
    Instead the SipFactory can be found in JNDI as described in the Developer's Guide:
    "External Access to SIP Servlets
    To enable convergent applications between SIP and HTTP, the OCMS Container allows you to get access to the javax.servlet.sip.SipFactory by looking it up through JNDI. The SIP Factory will be registered under the same name as the display name of your SIP servlet as illustrated in Example 2–12. The <display-name> in the sip.xml in this case must be "My sip app".
    Example 2–12 Accessing the Data for a SIP Session through JNDI
    InitialContext ic = new InitialContext();
    SipFactory sipFactory = (SipFactory)ic.lookup("sip/My sip app");"
    Cheers
    Lucas Persson

  • How to access COM+ Objects From JSP

    Friends,
    We have a requirement to access COM+ objects from JSP. Please guide me on this.
    Thanks in advance.
    Tarani

    Sanyam wrote:
    if there is any .dll extension file, how can we read that file in labview?
    You can use Call Library Function node to call that dll file and use it in LabVIEW. Read the help and you will get more details.

  • Accessing java objects from within javascript

    Hello,
    Anyone with an idea of a useful toolkit for accessing java objects from within javascript will be much appreciated.
    Thanks in advance,
    Antana.

    What do you mean by accessing Java objects? Do you mean interacting with an applet via JavaScript? Something else?

  • Accessing an object from a different server

    Hi,
    I am making a program that will access an object from a different server.
    I have a program that when I run calls a jsp page running on Server A which in turn should request an object A from Server B.
    I am relatively new to Java and jsp. What would my best course of action be.
    Thanks in advance,
    Brian

    Or RMI?OK, sounds good, I will look up some RMi on the site.
    Thanks, will prob have more questions for you later.

  • Problem in Passing JTree object from Servlet pgm to browser

    Dear all:
    Can anybody help to resolve the problem - pass the JTree obejct from servlet (Tomcat) to IE 6.0. The JTree oject alway shows invalid charcter in IE. Following is my coding.
    import java.io.*;
    import java.awt.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.swing.*;
    import java.net.URL;
    import java.sql.*;
    import java.lang.*;
    import java.util.*;
    import javax.swing.tree.*;
    //* Testing1 give it null
    public class SimpleServer extends HttpServlet
    DefaultMutableTreeNode top;
    DefaultMutableTreeNode EX01;
    DefaultMutableTreeNode EX02;
    DefaultMutableTreeNode QB01;
    DefaultMutableTreeNode QB02;
    DefaultMutableTreeNode N2BS;
    DefaultMutableTreeNode N2TS;
    //StringTokenizer st2, st1;
    String query;
    Connection con ;
    Statement statm;
    ResultSet res, backupRes;
    //RowSet res, backupRes;
    TreeSet treeset ;
    String [] tempArray;
    //ServletContext sc ;
    ObjectOutputStream out ;
    DefaultMutableTreeNode temp_node;
         public void doGet(HttpServletRequest req, HttpServletResponse resp)
         throws ServletException, IOException
    resp.setContentType("text/html");
    // resp.setContentType("application/octet-stream");
    System.out.println("create main node") ;
              out = new ObjectOutputStream(resp.getOutputStream());
              out.writeObject(this.set_NodeMain()); //no DB access,
         public void doPost(HttpServletRequest req, HttpServletResponse resp)
         throws ServletException, IOException
         try
         System.out.println("doPost " );
         doGet(req,resp);
              finally
         public DefaultMutableTreeNode set_NodeMain()
    top = new DefaultMutableTreeNode("Tandem");
    EX01 = new DefaultMutableTreeNode("EX01");
    EX02 = new DefaultMutableTreeNode("EX02");
    QB01 = new DefaultMutableTreeNode("QB01");
    QB02 = new DefaultMutableTreeNode("QB02");
    N2BS = new DefaultMutableTreeNode("N2BS");
    N2TS = new DefaultMutableTreeNode("N2TS");
    top.add(EX01);
    top.add(EX02);
    top.add(QB01);
    top.add(QB02);
    top.add(N2BS);
    top.add(N2TS);
    return top;
    }

    JMO - I hate seeing things like this in code:
    Just use whitespace to separate the methods.
    You can't just send a JTree to a browser. A browser has no idea how to render a Java object.
    Put that JTree inside an applet and make it part of a JSP. That'll work.
    MOD

  • Accessing Java objects from C++ client

    I have a number of Java CORBA server objects that I have deployed to an 8.1.7 database.
    I can invoke these objects from a Java client with no problem, but I also need to access them from a C++ client.
    I have used idl2cpp from VisiBroker for C++ (version 4.5) to generate the client stubs, and I've downloaded the interop.tar file from http://technet.oracle.com/products/oracle8i/htdocs/jserver_faq/interop.tar
    The problem that I have is that I have not been able to build a client program because login.lib from interop.tar generates conflicts at link time. I've tried everything that I can think of, but I always end up with either missing references or multiply defined symbols. I've tried building using both MS Visual C++ and Borland C++Builder, but with no success.
    Has anybody succeeded in building a C++ client? Surely it shouldn't be this difficult?
    Thanks,
    Tony

    Thank u for taking care of me
    But the hint given by u is not apt to my query.
    If any new suggestion pls send again

  • Accessing stage objects from other objects

    I have drawn colored rods which I have placed in the library and have put one of each on the stage with instance names like
    blueRod_mc, etc.
    I place them around with time-line code like
    blueRod_mc.x = 300.0;
    I have now created an Actionscript class called Problem.
    I build a new object from Problem which I have called Riddle.
    But when I put blueRod_mc.x = 300.0 in a method (of Problem),
    I get the message that blueRod is not accessible.
    So I tried
    stage.blueRod_mc.x = 300.0;
    That did not work either.
    What does work? How can I modify properties of stage objects like blueRod from
    within an AC3 object like Riddle?

    public class Problem {
      private var number1:String ="";
      private var number2:String ="";
      private var rigor:Number = 1;
         // rigor: -1 is 3 steps, -2 is 4-5 steps, -3 is 6-7 steps
      private var step:Number = 1;
      private var numSteps:Number = 3;
      private var solving:Number = 0;
      private var true1Length:Number;
      private var true2Length:Number;
      private var tuple = new Array(6);
      public function Problem():void  {
       // constructor code
       var i:Number;
       var j:Number;
       for (i = 0; i < 6; i++) {
                     tuple[i] = new Array(3+5);
                     for (j=0; j < 3; j++) {
                       tuple[i][j] = new Array(8+7);
       buildIt();
       planIt();
    Just insert bolded code where you need to.

  • Access abap object  from external system

    In R/3 have a Business Objects how can I access this object, for example Workflow BO, from java (external system) using XI????
    My goal is create workflow´s in r/3 sending as input the workflow characteristics and then create the workflow in R/3 and sending as output the idworkflow was creatde.
    thanks in advanced.

    Dear Murali,
    Try this
    a)Start transaction SXI_CACHE.
    b)From the context menu XI Runtime Cache select Start Complete Cache Refresh.
    If you still face issue try this .
    Many actions require to access System Landscape Directory content from the Integration Builder. To optimize performance, this content is loaded into a cache so that the System Landscape Directory does not have to be accessed directly each time that System Landscape Directory content is required.
    However, this cache is not automatically updated if changes are made to the content of the System Landscape Directory. For this reason that we delete the System Landscape Directory cache if changes have been made to content in the System Landscape Directory. The cache is then filled each time that the System Landscape Directory is accessed. If we log on to the Integration Builder after we have made a change in the SLD, we do not need to delete the SLD cache.
    To clear the SLD cache, from the Integration Builder main menu, choose Environment ® Delete Cache for SLD Data.
    Once we have deleted the cache for SLD data, accessing objects in the SLD may take longer than usual initially.
    Regards
    Agasthuri Doss

  • How to access servlet objects from OA page controller class

    Hi everybody!
    I need to put some value into servlet attribute in OA page controller class to read it from ordinary servlet later.
    How can i do it? Is it possible to get HttpServletRequest and HttpServletResponse objects from page controller?
    Thank you.

    I have a servlet which receives uploaded files with special attributes (something like tags for file) using POST request.
    This attributes created when user open page in standard OAF page via page controller.
    On client side I have an applet which uploads user selected file to my servlet and passes this file attributes.
    Now this attributes passes as plain text. I want to encrypt this attributes to hide attribute details from user. To do this I need to share some information between OAF page and my servlet.
    I know that OAF supports URL encryption, but to decrypt it I should use standard pageContext object.
    But in ordinary servlet I can't use it.

  • Error accessing User-Database from Jython CLI

    Hi All,
    once again, we experience a problem, when running udb commands from the Jython CLI, namely one of 'udb.g.la' or 'udb.u.la' (Others may be affected as well).
    Our user is logged on and the application handle works well for any other CLI calls.
    Our code looks something like this:
    app = PyCLUI()
    app.execRaw('udb.login'{...})   # as admin user
    app.execRaw('udb.g.la',{})This fails with a ClientException. I have printed the stack-trace:
    com.sun.n1.sps.model.util.ClientException
         at com.sun.n1.sps.model.util.ClientException.wrap(ClientException.java:96)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.innerExecute(CommandManagerImpl.java:312)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.execute(CommandManagerImpl.java:170)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:173)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at clui$py.execRaw$4(clui.py:46)
         at clui$py.call_function(clui.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyTableCode.call(PyTableCode.java:333)
         at org.python.core.PyFunction.__call__(PyFunction.java:195)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at org.python.pycode._pyx0.dumpUsers$36(cli_base.py:327)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyFunction.__call__(PyFunction.java:189)
         at org.python.core.PyObject._callextra(PyObject.java:786)
         at org.python.pycode._pyx0.main$44(cli_base.py:556)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:277)
         at org.python.core.PyFunction.__call__(PyFunction.java:174)
         at org.python.pycode._pyx0.f$0(cli_base.py:563)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyCode.call(PyCode.java:14)
         at org.python.core.Py.runCode(Py.java:1211)
         at org.python.core.__builtin__.execfile_flags(__builtin__.java:319)
         at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:158)
         at org.python.util.jython.main(jython.java:190)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java:386)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.run(BootStrap.java:254)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.main(BootStrap.java:52)
    java.lang.ArrayStoreException
         at com.raplix.util.proxy.ProxyManager.privateToPublicInstance(ProxyManager.java:422)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.innerExecute(CommandManagerImpl.java:304)
         at com.raplix.rolloutexpress.ui.api.CommandManagerImpl.execute(CommandManagerImpl.java:170)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
         at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:173)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at clui$py.execRaw$4(clui.py:46)
         at clui$py.call_function(clui.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyTableCode.call(PyTableCode.java:333)
         at org.python.core.PyFunction.__call__(PyFunction.java:195)
         at org.python.core.PyMethod.__call__(PyMethod.java:99)
         at org.python.core.PyObject.__call__(PyObject.java:650)
         at org.python.pycode._pyx0.dumpUsers$36(cli_base.py:327)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:437)
         at org.python.core.PyFunction.__call__(PyFunction.java:189)
         at org.python.core.PyObject._callextra(PyObject.java:786)
         at org.python.pycode._pyx0.main$44(cli_base.py:556)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyTableCode.call(PyTableCode.java:277)
         at org.python.core.PyFunction.__call__(PyFunction.java:174)
         at org.python.pycode._pyx0.f$0(cli_base.py:563)
         at org.python.pycode._pyx0.call_function(cli_base.py)
         at org.python.core.PyTableCode.call(PyTableCode.java:217)
         at org.python.core.PyCode.call(PyCode.java:14)
         at org.python.core.Py.runCode(Py.java:1211)
         at org.python.core.__builtin__.execfile_flags(__builtin__.java:319)
         at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:158)
         at org.python.util.jython.main(jython.java:190)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java:386)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.run(BootStrap.java:254)
         at com.raplix.rolloutexpress.node.bootstrap.BootStrap.main(BootStrap.java:52)I am not able to dig deeper, unfortunately. Is this worth filing a bug?
    Regards,
    Frank

    I believe there was a bug filed on this issue. A patch for this issue has been released.
    I think following solaris patches address this issue for MS/CLI 122989-02, 122990-02, 122991-02, 122992-02.
    hope this helps,
    Aj

  • Problem in jni getting object from methodst

    a want to save an object gatin from java and save it into my list in c code
    my probleme is when a call getobject more than one times it return null (in the first one it return the last object saved)
    i dont understand why
    this is my methods
    to add object in my list
    NIEXPORT void JNICALL Java_Matrice2_ajoutercell
    (JNIEnv *env, jobject obj, jint lig, jint col,jobject objectadded){
    AjouterCellule(objectadded ,lig,col,recupererAdresse(env,obj));
    // this is a method created to save the ovject in my list
    // ( in Ajoutercell a save my object like this
    List->element = val;
    struct list {....
    jobject val
    ]*list;
    the code work good if i use jint
    --- and this is the method to getobject
    JNIEXPORT jobject JNICALL Java_Matrice2_Getcell
    (JNIEnv *env, jobject obj , jint lig, jint col){
    return recuperercell(recupererAdresse(env,obj),lig,col);
    // the method recuperercell get the object from my list
    return List->valr;
    i hope that some one can understand my code and help me
    thanks ...

    i use newglobalref and it work ; but i have to delete every ref created when i delete or modify an object
    thanks to you

Maybe you are looking for

  • How to modify Find and Change indicator?

    I use Find and Change in Applewors 6. At present, this operation finds what is specified but the indicator is colored green and is open, and hard to locate on a page when looking for a single letter. I changed it from its original pale orange to what

  • Create a tab and display customized subscreen

    Hi, In the SRM portal I want a customized tab on the Display Purchase Order screen. On the click of the this tab, a customized sub screen should be displayed. To achieve this I have implemented the BADI BBP_CUF_BADI and created a subscreen. Now my qu

  • Where is the CS6 cleaner tool?

    I've found a cleaner tool at Adobe's website but it's for CS5.5 or earlier versions. I need to fix problems with Photoshop CS6 Beta installation. Is there any CS6 cleaner tool ? Also, the cleaner tool will remove only selected items, or everything fr

  • Cannot restore from Time Machine or Reinstall - MacBook Pro Yosemite

    Hi all, I recently started using a new Mac (Macbook Pro 15" with Yosemite) about 2 weeks ago. Upon startup it asked whether I wanted to encrypt and I said yes. It then froze for about 30min with the spinny wheel. After the startup was finally complet

  • Data forms

    Hi All,, can you please let me know the exact uses of the following in Web forms/data forms. 1. supress missing data 2. supress missing blocks 3.supress heirarchy 4. enable dynamic user variables 5. enable mass allocate. kindly do the need ful. thank