How to determine an anonymous authentication with AUTHENTICATION = EXTERNAL

Hi,
LDAP servers can allow anonymous binds.
Using SECURITY_AUTHENTICATION = simple it's easy to determine an anonymous bind.
No password = anonymous .
But using SECURITY_AUTHENTICATION = EXTERNAL the java app doesn't see if the user hadn't to enter a pin at e.g. a smart card reader.
Is it possible to check the received InitialDirContext object for a status or to determine the kind of bind somehow?
Thanks and regards.

My workaround now is to define an object in the ldap tree,
to that every authenticated user gets access granted.
Therefore, if you can't read that object, you're anonymous.

Similar Messages

  • How do you boot an iMac with an external hardrive?

    How do you boot an iMac using an external hard drive?

    hold the Option key at startup to invoke the Startup Manager and select you external hard drive to boot from.

  • How to determine line # from printstack() with cc compiler on Solaris 10

    Hi,
    printstack() when called produces a stack trace per the following:
    /lib/libc.so.1:0xc5364
    /lib/libc.so.1:0xb9e64
    /platform/sun4u-us3/lib/libc_psr.so.1:memcpy+0x660 [ Signal 11 (SEGV)]
    /opt_outside_local_disk/opt/zim/bin/program_name:function_name+0x160
    How does one determine what the line # is in the C program for the above offset 0x160?
    Thanks in advance.
    Joe

    Hi Joe,
    I don't know what is the best way, but here is a 3-steps procedure to find the line.
    I inserted a printstack(2) line in my program, and got this output:
    /export/home/nikm/SunStudioProjects/4Queens/NQueens'main+0x711 [0x4023f9]I use Sun Studio 12 update 1 to compile my program.
    It includes Performance Analyzer tools, and one of its utilities, "er_src", can help to find the line.
    First of all, let's run it with "-disasm" option to find the line number, that corresponds to the address 4023f9:
    nikm@OS-Dec2008:~$  er_src -disasm main  /export/home/nikm/SunStudioProjects/4Queens/NQueens | grep 4023f9
                    [137]   4023ed:  jle     .+0xc [ 0x4023f9 ]
                    [141]   4023f9:  movq    0x11280(%rip),%rsiBasically, that's it, we have the line number - it is 141.
    Let's verify that this is correct:
    nikm@OS-Dec2008:~$  er_src -src main  /export/home/nikm/SunStudioProjects/4Queens/NQueens | grep -n '141\.'
    214:           141.     return total_pos;Well, it points to the line after the printstack(2) statement. Let's verify this:
    nikm@OS-Dec2008:~$  er_src -src main  /export/home/nikm/SunStudioProjects/4Queens/NQueens | head -214 | tail -5
               137.     if (debug > 0) {
               138.         printstack(2);
               139.     }
               140.
               141.     return total_pos;
    nikm@OS-Dec2008:~$ That's it. The line is 138, and printstack(2) actually points to the next line.
    Thanks.
    Nik
    Edited by: NikMolchanov on Aug 29, 2009 10:10 PM
    Edited by: NikMolchanov on Aug 29, 2009 10:11 PM

  • How to determine which languages available with portal, and how to install

    I have a customer who may have a need for languages that might not be default delivered with the portal.  They are able to install languages in an ABAP environment (unicode).  What I'm trying to understand is:
    1.) What languages are available after a NW70 portal installation?  How can I determine this?  The pull-down list of languages in the UME record for a user is extensive, but they aren't all actually active because I tried some like Korean and the logon to portal was still English.  But then I tried Thai and that seemed to work, as did French, Spanish, etc.
    2.) How can I install needed langauges for the portal?
    I realize that even with the language support, the actual portal content needs to support those.  But that's an entirely different issue.

    Hi,
    In this thread you have informations you need:
    How to add Hindi language in Portal
    Regards,
    Praveen Gudapati

  • How to determine the bit rate with button over video subtitles?

    I have a project where I've got several questions that come up on the screen. The DVD is subtitled in 14 languages, so depending on the language chosen, it will show the question in the proper language along with navigation buttons to go to the next question or track.
    The problem is this: I added several new questions that each have a black only video that runs about 1min with 14 subtitle tracks made from photoshop psds. When I try to build, it fails saying "bit rate too high." When I removed all but 5 of the subtitle tracks, then it would build. I came up with a workaround, but then hit the limit of 99 tracks, menus or stories on a DVD.
    I went back and tried combining all 3 questions in to one slide, but now with more information on the psd, it will only allow 3 subtitle tracks before it reaches the max bit rate.
    How does it determine the bit rate? What can I do to lower the rate? I tried compressing the video at the lowest bitrate, but it didn't' help. I tried changing the psds to much smaller jpg files, but it didn't change anything. If anyone has any suggestions, please let me know!
    Thanks.

    CS,
    Almost all DVD SP Tracks should first be completely constructed in a Sequence in FCP, the markers placed there, and then everything encoded into a single Mpeg 2 clip with matching length audio (even if just low bit rate AC3 silent audio, as the case may be, because all Mpeg 2 clips in the Title domain should be accompanied by an audio stream), and then imported into DVD SP.
    Lay your subtitles under that and see what happens.
    Take care,
    Trai
    TFDVD Research Labs

  • How to determine minutes per week with inconsistent start and end times...

    ver -> 10.2.0.4
    I'm looking for some guidance or some pseudo code in how to attack the following:
    Data
    target_nm  status       start_timestmap       end_timestamp
    DEVDB      Target Up    8/28/2009 9:49:08 AM  9/26/2009 6:34:23 PM
    DEVDB      Target Down  9/26/2009 6:34:23 PM  9/26/2009 6:36:23 PM
    DEVDB      Target Up    9/26/2009 6:36:23 PM How can I display, per week, the number of minutes a status was held? There are 10,080 minutes per week and I'm using to_char(to_date('8/28/2009 9:49:08 AM', 'mm/dd/yyyy hh:mi:ss AM'), 'WW') to determine the week number. The end result would be something like, in example:
    target_nm   wk    up           down
    DEVDB       35    [x minutes]  [y minutes]This, at first, seemed pretty straight forward, but where it gets wrapped around the axle is that the records of a status can span a number of weeks between the 'start_timestamp' and the 'end_timestamp.'
    My current approach is to isolate this down for a given day...if something is "started" then determine the number of minutes between trunc(start) +1 and start . If it has "ended" then determine the number of minutes between trunc(ended) and end.
    Resulting in something like:
    target_nm    status     day_of_year  minutes_of_status start_timestamp       end_timestamp
    DEVDB        Target Up  8/27/2009    296.3333          8/27/2009 7:03:40 PM  nullAny advice, a different perspective, or pseudo code would be greatly appreciated on how to turn the corner on showing these status's as they break down per week.
    Regards,
    -abe

    Hi,
    As you said, you just need to compute SUM (end_timestamp - start_timestamp), GROUPing BY week.
    The tricky part is what happens when an event is not entirely within one week. For example:
    DEVDB      Target Up    1/07/2009 11:00:00 AM  1/08/2009 2:00:00 PMThis event lasted 3 hours, but you want to count this as 1 hour in week '01', and 2 hours in week '02', not as 3 hours in either week.
    The solution is very much like the one in the following thread:
    [8i] Date/Time calculation problem...
    Whenever you have a problem, post a little sample data (CREATE TABLE and INSERT statements) and the results you want from that data.
    Edited by: Frank Kulash on Mar 16, 2010 12:16 PM

  • How to determine sap mail receiver with raw id?

    I need to get all those mails which have been send to a special mailadress customized in sap system.
    where can i find the receiver mailadresses?          (Are they related to any key in sood? RAW ID?)

    Hi,
    most of the component executables can be run at OS level with option -version or -v or -V  to check for the version info, or check the relevant trace file header
    for J2EE related, check out: /usr/sap/<SID>/<instanceID>/j2ee/cluster/server0/version.txt
    Regards,
    Vincent

  • How to determine Radio Remote compatibility with nano

    I assume that my iPod can handle the radio remote, but I want to know for sure before I buy. Is there anyway to find out?

    Hello,
    Do you know if the radio remote should work with the "full size," first generation ipod ? ( sorry, i don't know the official name of it ) . I checked the software and it's running 3.1.1 ( just had it serviced). I'm asking because I just drove 80 miles and paid $50 fto purchase the radio remote. When I plug it in, no "radio" option appears. The salesman assured me it would work. Advice ?
    Thanks so much,
    Raven Bruce

  • How can I sort out iphoto with my external hard drive?

    Hello, and sorry if this has been answered before, i did have a look, but with no results.
    a while ago my ibook filled up, and so i bought an external hard drive. i then dragged the photos across onto it, deleted them off my i book. no problems.
    a while later i read about setting up my external hard drive to use it as an iphoto library. i did this, pressed the "alt" key whilst iphoto opened and i was able to open my photos from the external drive.
    however, all the photos that i'd orignally transferred were not there, only the most recent ones.
    so, to sum up, when i look at the photos on my external drive, they are all there, but when i try opening them with iphoto i can only see some of them.
    how can i re-set up my external drive so i can see all my photos using i book?
    i was thinking i could drag the photos that don't open from the external drive into iphoto, then redrag the entire iphoto library back onto the external drive. however, i only have 2 gb of space on my ibook, and about 20000 photos in total.

    sorry for being unclear.
    i will try and explain again.
    i still have my iphoto library on my internal drive.
    i initially dragged and dropped the photos from iphoto onto the external drive and deleted them off my internal drive to free up space.
    then i read how i better way to do it would be to drag my iphoto library from the finder, onto my external drive, because then i would be able to open it from iphoto. so i did that and when i pressed the option key whilst iphoto was setting up, accessed my iphoto file on my external drive.
    the only photos to appear were the ones from when i dragged the entire iphoto file from finder, not the previous lot that i had dragged from iphoto itself.
    so, any ideas how i can get the photos that aren't showing up using iphoto, to show up?

  • How to access OS User created with "identified externally"

    I am able to
    SQL> create user ops$deskuser identified externally;
    while deskuser is one of my OS user.
    I believe it is a very easy question, however I just do not know how to access this user from sqlplus., please help
    Thanks in advance

    oracle@mini:~> sqlplus system
    SQL*Plus: Release 10.1.0.3.0 - Production on Sun Nov 13 21:11:47 2005
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> create user ops$pops identified externally;
    User created.
    SQL> grant connect to pops;
    Grant succeeded.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    oracle@mini:~> su - pops
    \Password:
    Illinois isn't exactly the land that God forgot -- it's more like the
    land He's trying to ignore.
    pops@mini:~> . oraenv
    ORACLE_SID = [pops] ? orcl
    pops@mini:~> sqlplus /
    SQL*Plus: Release 10.1.0.3.0 - Production on Sun Nov 13 21:16:59 2005
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL>

  • How to get the Survey result with a External Provider

    Hi all
    We have an scenario where we create a Survey and it's executed for a third party, and then they send to us the results for example in a excel sheet.
    Some know how we can upload the survey results per each client into CRM,
    Best Regards.

    Go for ELM processing.....create mapping and ELM the file in the system....In the BADI enhancement for processing steps, define the logic for processing the response through an activity....
    Create Activity
    Attach the questionaire to the Activity...
    ELM the file that you received
    Process the file filling up answers on the activity questionaire...
    Hope it helps...
    Thanks
    Nikhil

  • How can i update my iPhone with an externally downloaded iOS?

    hello and merry christmas for you all.
    My iPhone 4s is having issues with the screen.. like when it shows everything but i cant tap on anything. Anyways, i talked to a friend of mine who works in an authorized apple reseller shop and he told me he doesnt have the firmware but i can download it from getios.com
    i did what he said and downloaded the final version of iOS 6.0.1
    However, whenever i come to update, itunes asks me to look for updates and download them from the the official store (or something like that i guess)
    and i dont really have enough time to wait till tomorrow for the download to finish! I am in a country where the maximum download speed is about 40 kbs
    so what should i do?? i have the complete restoration "ipsw" file in my laptop however i cant install it!! so please tell me what to do!
    any help will be highly apreciated!!
    thanks

    thanks for the reply.. but do u mean there is totally no way to install from the downloaded version?

  • How to Properly Utilize Elements 5 with New External Hard Drive?

    Hello,
    I just bought a new external hard drive, and want to use it the most effective way. Should I leave Elements on my internal drive, then open the folder/photo I want to edit from my external drive? Or, I guess the only other option is to copy Elements onto the External drive. Lastly, another option might be to have a copy of Elements on both drives, but I suspect that this would not be a very feasible way, for sure.
    Thanks for any help,
    Les

    My suggestions are:
    1- keep Photoshop elements installed on the internal hard drive as it is now
    If you have photo files cataloged in the Elements Organizer
    2- determine which drive letter you want to assign to this external drive. Use Windows Administrative Tasks to set that drive letter so it remains the same. (some people use a letter further in to the alphabet to make it easier to avoid conflicts)
    3- look at this FAQ which will point you to an Adobe techdoc on moving the photo files to a different hard drive using the PSE 5 Organizer -
    http://www.adobeforums.com/cgi-bin/webx/.3bc254a8
    4- I would keep the Elements Catalog and related files in their default location - which is probably their current location. If you wish that can be changed later.

  • Is there any how i can sync my nano with my external hard disc and 2 pc`s

    I have an external hard disc i would like to sync my nano with my work laptop an my home pc
    Regards

    I guess no but they can't use it because most likely they restored it and the name of your find my iphone will disappear on your computer even if it is on because it does not have your name anymore.

  • How do you use time capsule with an external hard drive

    I would like to use time machine to back up to my external hard drive. 
    When I tried to set it up it said it would wipe out everthing currently on it to start using it.
    I do not want it to wipe our what I have currently have on the hard drive.  Any suggestions?
    I do have icloud.  Can I back up using time machine to that?

    Purchase another external drive. Time Machine will only back up to a drive formatted as Mac OS Extended (Journaled).
    (63322)

Maybe you are looking for