Wls-10.3.4 AD auth failed with ADF 11.1.1.3 app after upgrade from 10.3.3

Hi,
i have posted same issue on wls-10.3.4 Active Directory Authentication failed after Upgrade from 10.3.3
I'm not sure if this could be an adf or wls topic.
we have a wls 10.3.3 Installation with ActiveDirectory authentication provider.
Delegated authentication against AD has worked very well.
Now we have installed wls 10.3.4 and have configured the ActiveDirectory authentication provider in the same manner.
Users and groups are listed like before in wls console, but authentication from our running ADF application is answered with "invalid username or passwort".
No exceptions are logged in domain or admin server logs.
The application was developed and compiled (ojdeploy) with jdev 11.1.1.3.
wls 10.3.4 domain is upgraded with adf 11.1.1.3 libs.
Authenication over wls console with AD credentials also fails.
Has anybody made same experiences or workarounds?
Thanks in advance
Andre

Hi,
you should take a look at the ADF security files , especially the jazn xml file. Try to open your PS2 application in the new Ps3 Jdev and look if there are changes to the jazn.xml.
Or you can check the jazn data xml file in the fmwconfig folder of the config domain folder.
and check all the authenticators if everything has the sufficient control flag.
hope this helps

Similar Messages

  • Time machine fails backing up with a "backup disk not found" error after upgrade to Lion 10.7.2

    Time machine fails backing up with a "backup disk not found" error after upgrade to Lion 10.7.2. I've erased and reformatted the drive; reconnected Time Machine(it saw it) and began a new backup. The backup starts again but fails before completing with backup drive not found error. I used the 10.7.2 combo update. Any help on how to fix this problem would be appreciated.

    Arghhhhhhhhhhhhhhhhhhh!!!!!!
    After waiting since October for a fix, I have now upgraded the firmware on the Time Capsule and installed the new Airport Utility, released yesterday, and the situation is even worse.
    Up until now, the Airport Utility had an option to disconnect all drives manually and the Time Capsule would then work until the next reboot – a temporary (?) work-around.
    Now that option does not exist in the new-look Airport Utility. And the Airport Utility installation can’t be rolled back and the old utility won’t restore.
    The sparesbundle is still not accessible. Anyone worked out a work-around in the new environment yet?
    I have another Time Machine backup working fine to a trusty old Lacie Drive so erased the one on my Time Capsule to see if that works. I have renamed the Capsule and the Time Capsule Drive.  But to build another full backup will take at least two days and I shall be away from tomorrow and am reluctant to leave the Capsule and computer up and running for a week. And I’ll bet the sparsbundle will still be nowhere to be found.
    How can Apple screw up so badly when they are to become the richest company in the entire world and – soon – will have more cash in the bank than the entire United States? Can’t they afford someone who really can sort this out? Especially when a Firewire connected hard drive – my trusty and simple LaCie – works fine.
    Words, almost, fail me.

  • Issue with VO extension after upgrading from 11i to R12

    Hi All,
    We are facing issue with VO extension after upgrading from 11i to R12(12.1.3).
    Most of the cases we are facing issue as given below,
    oracle.apps.fnd.framework.OAException: oracle.jbo.AttributeLoadException: JBO-27022: Failed to load value at index 21 with java object of type java.lang.Boolean due to java.sql.SQLException.
    Please help me out to resolve this issue.
    Any help/suggestion will highly appreciate.
    Thanks & Regards,
    Sunita

    Hi Gyan,
    Thanks for the response.
    There is one attribute has added in VO query.
    In VO.xml file ViewAttribute definition is as given below,
    <ViewAttribute
    Name="DisplayApproveButton"
    IsUpdateable="false"
    IsQueriable="true"
    IsPersistent="false"
    Type="java.lang.Boolean"
    ColumnType="NUMBER"
    AliasName="DisplayApproveButton"
    Expression="xxh_invoice_approval_pkg.check approval(invoice_id)"
    SQLType="BIT" >
    </ViewAttribute>
    Thanks & Regards,
    Sunita

  • I have a big problem with Lion and PGP. After upgrading from snow leopard to lion I cannot access my PGP drive which was generated under snow leopard. PGP does not start but gives a notion that lion cannot work with my PGP version. Solution?

    After upgrading from Snow Leopard to Lion I cannot access a PGP drive which was generated under snow leopard. PGP does not start. When I try to start I just receive a message that Lion cannot work with PGP. How can I now access important and confifential informatio which I have stored in PGP (snow leopard). Do I have to move back to snow leopard. If so, how can I do this? 

    If you have this product,
    http://www.symantec.com/business/support/index?page=content&id=TECH165159
    you have to go back to Snow Leopard.
    To re-install SL, back up your home directory, format and re-install.

  • Problem with some apps after upgrade to 5.1 (can I downgrade it to 5.0 ??)

    Dear all,
    I'm experiencing some problems with apps after upgrading to 5.1, some of them just got stucked or not even start up. Is there a way of fixing this or downgrade to 5.0 ??
    Thanks

    you cannot downgrade, sorry.

  • Performance issue after Upgrade from 4.7 to ECC 6.0 with a select query

    Hi All,
    There is a Performance issue after Upgrade from 4.7 to ECC 6.0 with a select query in a report painter.
    This query is working fine when executed in 4.7 system where as it is running for more time in ECC6.0.
    Select query is on the table COSP.
    SELECT (FIELD_LIST)
            INTO CORRESPONDING FIELDS OF TABLE I_COSP PACKAGE SIZE 1000
            FROM  COSP CLIENT SPECIFIED
            WHERE GJAHR IN SELR_GJAHR
              AND KSTAR IN SELR_KSTAR
              AND LEDNR EQ '00'
              AND OBJNR IN SELR_OBJNR
              AND PERBL IN SELR_PERBL
              AND VERSN IN SELR_VERSN
              AND WRTTP IN SELR_WRTTP
              AND MANDT IN MANDTTAB
            GROUP BY (GROUP_LIST).
       LOOP AT I_COSP      .
         COSP                           = I_COSP      .
         PERFORM PCOSP       USING I_COSP-_COUNTER.
         CLEAR: $RWTAB, COSP                          .
         CLEAR CCR1S                         .
       ENDLOOP.
    ENDSELECT.
    I have checked with the table indexes, they were same as in 4.7 system.
    What can be the reson for the difference in execution time. How can this be reduced without adjusting the select query.
    Thanks in advance for the responses.
    Regards,
    Dedeepya.

    Hi,
    ohhhhh....... lots of problems in select query......this is not the way you should write it.
    Some generic comments:
    1. never use SELECT
                       endselect.
       SELECT
      into table
       for all entries in table
      where.
       use perform statment after this selection.
    2. Do not use into corresponding fields. use exact structure type.
    3. use proper sequence of fields in the where condition so that it helps table go according to indexes.
        e.g in your case
              sequence should be
    LEDNR
    OBJNR
    GJAHR
    WRTTP
    VERSN
    KSTAR
    HRKFT
    VRGNG
    VBUND
    PARGB
    BEKNZ
    TWAER
    PERBL
    sequence should be same as defined in table.
    Always keep select query as simple as possible and perform all other calculations etc. afterwords.
    I hope it helps.
    Regards,
    Pranaya

  • I have this empty black box in middle of screen with cursor in it after upgrading from SnowLeopard to Mavericks - any help???

    I have this black outlined box with cursor stuck in it after upgrading from Snow Leopard to Mavericks -- any help??? I can't get rid of it.

    From another thread.
    https://discussions.apple.com/message/24902799#24902799
    Go to accesibility/zoom/more options/show rectangle... and uncheck that.
    Strange outline rectangle on my screen...

  • Very slow encoding after upgrade from 5.03 to 5.5 with MXO2 mini

    Hi all.
    After upgrading from CS5.03 to 5.5 my encoding now takes 5 times as long. A 2 minute HD Video file would take 2 minutes, and still does on the PC I haven't upgraded (identical almost) but now with CS5.5 it takes almost 11 minutes.
    Some explanation....
    I create HD MJPEG files on a PC with Blackmagic Decklink.
    I transfer these files to an HPz800 which used to run CS5.03 with Matrox Utils 5.1.1.37 and an MXO2 Mini with Max. (Nvidia Quadro fx4800 and 12GB of RAM)
    On a Blackmagic timeline HD 1080i MJPEG with filters of Auto Color, Fast Color Corrector and Gamma correction a 2 minute timeline would encode in 2 minutes give or take a couple of seconds.
    Now with CS5.5 and Mtx 5.5 an identical file takes 11 minutes to encode to Microsoft avi - Matrox 1920 x 1080i - 25fps.
    If I remove the filters (which I need to be able to use) it will come down to 2 minutes as it used to be.....so it seems to be the filters are now slowing things down when they never used to. I have never rendered before exporting. Ever. So this time I tried rendering first and it brought the 11 minutes down to 7 minutes but when taking into account the 4 minutes rendering time I am no better off.
    I have updated CS5.5 to CS 5.5.1 and MTX Utils to 5.5 and then 5.5.1 and it makes no difference. Still 11 minutes to decode 2 minutes with three filters, which is exactly what I have always been doing but now it doesn't work....
    Can anybody help? or make a suggestion as to why using filters in 5.5 now multiplies the encode time by 5 when it never used to. Everything else bar Matrox Utils on this machine is as it was before the upgrade to 5.5 and as I say my older machine is still 5.03 it can do it all in 2 minutes even with the filters intact.
    So have I really spent a small fortune upgrading to make my output 5 times slower. Not happy......

    To go further, every single encode that I have done is slower than it was before with CS5.01 or 5.03.
    This is odd because going from Blackmagic to any other codec doesn't necessarily need the Matrox box or Matrox utils
    Blackmagic HD or SD to
    Matrox HD
    QT HD MP4
    QT SD DV25
    DV AVI SD
    Mpeg2 - DVD
    Every single encode is slow by 2x to 6x.
    Why should Blackmagic HD to QT MOV MP4 take twice as long as it used to...... having said that The speeds I am seeing now are what it was like before I attached the box in the first place, whether a Matrox codec was involved or not.... It is acting like a blocked funnel. when it used to be a lovely wide and clear funnel.
    Anyway Matrox have reproduced the problem and are investigating, so hopefully there will be an answer soon....

  • Update record failed with "SPOC 003: Error in spool C call: Error from TemS

    Guys
    I have 4.7 production system with 4 dialog instance
    The logon groups are configured .
    For 1 of the application server ,when user does any PO or GR ,update fails with above message
    The spool is configured to stored on file . SM21 says read /write problem on /globle/100SPOOL
    But all is very good .sidadm has all read,write permission on this
    More it also shows "Operating system call gethostbyname failed "
    Please help me to solve this
    Thanks a ton in advance
    -Ganesh

    Hi Thomas
    Thanks
    I checked on this and all works fine
    Also we use NIS services to maintain all this
    Our Unix team says NIS ,host and all works very fine
    Please suggest as update stuck is causing many problems . Temporarily we have removed this perticular instance from logon group so that no user will log on to this
    Thanks in advance guys
    -Ganesh

  • Crypt acquire context failed with 0x8009000f after upgrade from sms 2003 to SCCM 2007 SP1

    I've upgraded clients from SMS 2003 SP3 to SCCM 2007 SP1.
    In the SCCM console some ressources are showing as not being client.
    If I look on the machine, I can see that client is installed but the client cannot communicate with the management point.
    CCMEXEC.log shows the following error message :
    Crypt acquire context failed with 0x8009000f.
    Failed to create certificate 8009000f CcmExec 21/04/2009 9:49:10 1948 (0x079C)
    CCMDoCertificateMaintenance() failed (0x8009000f).
    So, the issue is related to certificate
    If I go to C:\documents and settings\all users\Application Data\Microsoft\Crypto\RSA\MachineKeys and delete the file begining by  19c5cf... and then restart the client the problem is solved.
    Can someone explain what is happening ?
    What can I do to prevent this problem
    Kind regards

    In Server 2008 R2 SP1 (when Pushing Out SCCM 2012 clients)
    I just added another account to the security (local Administrators) for the key which starts with 19c5cf...
    and restarted the SMS AGENT HOST SERVICE.
    Thats also resolved the problem. (NETWORK was the only security account on the key file).

  • Backup failed with a non-descript error and 4.5 upgrade fails with fatal error

    couldn't backup, somewhere in the middle of profiles the backup bombed each time, couldn't upgrade from 4.3. to 4.5 and browser application stopped working complaining about no service or something.  it briefly worked after that, and than stopped again, so that all browser based apps just give a white screen that says blackberry.
    took it to the verizon store, they couldn't figure it out either and they couldn't get through to their tech support.
    did a complete wipe of it, redownloaded 4.6 desktop software, and it still won't upgrade from 4.3 (which is what reappeared after the complete wipe).  interestingly a bunch of my apps all reappeared so it must have backed up/synched my applications.
    lost all my contacts, but at least it is working again.  not sure that I want it anymore if it won't upgrade from the O/S anyway.
    i know i can't get any help because it doesn't give any useful error messages, but I just want to complain about this brand new 8330.  the second in a month.  the first had a microphone problem that required a new device on day 2.

    yes , i am using symantec netbackup,
    but every thing is fine from their side as well(settings).
    i have reinstalled the client as well.
    it runs for 1 hr and then it throws error.
    yesterday i scheduled two backup at two different time(at the interval of 1 hr) but they both failed (struck) at the exact same time(even seconds were same).
    So what do you say??

  • ACS loses connection with AD occasionally after upgrade from 5.2 to 5.3.0.40

    ACS had been integrated with Active Directory before ACS upgrade to 5.3. After the ACS 5.3 upgrade users aren’t able to login to AAA devices occasionally. Error message is:
    {AuthenticationResult=Error; Type=Authentication; Authen-Reply-Status=Error; }
    24429 Could not establish connection with Active Directory
    At the same time, when this issue occurs, ACS connection to AD works fine (checked with Users and Identity Stores> External Identity Stores > Active Directory “Test Connection”)

    I had the same problem, I opened a Cisco TAC case and my issue was resolved.
    Sent: Tuesday, 14 August 2012 9:58 AM
    Subject: RE: 622739355 HelpDesk#SVR328332-2 : Troubleshoot Cisco ACS 1121 v5.3 With Windows Active Directory
    Hi Ramraj,
    Thanks for the link to the article, but from what I’ve seen in the logs I’m not sure that we’ve got the same root cause to the issue.
    From the ACSADAgent.log files I can see log messages like:
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG network.state NST: SniffList: postfailsort=mykulad11p.cssc.dksh.net
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG base.kerberos.adhelpers Encryption (id 1) is not supported by KDC. Try next in the list
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG base.osutil Module=Kerberos : KDC refused skey: KDC has no support for encryption type (reference base/adhelpers.cpp:216 rc: -1765328370)
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG base.adagent Unable to refresh computer credentials: KDC refused skey: KDC has no support for encryption type
    This lines up with the error message that we see in the TACACS+ Authentication logs:
    24493 ACS has problems communicating with Active Directory using its machine credentials.
    I have come across a NETBIOS limitation (it’s not an ACS bug, but a bug has been filed for tracking and documentation purposes) that prevents two ACSs from being connected to Active Directory at the same time if the first 15 characters of their hostnames are the same. The bug ID is CSCtj62342 and its externally visible details are available here: http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtj62342
    The hostname of the primary ACS is : MYMY-TPM-DC-ACS-1
    The hostname of the secondary ACS is: MYMY-TPM-DC-ACS-2
    From the hostnames, we can see that the first 16 characters of the hostnames are the same. What this means is that once the primary is connected to AD, after some time passes (this will depend on when the secondary goes an talks to AD) the secondary will lose its connection to AD and any authentications hitting the secondary will fail with the same error: 24493 ACS has problems communicating with Active Directory using its machine credentials.
    To resolve this issue, the hostnames of the ACSs will need to be changed so that the first 15 characters of their respective hostnames are not the same. Please keep in mind that this is a NETBIOS limitation and not a software bug.

  • YC_GEN app engine failed after upgrading from EPM 8.9 to 9.1 Rev1

    we tried upgrading our EPM 8.9 + tools 8.49.23 application to EPM 9.1 + tools 8.53.08. After upgrading when we tried to run the YC_GEN app engine it failed with the below error.
    Error:
    17449 20.26.27 0.000111 321: &ln_1 = &lbi_1.Execute();
    17450 20.26.27 0.017373 ErrorReturn-> 2 - Interlink Definition: Execution failed. (122,2) DERIVED_CG_BAT.CG_BATCH_PRV.FieldFormula Name:LoadDepends PCPC:27203 Statement:321
    Called from:YC_GEN_TBLS.MAIN.GBL.default.1900-01-01.UpdDpnds.OnExecute Statement:2
    17451 20.26.27 0.000080 <<< end-ext Nest=01 LoadDepends DERIVED_CG_BAT.CG_BATCH_PRV.FieldFormula Dur=2.480543 CPU=1.190000 Cycles=94840
    17452 20.26.27 0.000028 <<< end Nest=00 YC_GEN_TBLS.MAIN.GBL.default.1900-01-01.UpdDpnds.OnExecute Dur=2.486408 CPU=1.190000 Cycles=94874
    17453 20.26.27 0.008761 Database Options: override_connection_reset: 0
    we tried using libpsfidrvr.so file which delivered with EPM as well as with tools both is not working.

    I resolved my issue. Renamed search.sqlite and reinstalled Firefox 9.0.1
    All default search engines are now available.

  • Problem with Java Script after upgrade from BW 3.5 to BI7

    Dear Colleagues,
    We're facing the issue with Java Script after upgrade of BW 3.5 to BI7.
    Just after update we checked the basic functionality and it occured that some of web templates that use Java Script don't work. They generate seelction screen, but after selection the screen becomes blank without any error messages.
    We're currently stucked since web templates weren't converted to BI7 version so they should work exactly as before the upgrade.
    We compared the Java code with other environment that was not upgraded - it's perfectly the same.
    The only explanation that comes to my mind is that some Java Script settings on the server level were changed during the upgrade but I have no idea where I can check that.
    Thanks in advance for any suggestions,
    Andrzej Bobula

    Hi Deepu,
    Thanks, it was great to read your reply and then few minutes later talk to you live on SDN Day!
    Unfortunately, http cache clean-up did not help. But there is another funny thing I found - for exactly the same 3.5 webtemplate html code returned from WebAS 3.5 was different then from 7.0.
    Unfortunately, this editor does not allow to paste complete code, even in CODE brackets, but here are main differences:
    <b>3.5</b>
       if (navigator.appName == "Microsoft Internet Explorer")
    <frame src="/sap/bw/BEx?SAP-LANGUAGE=E&PAGENO=1&REQUEST_NO=1&CMD=GET_TEMPLATE"
    name="Content">
    and
    <b>7.0</b>
       if (navigator.appName.indexOf("Microsoft Internet Explorer")!=-1)
    <frame src="/sap/bw/BEx?SAP-LANGUAGE=E&PAGENO=8&REQUEST_NO=0&CMD=GET_TEMPLATE"
    name="Content" 0nLoad="javascript:loadTitle()">
    (I intentionaly put 0 i/o o in 0nLoad, otherwise Forum's editor does not accept the text.
    How about SAP's claim that technical upgrade from 3.x to 7.0 changes nothing?
    Regards,
    Vitaliy

  • Font Book "not compatible" with 10.9 after upgrade from 10.7

    I upgraded from os x 10.7 to 10.9 on my iMac and now my font book won't open. I keep getting a message that says my version of font book is not compatible with 10.9. Is there a way to reinstall font book?

    No,
    You should download and install the 10.9.4 combo update. OS X Mavericks 10.9.4 Update (Combo)
    As with any system upgrade or update it is wise to backup first.

Maybe you are looking for

  • How can I make the execution of my script faster

    Hi everyone How can I make the execution of my script faster, because it takes a lot of time to execute? The following is my script: DECLARE CURSOR C1 IS SELECT A.ITEM_CODE,A.STORE_CODE,ST_UNIT,SA_UNIT,CART_QTY,QUANTITY_ON_HAND FROM PROJ.IM_LOCATION

  • PowerShell Script running Excel won't run on Windows Server 2008 R2

    I have a script that creates a report of a single example of each warning or error in the Windows Event log, for each server in a list of servers,with the number of times that error has occurred in the last week on each server. It creates this report

  • Class as an attribute name in JSP tag file

    I just ran into an issue where I was writing a custom tag to generate a specific set of HTML elements, and wanted to be able to use CSS the same way I had before refactoring it into a tag. So, I included 'class' as an attribute in the custom tag file

  • Implementation of SAP-FSCM Collection Management

    Hi All, To implement SAP-FSCM Collection Management Is it necessary that we have all the clients in SAP-AR or we can use a legacy to feed up FSCM-Collectionu2026we have this doubt that will define if we have to replicate all the accounts receivables

  • Camera keeps turning off

    my sister has a ipad, ihave a kindle fire. when we skype i can see her,she cannot see me. i try to activate my camera, she says it is initializing, but then it switches off again immediately.