Problem with the length of locking in the strategy of password in the OAM

Hello

We are facing a problem with the configuration of length of locking in password policies in Identity Manager interface for our OAM configuration.
Oracle 10 g version 10.1.4 Access Manager
The user/policy store: ADAM Ldap [Microsoft ADAM 2003]

After that block us a user in our LDAP after 5 attempts wrong, the values of both attributes in ADAM set updated to 5:
oblogintrycount
badPwdCount
Also, I see that "oblockouttime" is updated with a unix timestamp.

Now, we put the "lock duration" in the strategy of password as an hour. Thus, after 1 hour, the user must be unlocked in ADAM.
However, after 1 hour when the user tries to connect, it gets the error an incorrect password has been entered for the user ID.

When we check in ADAM, we find the value of "oblogintrycount" has indeed been reset. However, the value of "badPwdCount" will not reset and is always stuck at 5.
If we set the two values of these attributes to 0, the user can connect again.

Now, OAM should return two values of these attributes to 0, or is it only resets the oblix attributes?
If it is the latter, is there a way to work around for this problem? Or we are doing something wrong here?

Please let us know your comments.

Thank you!
Abhishek.

OAM works only with the ob attributes * and not with the announcement badPwdCount attribute (ADAM). I think that for some reason, the strategies account and password of the ad is to be triggerred. Disable the password AD strategy and it will be Ok.

I hope this helps. Let us know.

Tags: Fusion Middleware

Similar Questions

  • Having a problem with Windows Live Mail lock up shortly after the start.

    Having a problem with Windows Live Mail lock up shortly after the start. When I start the Task Manager to end the process, it sometimes freezes and the only way to solve the problem is to disconnect which forces the profile to close. Assuming a corrupted profile, I followed the instructions of Windows support to fix a corrupted profile and copied all the files except ntuser.*. When I try to paste them into the new user profile (all profiles are admins), I get the error message asking if I want to leave to proceed. When I click on continue, all THE files in the profile block "corrupt" to the new one, including ntuser.*, that I was not choosing. Why? If the files are rewritten empty? Tried 3 times, same result. Please notify.

    I think I found it! I went in the Windows Live Forum and found a thread that looked like my problem. He suggested going to msconfig and take off Live Mail list start. I couldn't find it on the list, but the top element was "" default EXE"something of an unknown manufacturer. I took it out of the startup list, and Live Mail works again! Thanks for your help!

  • problem with the locking of the data

    Hi all

    I'm having a problem with the locking of the data.

    When I was trying to lock FY12 real periods. We cannot block periods. The consolidation runs perfect and all entities have the status of OK and all levels of the process are published, but when we try locking... We receive an error that "Consolidation, calculations or translations are required.

    Published by: user10926115 on October 16, 2012 10:34

    We had this problem with our application, as well. I don't know what causes it, but I can advise on our solution.

    In your grid lock, change your Value [None] member. Bear has the value and shows that all entities are in a State of OK or OK SC. However, when we go to the [none] member value, we see that some entities still need calculation. Select the groups that aren't in an OK OK SC or ND OK and select 'calculate '. Once solve us this problem in the [None] member value, we have no problems with locking or unlocking of these entities for periods that have been addressed.

    I would like to know if it works for you.

    Also, if someone else may be able to weigh in on the root of this problem, it would be certainly appreciated by more than just the op.

    Thank you!
    Scott

  • problem with the locking insert and delete between two linked tables help please.

    Hi guys I have a problem with a table of locking in Oracle forms, but when I try in SQL happens here too many users. I was wondering if anyone can shed some light on this?

    I created two scenerios one that works and is not based on the primary key and foreign key constraints (but one that works is not possible for us because it would mean change design table that we can not do).

    I've hardcoded in 1127,1128 number to make it easier (in reality it is a sequence)

    OK scenerio one (our scenerio)

    two tables
     CREATE TABLE testSFLABPR 
       (     LABP_REF_IRN VARCHAR2(25 BYTE), 
         LABP_REF_REF VARCHAR2(30 BYTE), 
         LABP_REF_SL NUMBER(8,0), 
         LABP_CONFIG_ID NUMBER(8,0),
          CONSTRAINT PK_testLABPR_IRN_SL PRIMARY KEY (LABP_REF_IRN,LABP_REF_SL)
       ) ;
    
     CREATE TABLE testSFLABP 
       (     LABP_IRN VARCHAR2(25 BYTE), 
         LABP_OPNO NUMBER(3,0), 
         labp_no NUMBER(8,0),
          CONSTRAINT PK_testSFLABP PRIMARY KEY (LABP_IRN, LABP_OPNO, LABP_NO) ENABLE, 
          CONSTRAINT testFK_SFLABP_SFLABPR FOREIGN KEY (LABP_IRN,labp_no)
           REFERENCES TESTSFLABPR (LABP_REF_IRN,LABP_REF_SL) ENABLE
       ) ;
    OK now session is done the following
    DELETE FROM      testSFLABPR     WHERE   LABP_CONFIG_ID            = 1127;          
                   
    INSERT INTO testSFLABPR(
            LABP_REF_IRN,
            LABP_REF_SL,
            LABP_REF_REF,
            LABP_CONFIG_ID
            )
            VALUES
            (
            'SOPENSHELVING',
            1127,
            1127||'CF Route',
            1127
            );
            
    INSERT INTO testSFLABP
          (
          LABP_IRN,
          LABP_OPNO,
          LABP_NO)
    VALUES (
    'SOPENSHELVING',
    1,
    1127);
    session one remains in this State.

    second session now does the following
    DELETE     FROM testSFLABPR     WHERE   LABP_CONFIG_ID            = 1128;     
    second session is now locked until a commit or rollback occurs.

    If I run the exact scenerio even with only a primary key on the table without locks held
     CREATE TABLE testSFLABPR 
       (     LABP_REF_IRN VARCHAR2(25 BYTE), 
         LABP_REF_REF VARCHAR2(30 BYTE), 
         LABP_CONFIG_ID NUMBER(8,0),
          CONSTRAINT PK_testLABPR_IRN_SL PRIMARY KEY (LABP_REF_IRN)
       ) ;
    
     CREATE TABLE testSFLABP 
       (     LABP_IRN VARCHAR2(25 BYTE), 
         LABP_OPNO NUMBER(3,0), 
         labp_no NUMBER(8,0),
          CONSTRAINT PK_testSFLABP PRIMARY KEY (LABP_IRN, LABP_OPNO, LABP_NO) ENABLE, 
          CONSTRAINT testFK_SFLABP_SFLABPR FOREIGN KEY (LABP_IRN)
           REFERENCES TESTSFLABPR (LABP_REF_IRN) ENABLE
       ) ;
    INSERT INTO testSFLABPR(
            LABP_REF_IRN,
            LABP_REF_REF,
            LABP_CONFIG_ID
            )
            VALUES
            (
            'SOPENSHELVING',
            1127||'CF Route',
            1127
            );
            
    INSERT INTO testSFLABP
          (
          LABP_IRN,
          LABP_OPNO,
          LABP_NO)
    VALUES (
    'SOPENSHELVING',
    1,
    1127);
    DELETE     FROM testSFLABPR     WHERE   LABP_CONFIG_ID            = 1128;
    I hope I posted all the information that is relevant... version of DB were is Oracle Database 10g Release 10.2.0.3.0 - Production

    Any help is appreciated...

    Creating indexes on columns of the FK. Something like:

    CREATE INDEX testFK_SFLABP_SFLABPR_IDX
    ON testSFLABP(LABP_IRN,labp_no)
    /
    

    SY.

  • NO - problem with the service

    I am from INDIA.

    I bought an iPhone 6 s new mobile Hong Kong a licensed salesperson (mobile fortress).

    When I bring to the India and put on my country sim (vodafone) to my laptop, everything works, but the network does not connect.

    "In settings > about I see vodafone, but when I see the carrier" is not connected, I tried many solutions online.

    I tried:

    1. all parameters (network... so on) and the software is up to date.

    2 tried selecting the network, but to the carrier, it does not show the available network.

    3. I tried the complete reset of the phone 2-3 times.

    4. I tried to change the apple ID.

    I tried many things, my phone works, but could not solve the network. Cannot make calls or find networks in my I phone.

    Someone can help me. When I went to ask local sales assistance, that's the problem with the change in the country, and they said that it will be free of charge on 18000INR.

    Please someone help me.

    Thanks in advance.

    Hi a.a,.

    Welcome to the communities of Apple Support! I'm sorry to hear that you experience these symptoms with your new iPhone 6 s. I'm a bit ambiguous on your specific configuration or what you see, but you can check that the phone is not locked on the original support (if the phone was sold to any kind of discounts or subsidized rate, it is most likely locked carrier). You can find the information described in the following article useful:

    How to unlock your iPhone for use with another carrier - Apple Support

    You may also be aware that different iPhone models are sold in different regions and countries and can support only specific carriers in these regions, as shown here:

    iPhone - country view with LTE - Apple networks support

    Concerning

  • Satellite A660 - 07P problem with the pointer of the mouse using the touchpad

    I just bought my A660 07P last Thursday, September 15, 10 and I noticed that I had problems with the mouse pointer using the touchpad.

    From time to time, the cursor/pointer is locked and seems something like a button up and down.
    I assume it's because it's on a mode of waiting, but in this case as every 5 minutes.
    When it is locked, it will also change the zoom percentage when the touchpad is struck. It is very not when I'm in the middle of something and I can not move the pointer. In addition, the start is very slow.

    BTW, I have not installed any programs or applications. I'm still testing until Friday, otherwise I'll go back to where I bought it.

    Hi mate

    This isn't touchpad problem.
    I guess as support for computer laptop MULTI-TOUCH PAD
    There are a few additional features supported by touchpad, and I think that you have enabled this while using the touchpad

    The touchpad supports the features:
    _ChiralMotion_
    You can scroll vertically and horizontally

    _Pinch Zoom_
    This feature provides functionality like the scroll wheel zooming

    _Rotating (chiral spin) _
    This provides gestures to rotate the photos and other objects

    _Momentum_
    This feature provides a smooth, fast trackball as the movement of the mouse. A quick finger on the touchpad surface can move the sliders in the entire screen.

  • Satellite A200 - problems with the AC adapter / CC

    Hello

    The problem concerns a Satellite A200 (PSAF6A-02H01N).

    Recently, there was problems with the laptop, taking several attempts to boot to Vista, it would lock up while loading or just hang and freeze just after loading Vista.
    But once it was up and the laptop running would be happy working for hours with the AC adapter is plugged in.

    The problem got worse now and the laptop will not load Vista end without crashing.
    We have now reduced the computer down to have only a problem when the power adapter is connected.
    The laptop battery will charge normally with the AC adapter is plugged in and the laptop on standby or off.

    The problem persists with the AC adapter is plugged in and the battery removed.
    The laptop will start and run perfectly with battery and no power adapter plugged. Once the AC adapter is plugged in the laptop indicates that the battery is charging and then after a few seconds it crash or freeze and the only escape is a full stop.
    The laptop will not work under the battery power for 30 minutes max.
    I checked the output voltage of the AC adapter and this seems to be a consistent 19.4 Volts.

    Is this only a problem of AC adapter or the problem with the laptop?

    Thanks in advance...

    The Canada Gazette

    I lifted the previous discussions on this problem and found one that was very similar, but unfortunately the user decided not to find the problem of the road, save money and buy a new laptop instead! Hmm. !! .. seems to me like this might be a prob. material. Maybe a new motherboard?... anyone have an idea of what are the costs for that perhaps? .. an ASP or decent technician backstreet?...

  • Problem with the change in value of listbox event

    Hello

    I have a problem with the help of Listbox value change event. The code that I have attached is a simplified version of the largest program, but the problem is the same. One of the loops of Nonna is responsible for handlig occurring events ant the other is responsible for the execution of the program. In the project of oryginal I use a listbox control to determine which plots graphic display of a waveform is visible (first position of the listbox-> only plot first visible etc.). In the attached vi, I just show the current value of the listbox control. The problem is the event runs only once and then the program crashes. I want to be able to change the value of the listbox work both at idle and in State of a program, but when I put the structure of the event in both States, he does not. I'd be very grateful if someone smarter than me could tell me where I made my mistake. I want my program to be able to manage the keys and listbox events in States (slow down and knit) program.

    You have two structures of event in two cases different from the structure of the case, and both are tuned to listbox events has changed. Because only once can be triggered at any time, the VI crashes (lock events the front panel (default) until the event can complement).

    You must use a unique event structure managing all events.

    The overall program architecture looks like inside-out for me.

    For the buttosn, you must use action lock (switch not release!) and use the value changed events.

  • How to do this: Photoviewer, Windows cannot save changes to the image due to a problem with the properties of the file!

    Hi, I'm trying to post a photo, but whenever I have try rotation to the right, it says something like: can't save changes to the image due to a problem with the properties of the file. My laptop is MS, but the photos were taken on the Iphone. How to do this?

    I don't know if the following links answer your question, but
    they may be worth a visit:

    Good luck and * proceed at your own risk *.

    FWIW... There is a very long discussion (several pages) to the
    following link:

    Cannot change the imported iPhone 4S photo
    https://discussions.Apple.com/thread/3444951?start=0&TSTART=0

    More Discussion

    iPhone 4S image properties is not compartible with Windows?
    Editing can be done on the computer due to the error
    "Windows Photo Viewer cannot save changes to this picture.
    because there is a problem with the properties of the image file".
    Any help?
    https://discussions.Apple.com/message/17291884#17291884

    More Discussion:

    We cannot turn a few photos in Windows 7 (but can turn others)
    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-pictures/cant-rotate-some-photos-in-Windows-7-but-can/3a809845-9144-4BB1-9bb3-ab4f5b856524

    A simple solution is to open the photos in paint or most other
    digital image editor and modify it.

    Some people have reported success using the following free download
    to remove the metadata.

    Property restrictions stripper iphone 4S (JPEG & PNG Stripper)
    http://www.SteelBytes.com/?mid=30&cmd=download&PID=15

    Here's a way to turn...

    Easily turn locked iPhone 4 and 4 s Photos in Windows 7 with
    the rotator Lossless JPEG free
    http://www.daleisphere.com/easily-rotate-locked-iPhone-4-and-4S-photos-in-Windows-7-with-the-free-JPEG-lossless-Rotator/

    Free download JPEG Lossless rotating
    http://annystudio.com/software/jpeglosslessrotator/

  • I ran CHKDSK, the report tells me I have problems with the file system, usn journal. ___

    I ran CHKDSK, the report tells me that I have problems with the sys file. I ran CHKDSK/F, it is said it fixed the problem but I ran CHKDSK again and it shows that the same listed the issues.

    Describe how you run chkdsk.

    That is what the report said: you have problems with the sys file?

    CHKDSK examines the disk space and use of the disk for the table of allocation of files (FAT) and NTFS file systems. CHKDSK provides information specific to each file system in a situation report. The report shows the errors found in the file system. If you run chkdsk without the /f on an active partition command line option, it can report errors because it cannot lock the drive. You should use chkdsk occasionally on each disk to check for errors.

    If you run chkdsk from a command prompt while Windows is running, it can report errors or it may not report errors - and it may report different
    Errors each time you run.  If this is the case, it could just be the way you run chkdsk.

    Here's how Microsoft explains this observation:

    "... CHKDSK may report that the disc is damaged, even when there is no
    current real corruption. This can happen if NTFS happens to modify
    areas of the disc on behalf of some programme activities that CHKDSK is
    review at the same time. To check a volume correctly, the volume
    must be in a static state, and the only way to ensure that the State is
    to lock the volume. CHKDSK only locks the volume when /F or/r (which
    involves the 'F') is specified. For example, you may need to run CHKDSK more than
    time so that it can complete all the steps in read-only mode. »

    If you run chkdsk from a command prompt, you are not the necessary static state and you can encounter errors "when no real corruption is present. This is how it works when you use this way.  Any changes made to a NTFS file system modifies the USN Journal.  If you are not in a static state, your USN change Journal probably all the time, so what you see (says something like that) can be quite normal.

    Two ways to ensure that you are in a static state is to run chkdsk from the Recovery Console or to schedule a chkdsk to run the next time that the system
    Restart by answering Yes to the question:

    Would you want to check this volume to be the next time the system restarts?

    If chkdsk reports errors when running in a static state, the errors should be investigated, resolved or explained.  This may take several
    chkdsk runs all of the issues and some problems cannot be resolved by chkdsk.

    If chkdsk runs the next time the system is restarted, the activity and the result will be displayed in the application event log.  Look in the Application log for
    Winlogon events and a source have the date and the duration nearby time chkdsk.

    It is in fact a chkdsk additional reading if you want to learn about it and it will explain everything you see and why your expectations exceed reality.

    Please vote my posts as helpful so I can get a lot of points. I'm saving for a pony!

  • Strange problems with the database

    Hello

    I just got my Fuze and am very happy with it; However, I am having a very strange problem with the database. I have a 16 GB sdhc card that I use with the "rocket" and there are about 4 songs on the card that will not play and have no information charge tag. Their tags appear in the tag browser (not the in the track information screen) as just an empty rectangle. Under the track information screen, sizes are listed as ~ 4000 mb. The songs will not play and I can not jump in front of one of these songs once they were loaded.

    At first, I suspected some kind of corruption of tag, so I set out that night to track down the problem. I removed the 16 GB card and reset the player. Then, I loaded one of the corrupt in the internal memory of the player. The track has been scanned and played correctly. Then, I removed the track of the internal memory and it loaded on another SDHC card. Yet once, everything worked correctly, so I knew that the card I was using was a kind of system files or physical problem. I returned the original 16 GB sdhc card in the reader and checked that the file was still unplayable, and then I plugged the "rocket" to my computer. I transferred the unplayable file on my computer and compared (with md5sum) to the original file, thinking that if there was the file system or physical corruption the copy of the map would be damaged. However, the files were equivalent.

    To make things even more interesting, I also have problems with the registration of the kind. I have some files tagged Genres such as 'Classic' and 'Rock '. In the list of the genre, I see this:

    C

    CL

    CLA

    CLAS

    Class

    Classic

    Classic

    Classica

    Classic

    Rock

    So, there is corruption on the kind of 'Classic' but not the kind of "Rock". Each of the substrings of 'Classic' contains only a few titles, with most of the other titles listed where they should be. I checked that the tracks are labeled correctly and in exactly the same way as the other tracks that do not have this problem.

    I am at a total loss about what to do, and I'd really appreciate any advice or suggestions. I use the current firmware, 2.03.31a and the songs in question are in Ogg Vorbis format.

    MM

    Thanks for your replies.

    I managed to find what may be the problem. Tracks that received corrupt tags had the names of total path with more than 256 characters. It seems that the driver internal fat32 the rocket uses vomits all over the place when the path name is too long. Before the "rocket", I got an iPod running rockbox tags with the same directory structure that I have on the "rocket", so I don't think that this restriction on the length of the path name is a limitation or requirement of the fat32 file system. Reduce the path corrected the problem with the files being unreadable.

    However, the problem with foires genres the rest. Looking at the files show that corruption, they all have a little information in tags. Most of the information is contained in the hashes I have files that identify them via musicbrainz. The limit on the total number of characters in the tags of the track includes the "rocket" label is not read or use?

    MM

  • Problem with the gallery after update 2.3 music

    Hello

    Recently updated my XperiaX10i (French version, not operator sim locked). No problem with the update itself and the phone seems to work fine.

    But, the music gallery has first not detected music files already in the sd card 32 GB (no problem for photos, videos or other files), and does not so load in the library. I had to download them all again through Media Go and now the library shows them, but album covers are not more in the album list as in version 2.1, which was very convenient for the selection, however the sleeves appear in the background during playback of a track: this looks more like a bug than anything else.

    I am also missing the first Quick Launch bar application for Wifi, Bluetooth, GPS, sync and the brightness of the screen, it seems that the launch of all these features to go into the settings file now.

    In conclusion, I hardly see what exactly improved on this phone since version 2.1. except maybe the speed and the quality of the screen display.

    Update from 1.6 to 2.1 was a total revolution in comparison.

    Power control widget is always there

  • Problem with the controls volume/internet on my laptop HP HDX 16

    Hey,.

    I have a laptop of HP HDX 16, around the age of 8 months. I keep having problems with the touch buttons that controls volume, bass/treble and the internet. The buttons randomly disappear by themselves, turn on and off Alternatively my volume/bass/treble from top to bottom and my internet.

    I have updated the drivers for the buttons to quick launch without result. I've also just updated my computer to Windows 7, so my Bios is brand new (the problem started before I updated to 7).

    As you can imagine, get my internet randomly stops and for the black volume screen blocking what I was doing and hang my computer is getting pretty annoying. Any help on this would be surprising.

    Thank you
    Printertron

    I also have the same problem. HDX 16, around the age of 3 months.

    I found to do all sorts of updates the driver, uninstall, System Restore (no), and does not help.

    I'm still on Vista, but when I get my kit to upgrade to Windows 7, I had planned to see if it resolved the problem.

    Technical support HP told me that if a recovery does not resolve the problem, it must be delivered to them, and the band of totality quicklaunch may have to be modified.

    I intend to make the recovery during the holiday season.

    Based on the fact that you got your computer 8 months ago, I assume that you have not used an upgrade kit. Which means, I would recommend doing a recovery before calling the technical support because they will just have to insist that you do anyway.

    An interim solution, when the volume control locks your screen is at the end of the process called "SmartMenu.exe". It will reload the next time that you start your computer.

  • photos of the iPhone are on the side and I can not turn because theres a problem with the property file

    Photos imported from my iphone came on the side and when I turn and try to save, it won't let me save it like that saying "windows Photo Viewer cannot save changes to this picture because there is a problem with the pictures of file properties". What should I do?

    I don't know if the following links answer your question, but
    they may be worth a visit:

    Good luck and * proceed at your own risk *.

    FWIW... There is a very long discussion (several pages) to the
    following link:

    Cannot change the imported iPhone 4S photo
    https://discussions.Apple.com/thread/3444951?start=0&TSTART=0

    More Discussion

    iPhone 4S image properties is not compartible with Windows?
    Editing can be done on the computer due to the error
    "Windows Photo Viewer cannot save changes to this picture.
    because there is a problem with the properties of the image file".
    Any help?
    https://discussions.Apple.com/message/17291884#17291884

    More Discussion:

    We cannot turn a few photos in Windows 7 (but can turn others)
    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-pictures/cant-rotate-some-photos-in-Windows-7-but-can/3a809845-9144-4BB1-9bb3-ab4f5b856524

    A simple solution is to open the photos in paint or most other
    digital image editor and modify it.

    Some people have reported success using the following free download
    to remove the metadata.

    Property restrictions stripper iphone 4S (JPEG & PNG Stripper)
    http://www.SteelBytes.com/?mid=30&cmd=download&PID=15

    Here's a way to turn...

    Easily turn locked iPhone 4 and 4 s Photos in Windows 7 with
    the rotator Lossless JPEG free
    http://www.daleisphere.com/easily-rotate-locked-iPhone-4-and-4S-photos-in-Windows-7-with-the-free-JPEG-lossless-Rotator/

    Free download JPEG Lossless rotating
    http://annystudio.com/software/jpeglosslessrotator/

  • Problem with the drive of entry

    Hello

    I have a problem with the connections of socket on blackberry.

    I send a command to my server and it will answer me with something like

    WORM R1; ACT: 0; CLV: 1.0.0; PRO: 1.0.1; UID: carlsum@ociss

    SC = (SocketConnection)
    Connector.Open ("socket://fes.ngv-group.com:5080; deviceside = true");
    sc.setSocketOption (SocketConnection.KEEPALIVE, 5);
    is = sc.openInputStream ();
    OS = sc.openOutputStream ();
    OS. Write (Protocol.doVersion (UID). GetBytes());
    OS. Write (Protocol.doLogin (UID). GetBytes());
    int bytesAvailable = is.available ();<----returns a="" value="" of="">
    Char input [] = new char [bytesAvailable];
    for (int i = 0; i)< bytesavailable;="" ++i="" )="">
    input [i] = (char) is.read ();
    };

    However my contribution [i] array only contains v.

    Why is - this is.available line () returns 0?

    How to read in the range full of WORM R1; ACT: 0; CLV: 1.0.0; PRO: 1.0.1; UID: carlsum@ociss in my input array

    I agree that treatment work should you find.  I suspect that you have a coding bug.  Take a look at the folloing code.  The result was what I expected:

    test
    t
    e
    s
    t

    Byte [] testBytes = new byte [] {(byte) 0 x 74, (byte) 0 x 65, (byte) 0 73, (byte) 0 x 74 x};
    String testString = new String (testBytes);
    System.out.println (testString);
    Char [] testChars = testString.toCharArray ();
    for (int i = 0; i)< testchars.length;="" i++="" )="">
    System.out.println (testChars [i]);
    }

Maybe you are looking for