Compatibility of events API with Latest JPI1.4

Hi,
We have a Java applet written with mostly Jdk1.0 ... which works fine with
native JVM's of netscape 4.75 and IE5.5 browsers.
But when I use latest JPI1.4 and above, I find the conetent on the screen is not fully coming up unless the mouse move is done on that .
When I build/compile it, I get the following warnings
Can someone suggest is this deprecated API's that is causing the problems when we execute applets with the latest JPI.
What can be the workaround ???
warning: addItem(java.lang.String) in java.awt.List h
as been deprecated
loa.addItem(cs);
^
warning: delItem(int) in java.awt.List has been deprecated
list1.delItem(ind2[i]-i);
^
warning: delItem(int) in java.awt.List has been deprecated
list1.delItem(ind);
^
^
warning: mouseUp(java.awt.Event,int,int) in java.awt.Compo
nent has been deprecated
public boolean mouseUp(Event ev, int x, int y) {
^
warning: mouseDown(java.awt.Event,int,int) in java.awt.Com
ponent has been deprecated
public boolean mouseDown(Event ev, int x, int y) {
^
warning: mouseDrag(java.awt.Event,int,int) in java.awt.Com
ponent has been deprecated
public boolean mouseDrag(Event ev, int x, int y) {
^
warning: keyDown(java.awt.Event,int) in java.awt.Component
has been deprecated
public boolean keyDown(Event ev, int key) {
^
warning: keyDown(java.awt.Event,int) in java.awt.Component
has been deprecated
return super.keyDown(ev, key);
^
warning: mouseEnter(java.awt.Event,int,int) in java.awt.Co
mponent has been deprecated
mouseEnter(ev, ev.x, ev.y);
^
warning: mouseExit(java.awt.Event,int,int) in java.awt.Com
ponent has been deprecated
mouseExit(ev, ev.x, ev.y);
^
^
warning: getPeer() in java.awt.Component has been depreca
ted
return getPeer() != null;
^
warning: encode(java.lang.String) in java.net.URLEncoder
has been deprecated
warning: encode(java.lang.String) in java.net.URLEncoder
has been deprecated
urlst += ("&" + fid + "=" + URLEncoder.encode(getFieldVal(row, f
id)));

Hello Mike,
Please refer to this article 1794398 - Forward Fit Plan: Which patches are included in each
Support Pack for Business Intelligence (BI)
Cheers,
Fadoua

Similar Messages

  • Compatibility & file corruption issues with latest LibreOffice

    Prior to the most recent update of LibreOffice, I had no serious issues exchanging documents with Word users or importing, exporting and editing files in Writer.
    The latest version is causing me several headaches. First, exporting to .doc format seems to create documents which Word users cannot open except in Google docs and, if opened in Google docs, they cannot edit them without the formatting disappearing. Exporting to .docx seems to work better but I don't like doing this in case the person has an older version of Word.
    Also, my computer crashed while I was editing a document originally imported from Word. When I restarted, LibreOffice successfully recovered the file but the formatting was so screwed up that I had to get a fresh copy of the application form I was completing and start again. (Actually, I could copy and paste text successfully so I wasn't starting again from nothing but it was still pretty annoying as I'd almost finished the application when the crash occurred.)
    Was I just unlucky? Or is anybody else seeing issues with the latest version?

    KenMadsen wrote:
    My options are set to "choose a folder to save the file in each time", which is not being respected anymore.  The above reply does NOT address the missing ability to cancel an unwanted file transfer.
    Try again please.
    As long as you have a bullet in "choose a folder to save the file in every time"  then it will not save files to a folder or automatically accept incoming files.  The main exception to that is the initiation of a file for the first time on the newer clients.  If it pops up about the new automatic saving you would click on "settings" and toggle it back to you preferred setting.  The only other exception to that are images.  Images sent to you via a mobile are sent to the cloud and will be cached/downloaded into your media folder.  That cannot be avoided.  You can cancel ongoing transfers on your end but not pending transfers.
    I made this graphic to better break it down:
    If you find your Skype is not listening to your configuration changes beyond what was already mentioned, you can use the following program to reset your Skype configuration.  You will need to exit completely out of Skype beforehand, otherwise the reset will be incomplete.
    http://www.pcdust.com/Downloads/ListFix/ListFix.exe
    You can then rerun through the wizard, perform an initial file transfer, reconfigure your settings and those settings should hold.

  • Dreamweaver MX 2004 compatibility with latest versions?

    Dreamweaver MX 2004 compatibility with latest versions?
    I have templates in a old Dreamweaver MX 2004 and want to update my software. Will I need to go in steps to a version a few years back and then to current?  Or can I go all the way to current?
    I also can't get my old dreamweaver to register anymore and they have NO support for it.  Any clues?  It is legit an I have the registration numbers and all the same but it won't take it for some reason.
    thank you all for any support you can give.

    HTML is HTML.  The product you use doesn't matter much except in terms of "ease of use" and quality of code it generates.  MX is a dinosaur.  Depending on how you built your sites with it, you may need to update your code to modern web standards.  But your site's code will remain editable in any version of DW.
    That said, a LOT has changed in 10 years.  So if you don't have really strong coding skills in HTML and CSS, you will struggle with newer versions of DW.  The interface is different, too, so it will take some adjustment.
    CS6 is the only version you can still purchase.
    Creative Suite 6
    All the rest are available only through subscription to the Creative Cloud.
    Creative Cloud pricing and membership plans | Adobe Creative Cloud
    Nancy O.

  • ERROR : Cannot read the request body while creating new calendar event api.

    Hi, 
    I was trying to create and update the calendar event using [POST] https://outlook.office365.com/api/v1.0/me/events and [PATCH] https://outlook.office365.com/api/v1.0/me/events/<eventId> respectively.
    When i try with poster or postman, I get this error
    {error: {code: "ErrorInvalidRequest" message: "Cannot read the request body."} }
    its not working . Any help will be appreciated.
    Note: GET events and DELETE Events are working. I think the API with payload is not working.
    Test Data :
    URL: https://outlook.office365.com/api/v1.0/me/events/
    Method: POST
    JSON Data(Payload):
      "Subject": "Discuss the Calendar REST API",
      "Body": {
        "ContentType": "HTML",
        "Content": "I think it will meet our requirements!"
      "Start": "2015-01-06T07:03:07.481Z",
      "End": "2015-01-05T07:03:07.481Z",
      "Attendees": [
          "EmailAddress": {
            "Address": "[email protected]",
            "Name": "Konveen"
          "Type": "Required"
    Error:
        "error": {
            "code": "ErrorInvalidRequest",
            "message": "Cannot read the request body."

    Hi Sahil,
    I was able to make your request work fine against my Office 365 mailbox with 2 changes.
    1. Can you please make sure you are adding header "Content-Type: Application/Json"?
    2. Can you please make sure your end time is AFTER start time?  Looks like there is a typo with your current request as the start time is on 2015-01-06 and end time is on 2015-01-05.
    Hope that helps ...
    Thanks,
    Venkat

  • Adobe acrobat add ons does not work with latest firefox

    I have been using firefox because of my adobe acrobat add ons.. I alwasy convert pages to adobe pdf using my acrobat. It works with firefox 4.0 but it does not work anymore with latest firefox.
    Can you help me with this?

    Maybe if you read about privacy, policy and sharing of data you'd change your mind. But it was reported that it appeared to work if you used something like the "Add-ons Compatibility Reporter".
    You can force 5.0 "compatibility" with the "[https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/ Add-on Compatibility Reporter]" extension, or with [http://kb.mozillazine.org/Extensions.checkCompatibility extensions.checkCompatibility] using about:addons.
    * http://kb.mozillazine.org/Problematic_extensions

  • No Special Event Stream with QT7.1.3? Just a black pixel. :-(

    hi all,
    the official link to the stream of the latest Apple Special Event (http://events.apple.com.edgesuite.net/sep_2006/event/index.html) doesn't work for me.
    When I click the "Watch the Special Event" button, QT 7.1.3 starts but just with a 1 second lasting 1x1 black pixel.
    Anybody else with this problem?
    I reenabled Flash in the settings and HTTP with port 80 as protocol but that didn't help. Before the upgrade to 7.1.3 I was able to watch every Apple Event stream with no problem at all!
    strange thing ...
    thx
    Stefan.

    works now.
    changed nothing.
    just tried again and again and again.
    maybe Apple changed something, maybe it still was the tremendous demand.

  • Events problem with (Java and ActiveX)

    Hi,
    I use an ActiveX component with Java and i've got a problem with events.
    Java classes were generated with Bridge2Java (IBM).
    In order to manage events I added a listener in my application :
         javaMyActiveX = new MyActiveX();
         javaMyActiveX.add_DMyActiveXEventsListener(new _DMyActiveXEventsAdapter());
    I also added a constructor in the _DMyActiveXEventsAdapter class and I fill the body of methods.
    The ActiveX generates two types of events :
    - The ones are directly generated by methods.
    - The others are generated by a thread.
    With MS Products (VB, Visual C++, Visual J++), I catch all events.
    With java (jdk 1.4), I catch only events generated by methods.
    Can anyone help me.

    I'm not 100% sure, but the last time I used that bridge, it only worked if you ran your Java app within a Microsoft VM.

  • Hello,  I have iMac from Oct, 2010 and have OS 10.6.7 and multiple users.  Mail icon was accidently removed along with program.  Mail 4.4 is on other users but when I reloaded software my user got Mail 4.3. Mail 4.3 did not work with latest OS. Ideas?Matt

    Hello,  I have iMac Itel i3, from Oct, 2010 and have OS 10.6.7 and multiple users. 
    About 3-4 days ago the Mail icon in dock had question mark and was accidently removed, along with program on my user.  Oops.
    1. Mail 4.4 is on other users and works fine, but for me it does not work and tells me V4.3 does not work with latest OS X. 
    2. I reloaded software from my user with original disks  (Oct, 2010) and got Mail 4.3 again. Mail 4.3 did not work with latest OS.  I am unable to load Mail.  Gives Yellow error message.    
    "  You have Mail version 4.3 (1081/1084). It can’t be used on Mac OS X Version 10.6.7 (Build 10J869). For more information, click the Help button."
    3. Tried to update software and look for update for mail 4.3 on Apple site to no success.
    Hate to go to MS-Entorage ( I may need to learn something new and alien) mail program since contracts are in Mail/Address Book.
    Ideas?
    MattDeeds

    Matt,
    I would download and run the 10.6.7 combo update.
    http://support.apple.com/kb/DL1361
    Regards,
    Captfred

  • I have just updated my iPhone 4 with latest IOS 7 and now wi fi greyed out and Bluetooth not working. Tried reset, restore everything - no use. Its out of warranty too. I refuse to pay for a new phone when clearly this is an apple issue not phone issue.

    Can anyone help? I updated my iPhone 4 with latest iOS 7 and now wi fi is greyed out, Bluetooth won't work and tbh am so angry! Phone now out of warranty so apple won't help without it costing me. Don't want to pay as its an apple problem not phone problem. It worked ok before. Tried everything, even clearing it down. Can't even back it up now unless I connect to a pc!

    I have not had wifi since November when I upgraded to the newest IOS version.  I called the Apple help line and they told me some things to do and I tried them all and they worked for a few hours and then wifi shut off again.  I kept doing what they told me and it worked for a couple more days and then I could never turn it on again.  My blue tooth doesn't work either.  I had to actually increase my data usage with AT&T becuase of this.  When I did that in December I went to the Apple store and was told that it is a hardware issue and since my phone is out of warranty I would have to pay for a new phone because they could not fix the issue.  My upgrade isn't up until June 2014 so not only do I have to wait for the upgrade and I am not paying for a new phone but I have to pay $10 plus extra a month on my cell phone bill because I was going over on my Data!!!  I have been beyond upset about this and Apple is not doing anything about this nor did they offer up some way to resolve the issue because obviously it is not just some rare incident if several people are having this issue.  Who knows how many people out there have had this issue and have not said anything about it.  Now there is a newer update that I can't do because it requires wifi in order to download.
    June can not get here fast enough and I may not go back to Iphone after dealing with this for so long with no help from Apple.

  • How can i install google maps on an iphone 3gs with latest os

    how can i install google maps on an iphone 3gs with latest os

    Actually Apple has developed its own maps and no more have it in sync with google as it did before so now apple has its own mapping software.
    http://www.nytimes.com/2012/09/20/technology/apple-ios-6-leaves-out-googles-maps .html?_r=0

  • CAN I UPGRADE MY MAC BOOK PRO WITH LATEST MAC

    I brought a mac book pro in augest 2010 from apple store. Is there any possibility to upgrade my mac book with latest configuration offered by apple? My mac book pro in is very good condition as it is when i brought it. Please let me know regrading this...
    Thanking you

    Apple will not normally buy back old Macs. They do offer a recycling program with the store.  Inquire at your local store.  This is a user to user forum, so no one here can answer for Apple directly, except with what we have experienced as users.
    My website has tips on selling your old Mac*:
    http://www.macmaps.com/selling.html

  • I updated my iPhone with latest update.  I was asked if I wanted to communicate with iCloud for all my devices.  I chose yes.  I than am told I need to check my email to verify my account and there is not an email for apple to verify

    I updated both my iPad and iPhone with latest update.  Love it!  However, I wanted to use the find iPhone using iCloud feature.  From the beginning of update it kept prompting me to verify my account when I wanted to use iCloud ???  Apple kept telling me to check my email to verify my account and there is not an email from them.   And I'm not talking about verifying by my alternate email which I was successful at.

    Blue
    It sounds like you restored from an old back-up.  Did you back-up just before your software update?  It will use your last one and if your last back-up was a ywear old then it will use that one.
    In general, if you are getting these messages on your iPhones select logout (when you get that Apple Id request) and then log back in with your newer ID.
    Sorry for your losses.
    Cheers

  • Can I have multiple event structures with the same event cases?

    Hello, 
    I'm doing an application that reproduces the front panel of the HP6675A power supply. To achieve this, I have done a state machine with different states
    (initialize, measures, voltage, current, ocp, ov, store, recall, etc). In each state, should have an event structure that catches the events of the buttons, like for example: if the current state is the Voltage mode and the user press the current button the next state will be the Current mode. For this in each state of the state machine should be the same event structure with the same events.
    My problem is that the Vi doesn't work properly when I have multiple event structures with the same event cases. There are some possibily to do this, and how? Or is impossible to have multiple events? I have been reading some posts, but I don't find solutions. 
    Any help is appreciated.
    Thank you very much.
    Solved!
    Go to Solution.

    natasftw wrote:
    Or as others mentioned, make two parallel loops.  In one loop, have your state machine.  In the other, have just the Event Handler.  Pass the events from the handler to the state machine by way of queues.
    A proper state machine will not need the second loop.  The "Wait For Event" or "Idle" state (whatever you want to call it) is all you really need in order to catch the user button presses.  The setup is almost there.  Maybe add a shift register to keep track of which state to go to in the case of a timeout on the Event Structure.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • I have a brand new macbook pro 15" with latest Lion.Can anyone tell me why, when I open word or preview etc that multiple files open?For eg if I open a word doc, the last 1-3 docs that I have worked on all open. why?

    I have a brand new macbook pro 15" with latest Lion. Can anyone tell me why, when I open word or preview etc that multiple files open?For eg if I open a word doc, the last 1-3 docs that I have worked previously on all open. Can anyone tell me why?

    You have a choice as to whether or not applications in Lion like Word or Preview (or even Safari) save and re-open previous documents or windows... just hold down the option key while quitting a program and when you re-open it you won't get the previous documents or windows when you re-open the application. You can see this by selecting the open program in the menu bar and when holding down the option key the quit function will change to quit and discard open windows. This feature in Lion is referred to as "Resume" and is great if you want to restart an app and return to what you're doing (for example in Safari re-opening existing windows and tabs from your previous session). You still have the option to close individual windows within an app before quitting and they will not re-open when the app is launched again.
    This Resume function is not related to saving your work (a word or text document for example). This is handled by Lion's "Auto-Save" and "Versions" functions. See http://www.apple.com/ca/macosx/whats-new/auto-save.html
    Hopefully this is the complete answer you're looking for.

  • Error occurred while finding users using API with custom field

    Hi All,
    I am getting the following error while searching user using API with custom attribute. Did anybody faced the same problem before ?
    Hashtable<Object,Object> env = new Hashtable<Object,Object>();
    env.put("java.naming.factory.initial", "weblogic.jndi.WLInitialContextFactory");
    env.put(OIMClient.JAVA_NAMING_PROVIDER_URL, "t3://localhost:14000");
    System.setProperty("java.security.auth.login.config","C:\\Oracle\\Middleware\\Oracle_IDM1\\designconsole\\config\\authwl.conf");
    System.setProperty("OIM.AppServerType", "wls");
    System.setProperty("APPSERVER_TYPE", "wls");
    tcUtilityFactory ioUtilityFactory = new tcUtilityFactory(env, "xelsysadm", "Weblogic123$");
    OIMClient client = new OIMClient(env);
    client.login("xelsysadm", "Weblogic123$".toCharArray());
    SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
    tcUserOperationsIntf moUserUtility = (tcUserOperationsIntf)ioUtilityFactory.getUtility("Thor.API.Operations.tcUserOperationsIntf");
    Hashtable mhSearchCriteria = new Hashtable();
    mhSearchCriteria.put("USR_UDF_ACTUALSTARTDATE",formatter.format(date));
    tcResultSet moResultSet = moUserUtility.findAllUsers(mhSearchCriteria);
    printTcResultSet(moResultSet,"abcd");
    log4j:WARN No appenders could be found for logger (org.springframework.jndi.JndiTemplate).
    log4j:WARN Please initialize the log4j system properly.
    Exception in thread "main" Thor.API.Exceptions.tcAPIException: Error occurred while finding users.
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:237)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
    at Thor.API.Operations.tcUserOperationsIntf_e9jcxp_tcUserOperationsIntfRemoteImpl_1036_WLStub.findAllUsersx(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 weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
    at com.sun.proxy.$Proxy2.findAllUsersx(Unknown Source)
    at Thor.API.Operations.tcUserOperationsIntfDelegate.findAllUsers(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 Thor.API.Base.SecurityInvocationHandler$1.run(SecurityInvocationHandler.java:68)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.security.Security.runAs(Security.java:41)
    at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(weblogicLoginSession.java:52)
    at Thor.API.Base.SecurityInvocationHandler.invoke(SecurityInvocationHandler.java:79)
    at com.sun.proxy.$Proxy3.findAllUsers(Unknown Source)
    at oim.standalone.code.OIMAPIConnection.usersearch(OIMAPIConnection.java:209)
    at oim.standalone.code.OIMAPIConnection.main(OIMAPIConnection.java:342)
    Caused by: Thor.API.Exceptions.tcAPIException: Error occurred while finding users.
    at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.findAllUsers(tcUserOperationsBean.java:4604)
    at Thor.API.Operations.tcUserOperationsIntfEJB.findAllUsersx(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor1614.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
    at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
    at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at com.sun.proxy.$Proxy347.findAllUsersx(Unknown Source)
    at Thor.API.Operations.tcUserOperationsIntf_e9jcxp_tcUserOperationsIntfRemoteImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
    at Thor.API.Operations.tcUserOperationsIntf_e9jcxp_tcUserOperationsIntfRemoteImpl.findAllUsersx(Unknown Source)
    at Thor.API.Operations.tcUserOperationsIntf_e9jcxp_tcUserOperationsIntfRemoteImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:667)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:522)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:518)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Thank you

    Hi J,
    Thanks for the reply. But the code is working fine for OOTB attributes and  for 11g API i am getting permission exception
    Exception in thread "main" oracle.iam.platform.authz.exception.AccessDeniedException: You do not have permission to search the following user attributes: USR_UDF_ACTUALSTARTDATE.
    at oracle.iam.identity.usermgmt.impl.UserManagerImpl.search(UserManagerImpl.java:1465)
    at sun.reflect.GeneratedMethodAccessor1034.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at oracle.iam.platform.utils.DMSMethodInterceptor.invoke(DMSMethodInterceptor.java:25)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at com.sun.proxy.$Proxy366.search(Unknown Source)
    at oracle.iam.identity.usermgmt.api.UserManagerEJB.searchx(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor1449.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
    at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
    at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at com.sun.proxy.$Proxy365.searchx(Unknown Source)
    at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
    at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl.searchx(Unknown Source)
    at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:667)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:522)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:518)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: oracle.iam.identity.exception.SearchAttributeAccessDeniedException: You do not have permission to search the following user attributes: USR_UDF_ACTUALSTARTDATE.
    at oracle.iam.identity.usermgmt.impl.UserManagerImpl.search(UserManagerImpl.java:1462)
    ... 44 more

Maybe you are looking for

  • Portal runtime error, when click on ESS MSS

    Dear Gurus, Whenever I click on any link of MSS, it gives me runtime error. Please see the screenshot. Portal runtime error An exception occurred while processing your request. Send the exception ID to your portal administrator. Exception ID 03:38_14

  • Server ip address

    i have an application that runs on several servers. However i need to get the jsp to display the ip address of the server the application has come through. I know the request.getServerName command, but it only displays the first ip address and none o

  • Activating the Timeline when there are no sequences

    I have read everything I can but am stumped. I am familiar with RE 8 but used someone elses computer last week to capture a number of .AVI videos off of betacam tapes. I am trying the trail version of PR pro ver 5.5. I can import my .avi files to the

  • AIM camera is black when connected to iChat

    iMac G5 running osX.4.3 isight ichat (3.1) I am trying to do a one way chat to a buddy on AIM (pc - xp pro) and the camera says its connected but I just get a black screen. I am able to connect from one mac to another and view the video through ichat

  • Z22 won't power on even after soft and hard restart

    I've left the 2 yr old Z22 on recharge for days - tried both types of restarts - tapped the "brighten screen" area. Post relates to: Palm Z22