Hiding password in debug

Hi folks !
I have a question here, how could hide a parameter typed in a password, so this is not visible in debug mode?
Is this possible?
Thanks for help.

Hi Martin,
Thanks for your explanation.
I imagined it was possible to create a validation when it was typed value (As i done in Java with key press event)
Thanks anyway.

Similar Messages

  • Hiding password in the script

    Hi
    Is there a way of hiding password text in the script? If possible please provide different ways of doing it and with examples. Thanks!

    You can save encrypted data wherever you like, including within your script file (though there are certainly advantages to having it separate from the code.) One easy example of this is with the ConvertFrom-SecureString and ConvertTo-SecureString cmdlets:
    # At your console:
    $secret = Read-Host -AsSecureString "Enter password"
    $secret | ConvertFrom-SecureString
    # copy and paste the data that this command produces, and
    # place it into your script file (or a data file, whatever)
    # In your script:
    $encryptedData = '<copied from ConvertFrom-SecureString output>'
    $secureString = $encryptedData | ConvertTo-SecureString
    When you call ConvertFrom-SecureString the way I did in this example, PowerShell uses the Windows Data Protection API (DPAPI) to perform the encryption.  That's the scenario you described, where you're the only person who can decrypt the data, and only
    on your own computer.  In the examples code I linked to earlier, I show some alternatives using RSA certificates to encrypt data in a way that is just as secure, but can be shared across multiple users / computers.
    wow.. a cool trick.. :) Thanks David for sharing this idea.
    so for secure string it will only work on the machine where it was generated?
    Every second counts..make use of it. Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    IT Stuff Quick Bytes

  • Hiding Password in OIM user form

    Hi All,
    I am trying to Hide the userID and Password from OIM user (create user) form as I am using entity adaptor to generate these and I dont want to enter vague values. I am successful in hiding User ID field by modifying formMetaData.xml, however, I am not able to find anything for Password/Confirm Password fields.
    Please suggest.

    For each attribute reference, you can specify whether the field is:
    Viewable—By adding the attribute reference to the relevant section
    Editable—By specifying a value of TRUE or FALSE for the editable parameter
    Optional—By specifying a value of TRUE or FALSE for the optional parameter

  • Hiding password in unix

    Hi,
    Could anyone tell me what is the unix command that is used for hiding the password's which is similar to following oracle code.
    ===============================================
    accept uname prompt 'Enter username====>'
    accept password prompt 'Enter passwd===>'hide
    connect &username/&passwd
    ===============================================
    I need the similar type of functionality(hide) in unix.
    Regards,
    Nagarjun.

    I need the similar type of functionality(hide) in unix.If I understand your need, then you can use "stty -echo". See this example :
    [ora102 work db102]$ cat read_pass.sh
    echo -n "Password : "
    read PASS
    echo $PASS >/tmp/pass.txt
    [ora102 work db102]$ ./read_pass.sh
    Password : mypass
    [ora102 work db102]$ cat /tmp/pass.txt
    mypass
    [ora102 work db102]$                        Now I use stty -echo
    [ora102 work db102]$ cat read_pass.sh
    echo -n "Password : "
    stty -echo
    read PASS
    stty echo; echo
    echo $PASS >/tmp/pass.txt
    [ora102 work db102]$ ./read_pass.sh
    Password :
    [ora102 work db102]$ cat /tmp/pass.txt
    mypass
    [ora102 work db102]$                                

  • ABAP Debugger: hiding password field value

    Hi to all !!
    I'm using a screen with password type field. Is there a way to prevent to see what this field contains in debugger?? I don't want smart users with ABAP skills to play with it and see the password.
    Thanks,
    Yuval at Cellcom.

    Hi Yuval,
    If your user could debug the screen, he will show his password. Not the password of other users.
    Frédéric

  • Hiding password on the connection string

    Hi,
    Am trying to see if it is possible to hide password on the connection string when connecting from the application server. I can see one way of doing this, that is to use Oracle's OS Authentication. But because my Oracle is installed on Unix and my application server is on Windows 2000. I am not sure if this is possible?
    Has any done something similar before?
    Thanks

    The problem with using a single sign-in product like Kerberos is I believe the Advanced Security Option is required. The ASO is an additional license fee.
    Having the password in a file does not have to be a major security problem. Have a set of common logon modules created, one for each language in use, and have the module contain the logic to fetch the key.
    This way the file name and path to the key is not obvious. Then have the premissions set so that only the ID that runs the production batch can read the file. Neither the customers or the developers should have access to that ID.
    Unfortunately while this works for works batch ran out of products like Unicenter and application server based applications this technique does not work very well for cleint server applications. Client server based applications really need every user to have to sign-in with their own id.
    If every user does not have their own id and it is undesirable to hard code the userid/password into the application then you are back to getting the password from an unsecured external source. Having the common module to do the fetching at least makes someone work to find the ID/password. Any Id used in this manner should have limited access in the database which means you might have two, three, or more such ID's setup but with each having access to the tables behind only specific applications.
    HTH -- Mark D Powell --

  • Hiding Password in URL

    I have the url's to the reports embedded in our entranet web page. The problem is anyone can do a view source and see passwords. How can i hide those userid's and passwords??

    If hexadecimal encription of url is good enough protection for your business you can apply it. If it isn't, you have to use the RUN_REPORT_OBJECT built-in that is used to call reports from the forms. URL is hidden because passing usernames and password is implicit between forms and reports. If you are interested in details you can read the white papers on forms-reports integration.
    Ask again if you don't understand something, I will be happy to answer because I spent a lot of time on this problem. Regards,
    er.

  • Hiding password in wicd

    Hi,
    I recently installed wicd to manage wifi connections. It bothered me that the password becomes visible after clicking into the password field (properties window). Since i didn't found anything in in the wiki and the forum i searched a little further and found this post which helped me.
    Now I would wish to know if I'm the only one who isn't happy with the password visible. Maybe a workaround like in the linked post could be added to the wicd wiki entry if there are more people who bother about this.
    Cheers

    I for one don't care and find it very convenient to look it up whenever a guest asks me for my router's key.
    Note that the workaround above only works with the GTK frontend. A malicious user could still view the network key with wicd-curses. This can be patched too but then again you would need to change this on every Wicd upgrade. Is this worth the hassle? You decide.

  • About hiding password in monitor

    Hi All¨
    I am sending a user password from sap system to a third party system via XI , I do not want anyone to se the password in the monitor , how can I hide it.
    thanks in advance.

    Hi,
    You could use the SAML based Principal propagation concept for this kind of activity.
    But you need to use either RFC, proxy or SOAP adapter only.
    It will create SAP Assertion ticket as per the User ID and Password the login User ID and Password that will be of SAP side.
    Principal propagation means the ability to forward the user context of a message unchanged from the sender to the receiver.
    the message is executed under the same user in all participating messaging components.
    In such ..
    Users to be propagated must be maintained in the messaging components with the same name as in the sender system. For security reasons, we recommend that you create these users as users of type system and not as dialog users. These users must be assigned the role SAP_XI_APPL_SERV_USER.
    If you use access control lists (ACLs) for messages with specified sender systems or interfaces (see SAP Note 852237), these ACLs must include propagated application users if principal propagation is applied.
    I hope the below links are useful..
    refer
    Principal Propagation in SAP XI
    /people/alexander.bundschuh/blog/2007/01/16/principal-propagation-in-sap-xi
    Principal Propagation with SAP NetWeaver Process Integration 7.1
    /people/alexander.bundschuh/blog/2007/08/06/principal-propagation-with-sap-netweaver-process-integration-71
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/808d3048-638c-2a10-35a6-faa48e50ad59
    http://help.sap.com/saphelp_nw04/helpdata/en/45/0f16bef65c7249e10000000a155369/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/345d11a7993446e10000000a155369/frameset.htm
    /people/alexander.bundschuh/blog/2007/08/06/principal-propagation-with-sap-netweaver-process-integration-71
    Thanks
    Swarup
    Edited by: Swarup Sawant on Apr 9, 2008 12:37 PM
    Edited by: Swarup Sawant on Apr 9, 2008 12:38 PM

  • Hiding password in command line

    Hi,
    I am really new to java. Need some way to not display password on screen as the user enters it. Can it be done without creating text field?
    thanx
    Divya

    This can't be done on the console in java. You need to use a GUI or JNI. Check out the last post from armalcolm on this thread for the JNI solution.
    http://forum.java.sun.com/thread.jsp?forum=4&thread=195678

  • Hiding passwords behind **** in command line.

    Hi,
    I am coding a program that needs a password, and I want to hide it but I just can't find the proper way. I've tried jline to no avail, I couldn't get it to work. Any ideas on ways to hide a password behind ****?
    Thanks, bto.

    Check out the console class http://java.sun.com/javase/6/docs/api/java/io/Console.html#readPassword()
    I've not used it but readPassword should do what you want.

  • Hiding password in MaxL output log

    On Win2K platform, I have a MaxL script that accepts 2 parameters and performs some actions.I invoke the script using a batch file in the following format:ESSMSH C:\scripts\Script1.msh AdminID passwordThe Maxl script sends all activity to a log file which is then automatically e-mailed to end users.The problem I have is that the log file contains the AdminID and password that was used in the MaxL script. I need all activity in the log because I automatically scan the log for errors.Is there a way using some of the available MaxL Shell Invocation flags that will perfrom the same action but hide the password from showing up in the log?Regards,Tom M.Essbase 6.5.4

    We just upgraded to Essbase 7.1.3. Due to security concern, our security auditor is concern we even see the password in the Malx output log. Even we try to doa grep -v or sed -e on the password line to replace the old log, there is still a good window long enough to people to see it.<BR><BR>I tried spool and set message level, but none of them hides the login statement display. I also tried to use shell escape feature to run old ESSCMD login with MaxL, but couldn't get it to work. I was wondering if anyone who may have a new solution to this problem that can fix it on the fly other than fix it after the entire process is complete.<BR><BR>Essbase really should consider provide an option to hide the password in the output logic, or pad it with XXXXXXXXX.

  • Issue Password-less SSH:  Sun OpenDS 2.0 as Naming Service

    We are in the final phase of a proof of concept for Sun OpenDS as the Naming service for an important customer and facing problem with password-less ssh. We narrowed the problem down to password policy specifying a value for password maximum age. SSH succeeds with ?0? (zero) but requires password if the value is different from 0.
    Any help in getting a resolution is greatly appreciated, as this is a road block now.
    The following information is gathered.
    The test is performed from a host thud which is setup as an ldapclient.
    thud 275 ssh thud -i .ssh/thud
    Password:
    Last login: Tue Oct 13 06:57:01 2009 from xxx
    Apparent reason (trimmed):
    debug3: authmethod_lookup publickey
    debug3: remaining preferred: keyboard-interactive,password
    debug3: authmethod_is_enabled publickey
    debug1: Next authentication method: publickey
    debug1: Trying public key: .ssh/thud
    debug3: send_pubkey_test
    debug2: we sent a publickey packet, wait for reply
    debug1: Server accepts key: pkalg ssh-dss blen 434 lastkey 1166d0 hint 0
    debug2: input_userauth_pk_ok: fp 07:15:b3:07:8d:da:b3:c8:34:d0:34:91:60:77:e0:39
    debug3: sign_and_send_pubkey
    debug1: read PEM private key done: type DSA
    debug1: Authentications that can continue: gssapi-keyex,gssapi-with-mic,publickey,password,keyboard-interactive
    debug2: we did not send a packet, disable method
    debug3: authmethod_lookup keyboard-interactive
    debug3: remaining preferred: password
    debug3: authmethod_is_enabled keyboard-interactive
    debug1: Next authentication method: keyboard-interactive
    Password:
    Corresponding debug info from server (thud):
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: userauth-request for user doejohn service ssh-connection method publickey
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: attempt 1 initial attempt 0 failures 1 initial failures 0
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: test whether pkalg/pkblob are acceptable
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: temporarily_use_uid: 6147/150 (e=0/1)
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: trying public key file /home/doejohn/.ssh/authorized_keys
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: matching key found: file /home/doejohn/.ssh/authorized_keys,
    line 2Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.info] Found matching DSA key: 07:15:b3:07:8d:da:b3:c8:34:d0:34:91:60:77:e0:39
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: restore_uid: 0/1
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: userauth-request for user doejohn service ssh-connection method publickey
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: attempt 2 initial attempt 0 failures 1 initial failures 0
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: temporarily_use_uid: 6147/150 (e=0/1)
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: trying public key file /home/doejohn/.ssh/authorized_keys
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: matching key found: file /home/doejohn/.ssh/authorized_keys, line 2
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.info] Found matching DSA key: 07:15:b3:07:8d:da:b3:c8:34:d0:34:91:60:77:e0:39
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: restore_uid: 0/1
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: ssh_dss_verify: signature correct
    Oct 13 07:29:36 thud sshd[21187]: [ID 966290 auth.debug] PAM[21187]: pam_start(sshd-pubkey,doejohn,0:179560) - debug = 1
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:service)
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:user)
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:conv)
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:rhost)
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:tty)
    Oct 13 07:29:36 thud sshd[21187]: [ID 665327 auth.debug] PAM[21187]: pam_acct_mgmt(179560, 0)
    Oct 13 07:29:36 thud sshd[21187]: [ID 118111 auth.debug] PAM[21187]: load_modules(179560, pam_sm_acct_mgmt)=/usr/lib/security/pam_roles.so.1
    Oct 13 07:29:36 thud sshd[21187]: [ID 143372 auth.debug] PAM[21187]: load_function: successful load of pam_sm_acct_mgmt
    Oct 13 07:29:36 thud sshd[21187]: [ID 118111 auth.debug] PAM[21187]: load_modules(179560, pam_sm_acct_mgmt)=/usr/lib/security/pam_projects.so.1
    Oct 13 07:29:36 thud sshd[21187]: [ID 143372 auth.debug] PAM[21187]: load_function: successful load of pam_sm_acct_mgmt
    Oct 13 07:29:36 thud sshd[21187]: [ID 118111 auth.debug] PAM[21187]: load_modules(179560, pam_sm_acct_mgmt)=/usr/lib/security/pam_unix_account.so.1
    Oct 13 07:29:36 thud sshd[21187]: [ID 143372 auth.debug] PAM[21187]: load_function: successful load of pam_sm_acct_mgmt
    Oct 13 07:29:36 thud sshd[21187]: [ID 118111 auth.debug] PAM[21187]: load_modules(179560, pam_sm_acct_mgmt)=/usr/lib/security/pam_ldap.so.1
    Oct 13 07:29:36 thud sshd[21187]: [ID 143372 auth.debug] PAM[21187]: load_function: successful load of pam_sm_acct_mgmt
    Oct 13 07:29:36 thud sshd[21187]: [ID 579461 auth.debug] pam_unix_account: entering pam_sm_acct_mgmt()
    Oct 13 07:29:36 thud sshd[21187]: [ID 267958 auth.debug] pam_unix_account: doejohn: Ignore module
    Oct 13 07:29:36 thud sshd[21187]: [ID 545954 auth.debug] libsldap: more_info is empty, using default values
    Oct 13 07:29:36 thud sshd[21187]: [ID 340006 auth.debug] PAM[21187]: pam_acct_mgmt(179560, 0): error Authentication failed
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.notice] Failed publickey for doejohn from 172.16.1.207 port 44363 ssh2
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: userauth-request for user doejohn service ssh-connection method keyboard-interactive
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: attempt 3 initial attempt 0 failures 3 initial failures 0
    Oct 13 07:29:36 thud sshd[21187]: [ID 800047 auth.debug] debug1: keyboard-interactive devs
    Oct 13 07:29:36 thud sshd[21187]: [ID 390116 auth.debug] PAM[21187]: pam_set_item(179560:conv)
    Oct 13 07:29:36 thud sshd[21187]: [ID 873394 auth.debug] PAM[21187]: pam_end(179560): status = Authentication failed
    Sending the Account Usability control on the server returns:
    ?The account is not usable?
    solaris-z1 487 # ldapsearch -D 'cn=directory manager' -w xxx -b 'dc=texas,dc=net' -J "accountUsability:true" uid=doejohn
    # Account Usability Response Control
    # The account is not usable
    dn: uid=doejohn,ou=eng,ou=People,dc=texas,dc=net
    uid: doejohn
    shadowLastChange: 14480
    loginShell: /bin/ksh
    userPassword: {CRYPT}GOUlmnz01bJbwcY69Btp2sIRJrLf+5RtAj4oug==
    objectClass: person
    objectClass: organizationalPerson
    objectClass: inetOrgPerson
    objectClass: shadowAccount
    objectClass: IEEPerson
    objectClass: posixAccount
    objectClass: top
    givenName: John
    cn: John Doe
    sn: Doe
    telephoneNumber: ...
    gecos: ...
    homeDirectory: /home/doejohn
    mail: [email protected]
    uidNumber: 6147
    gidNumber: 150
    manager: ...
    For someone with a different password policy (max age is 0) the account is usable.
    Ldapclient is running on a SPARC, Solaris 9 system; the Sun OpenDS 2.0 is running on Solaris 10 Sparc.
    Password-less ssh works as expected when using a system not using LDAP.

    See https://opends.dev.java.net/servlets/ProjectForumMessageView?messageID=31827&forumID=3292.
    Regards,
    Ludovic.

  • WiFi invalid password on iPhone 3GS

    Recently, my iPhone 3GS started showing a new bizarre behaviour.
    When we enter the password to join a WiFi network, we are getting the following pop-up everytime:
    Incorrect password for "WirelessNetworkName"
    This has just started recently.
    System Info:
    Version 6.1.3 (10B329)
    Model MC143C/A
    Model Firmware 05.16.08
    Tests we have tried:
       * connect to home LAN with password - Fails
       * connect to iphone 5S personal hotspot with password - Fails
       * connect to hotel LAN with a password - Fails
       * connect to LAN without a password - Succeeds
    Debugging steps attempted:
      * I've tried a hard reboot - no change
       * I've tried a Reset -> "Reset Network Settings" - no change
    I guess the next step is a full system reset/restore unless anyone else has any ideas.
    The iPhone3Gs is otherwise appearing to be fully functional and has worked for many years.  This really feels like a software bug with a recent Version update (speculating).

    Given what you've done, there are only two things left: 1. Settings>General>Reset>Reset All Settings, or 2. Restore your phone. Try the reset all settings first. This will delete all WiFi passwords, bluetooth pairings, you'll have to re-activate FaceTime & iMessage, as well as change any other settings you altered.

  • AD Password Sync Error

    All,
    I get an error when I try to change a password in AD and sync it to OIM.
    Debug [5/24/2011 2:41:17 PM]
    ***********Inside sgslldpcopenLDAPConnection****************
    Debug [5/24/2011 2:41:17 PM]
    Debugging the code
    Debug [5/24/2011 2:41:17 PM]
    ***********Out of openLDAPConnection****************
    Debug [5/24/2011 2:41:17 PM]
    Data Read from Orcl Store
    Debug [5/24/2011 2:41:17 PM] Inside sgslutilsplitData
    Debug [5/24/2011 2:41:17 PM] Putting data into strstream
    Debug [5/24/2011 2:41:17 PM] Get userid len for decryption
    Debug [5/24/2011 2:41:17 PM] userid len is
    Debug [5/24/2011 2:41:17 PM] 6
    Debug [5/24/2011 2:41:17 PM] Remove space
    Debug [5/24/2011 2:41:17 PM] Get pasword len for decryption
    Debug [5/24/2011 2:41:17 PM] password len is
    Debug [5/24/2011 2:41:17 PM] 222
    Debug [5/24/2011 2:41:17 PM] Remove space
    Debug [5/24/2011 2:41:17 PM] Get Encoder String len
    Debug [5/24/2011 2:41:17 PM] encode len is
    Debug [5/24/2011 2:41:17 PM] 296
    Debug [5/24/2011 2:41:17 PM] Remove space
    Debug [5/24/2011 2:41:17 PM] Allocate memory for encodeStr
    Debug [5/24/2011 2:41:17 PM] Retrieve encodeStr
    Debug [5/24/2011 2:41:17 PM] decode encodeStr
    Debug [5/24/2011 2:41:17 PM] Free encodeStr
    Debug [5/24/2011 2:41:17 PM] Calling unProtectData for decodeStr
    Debug [5/24/2011 2:41:17 PM] Getting decryptStr
    Debug [5/24/2011 2:41:17 PM] Free password
    Debug [5/24/2011 2:41:17 PM] decrypted ...
    Debug [5/24/2011 2:41:17 PM] guidlen =
    Debug [5/24/2011 2:41:17 PM] 24
    Debug [5/24/2011 2:41:17 PM] password length =
    Debug [5/24/2011 2:41:17 PM] 9
    Debug [5/24/2011 2:41:17 PM] Returning values now
    Debug [5/24/2011 2:41:17 PM]
    About to encrypt data to be stored in DataStore
    Debug [5/24/2011 2:41:17 PM] GUID outside -->
    Debug [5/24/2011 2:41:17 PM] EkN1et4PR0ev7z8Oqd6bAg==
    Debug [5/24/2011 2:41:17 PM] x02389
    Debug [5/24/2011 2:41:17 PM]
    Debug [5/24/2011 2:41:17 PM] Inside sgsloidi::sgsloidiupdateOIM
    Debug [5/24/2011 2:41:17 PM] Inside sgsloidi::getConfigParamters
    Debug [5/24/2011 2:41:17 PM] Start getting config parameters from registry
    Debug [5/24/2011 2:41:17 PM] oimhost is
    Debug [5/24/2011 2:41:17 PM] oimprd.cityhall.boston.cob
    Debug [5/24/2011 2:41:17 PM]
    Debug [5/24/2011 2:41:17 PM] oimport is
    Debug [5/24/2011 2:41:17 PM] 8080
    Debug [5/24/2011 2:41:17 PM]
    Debug [5/24/2011 2:41:17 PM] oimsslclient is
    Debug [5/24/2011 2:41:17 PM] oimprd.cityhall.boston.cob
    Debug [5/24/2011 2:41:17 PM]
    Debug [5/24/2011 2:41:17 PM] oimuserattr is
    Debug [5/24/2011 2:41:17 PM] Users.User ID
    Debug [5/24/2011 2:41:17 PM]
    Debug [5/24/2011 2:41:17 PM] oimusessl is
    Debug [5/24/2011 2:41:17 PM] Y
    Debug [5/24/2011 2:41:17 PM]
    Debug [5/24/2011 2:41:17 PM] oimappservertype is
    Debug [5/24/2011 2:41:17 PM] 3
    Debug [5/24/2011 2:41:17 PM]
    Debug [5/24/2011 2:41:17 PM] End of sgsloidi::getConfigParamters
    Debug [5/24/2011 2:41:17 PM] Inside sgsloidi::setParameters
    Debug [5/24/2011 2:41:17 PM] The SOAP start element is
    Debug [5/24/2011 2:41:17 PM] <processRequest xmlns=""><parameters>
    Debug [5/24/2011 2:41:17 PM] The SOAP end element is
    Debug [5/24/2011 2:41:17 PM] </parameters></processRequest>
    Debug [5/24/2011 2:41:17 PM] The path is
    Debug [5/24/2011 2:41:17 PM] /spmlws/services/HttpSoap11
    Debug [5/24/2011 2:41:17 PM] End of sgsloidi::setParameters
    Debug [5/24/2011 2:41:38 PM] Inside sgsloidiOIMDownErrorHandler
    Debug [5/24/2011 2:41:38 PM] Inside sgsladds::sgslperwriteData YOOOO
    Debug [5/24/2011 2:41:38 PM] Inside sgsladac c-tor
    Debug [5/24/2011 2:41:38 PM] AD Host
    Debug [5/24/2011 2:41:38 PM] 192.168.252.12
    Debug [5/24/2011 2:41:38 PM]
    Debug [5/24/2011 2:41:38 PM] AD Port
    Debug [5/24/2011 2:41:38 PM] 389
    Debug [5/24/2011 2:41:38 PM]
    Debug [5/24/2011 2:41:38 PM] AD Base DN
    Debug [5/24/2011 2:41:38 PM] DC=admin,DC=mybps,DC=org
    Debug [5/24/2011 2:41:38 PM]
    Debug [5/24/2011 2:41:38 PM] Only dataattribute
    Debug [5/24/2011 2:41:38 PM] Got Registry enteries
    Debug [5/24/2011 2:41:38 PM] contact
    Debug [5/24/2011 2:41:38 PM] description
    Debug [5/24/2011 2:41:38 PM] Got Entiredn
    Debug [5/24/2011 2:41:38 PM] OU=oimpwdsyncadmin.mybps.org,DC=admin,DC=mybps,DC=org
    Debug [5/24/2011 2:41:38 PM] Encrypted record already exists in Datastore
    Debug [5/24/2011 2:41:38 PM] Already Exists
    Debug [5/24/2011 2:41:38 PM] Encrypted record already exists in Datastore
    Debug [5/24/2011 2:41:38 PM] Already Exists
    Debug [5/24/2011 2:41:38 PM] Inside sgsladdsSearchUser
    Debug [5/24/2011 2:41:38 PM] Firing Search Request
    Debug [5/24/2011 2:41:38 PM] AD search for a user objectGUID is successfull
    Debug [5/24/2011 2:41:38 PM] Count success
    Debug [5/24/2011 2:41:38 PM] Search result fetched
    Debug [5/24/2011 2:41:38 PM] 0:306 6 222 296 AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAJFqp2tiHmkKsyDTbryXNMQAAAAAmAAAAUABhAHMAcwB3AG8AcgBkACAARQBuAGMAcgBwAHQAaQBvAG4AAAADZgAAqAAAABAAAAAWxMIaiONu/zYSVMLyQgnlAAAAAASAAACgAAAAEAAAAMYI1Yk4XmRO8gS1HPYWp38wAAAA9Ys8VA2AJiZp/LBhRAjOqf2rJl5q0kStqNjFTP67HZ7tKjOp0YupW0AwMZWCgPeMFAAAAEeH1/plpCB9/0JXIRtGZDKTOvnq
    Debug [5/24/2011 2:41:38 PM] --------------------&&&----------------
    Debug [5/24/2011 2:41:38 PM] Inside sgsladds::sgsladdsgetData NEW Look
    Debug [5/24/2011 2:41:38 PM] 0:306 6 222 296 AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAJFqp2tiHmkKsyDTbryXNMQAAAAAmAAAAUABhAHMAcwB3AG8AcgBkACAARQBuAGMAcgBwAHQAaQBvAG4AAAADZgAAqAAAABAAAAAWxMIaiONu/zYSVMLyQgnlAAAAAASAAACgAAAAEAAAAMYI1Yk4XmRO8gS1HPYWp38wAAAA9Ys8VA2AJiZp/LBhRAjOqf2rJl5q0kStqNjFTP67HZ7tKjOp0YupW0AwMZWCgPeMFAAAAEeH1/plpCB9/0JXIRtGZDKTOvnq
    Debug [5/24/2011 2:41:38 PM] Encoded Data Extracted in sgsladdsgetData
    Debug [5/24/2011 2:41:38 PM] 306 6 222 296 AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAJFqp2tiHmkKsyDTbryXNMQAAAAAmAAAAUABhAHMAcwB3AG8AcgBkACAARQBuAGMAcgBwAHQAaQBvAG4AAAADZgAAqAAAABAAAAAWxMIaiONu/zYSVMLyQgnlAAAAAASAAACgAAAAEAAAAMYI1Yk4XmRO8gS1HPYWp38wAAAA9Ys8VA2AJiZp/LBhRAjOqf2rJl5q0kStqNjFTP67HZ7tKjOp0YupW0AwMZWCgPeMFAAAAEeH1/plpCB9/0JXIRtGZDKTOvnq
    Debug [5/24/2011 2:41:38 PM] Moving out sgsladdsgetData
    Debug [5/24/2011 2:41:38 PM] Encoded Data Extracted
    Debug [5/24/2011 2:41:38 PM] 306 6 222 296 AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAJFqp2tiHmkKsyDTbryXNMQAAAAAmAAAAUABhAHMAcwB3AG8AcgBkACAARQBuAGMAcgBwAHQAaQBvAG4AAAADZgAAqAAAABAAAAAWxMIaiONu/zYSVMLyQgnlAAAAAASAAACgAAAAEAAAAMYI1Yk4XmRO8gS1HPYWp38wAAAA9Ys8VA2AJiZp/LBhRAjOqf2rJl5q0kStqNjFTP67HZ7tKjOp0YupW0AwMZWCgPeMFAAAAEeH1/plpCB9/0JXIRtGZDKTOvnq
    Debug [5/24/2011 2:41:38 PM] MAX_RETRY LIMIT count is not updated: OIM is down
    Debug [5/24/2011 2:41:38 PM] 0
    Debug [5/24/2011 2:41:38 PM] numretries ======
    Debug [5/24/2011 2:41:38 PM] 0
    Debug [5/24/2011 2:41:38 PM] Inside sgslcodsupdateChild
    Debug [5/24/2011 2:41:38 PM] 0:306 6 222 296 AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAJFqp2tiHmkKsyDTbryXNMQAAAAAmAAAAUABhAHMAcwB3AG8AcgBkACAARQBuAGMAcgBwAHQAaQBvAG4AAAADZgAAqAAAABAAAAAWxMIaiONu/zYSVMLyQgnlAAAAAASAAACgAAAAEAAAAMYI1Yk4XmRO8gS1HPYWp38wAAAA9Ys8VA2AJiZp/LBhRAjOqf2rJl5q0kStqNjFTP67HZ7tKjOp0YupW0AwMZWCgPeMFAAAAEeH1/plpCB9/0JXIRtGZDKTOvnq
    Debug [5/24/2011 2:41:38 PM]
    Encrypted record data updated successfully
    Debug [5/24/2011 2:41:38 PM] Inside sgsladac destructor
    Debug [5/24/2011 2:41:38 PM] Password updation failed in child process
    Debug [5/24/2011 2:41:38 PM]
    Relaxing while processing records from datastore
    Debug [5/24/2011 2:41:40 PM] Inside sgslutilsplitData
    Debug [5/24/2011 2:41:40 PM] Putting data into strstream
    Debug [5/24/2011 2:41:40 PM] Get userid len for decryption
    Debug [5/24/2011 2:41:40 PM] userid len is
    Debug [5/24/2011 2:41:40 PM] 6
    Debug [5/24/2011 2:41:40 PM] Remove space
    Debug [5/24/2011 2:41:40 PM] Get pasword len for decryption
    Debug [5/24/2011 2:41:40 PM] password len is
    Debug [5/24/2011 2:41:40 PM] 230
    Debug [5/24/2011 2:41:40 PM] Remove space
    Debug [5/24/2011 2:41:40 PM] Get Encoder String len
    Debug [5/24/2011 2:41:40 PM] encode len is
    Debug [5/24/2011 2:41:40 PM] 308
    Debug [5/24/2011 2:41:40 PM] Remove space
    Debug [5/24/2011 2:41:40 PM] Allocate memory for encodeStr
    Debug [5/24/2011 2:41:40 PM] Retrieve encodeStr
    Debug [5/24/2011 2:41:40 PM] decode encodeStr
    Debug [5/24/2011 2:41:40 PM] Free encodeStr
    Debug [5/24/2011 2:41:40 PM] Calling unProtectData for decodeStr
    Debug [5/24/2011 2:41:40 PM] Getting decryptStr
    Debug [5/24/2011 2:41:40 PM] Free password
    Debug [5/24/2011 2:41:40 PM] decrypted ...
    Debug [5/24/2011 2:41:40 PM] guidlen =
    Debug [5/24/2011 2:41:40 PM] 24
    Debug [5/24/2011 2:41:40 PM] password length =
    Debug [5/24/2011 2:41:40 PM] 10
    Debug [5/24/2011 2:41:40 PM] Returning values now
    Debug [5/24/2011 2:41:40 PM]
    About to encrypt data to be stored in DataStore
    Debug [5/24/2011 2:41:40 PM] GUID outside -->
    Debug [5/24/2011 2:41:40 PM] nBykQFvfP0iVvCQvyW/aiQ==
    Debug [5/24/2011 2:41:40 PM] x02390
    Debug [5/24/2011 2:41:40 PM]
    Debug [5/24/2011 2:41:40 PM] Inside sgsloidi::sgsloidiupdateOIM
    Debug [5/24/2011 2:41:40 PM] Inside sgsloidi::getConfigParamters
    Debug [5/24/2011 2:41:40 PM] Start getting config parameters from registry
    Debug [5/24/2011 2:41:40 PM] oimhost is
    Debug [5/24/2011 2:41:40 PM] oimprd.cityhall.boston.cob
    Debug [5/24/2011 2:41:40 PM]
    Debug [5/24/2011 2:41:40 PM] oimport is
    Debug [5/24/2011 2:41:40 PM] 8080
    Debug [5/24/2011 2:41:40 PM]
    Debug [5/24/2011 2:41:40 PM] oimsslclient is
    Debug [5/24/2011 2:41:40 PM] oimprd.cityhall.boston.cob
    Debug [5/24/2011 2:41:40 PM]
    Debug [5/24/2011 2:41:41 PM] oimuserattr is
    Debug [5/24/2011 2:41:41 PM] Users.User ID
    Debug [5/24/2011 2:41:41 PM]
    Debug [5/24/2011 2:41:41 PM] oimusessl is
    Debug [5/24/2011 2:41:41 PM] Y
    Debug [5/24/2011 2:41:41 PM]
    Debug [5/24/2011 2:41:41 PM] oimappservertype is
    Debug [5/24/2011 2:41:41 PM] 3
    Debug [5/24/2011 2:41:41 PM]
    Debug [5/24/2011 2:41:41 PM] End of sgsloidi::getConfigParamters
    Debug [5/24/2011 2:41:41 PM] Inside sgsloidi::setParameters
    Debug [5/24/2011 2:41:41 PM] The SOAP start element is
    Debug [5/24/2011 2:41:41 PM] <processRequest xmlns=""><parameters>
    Debug [5/24/2011 2:41:41 PM] The SOAP end element is
    Debug [5/24/2011 2:41:41 PM] </parameters></processRequest>
    Debug [5/24/2011 2:41:41 PM] The path is
    Debug [5/24/2011 2:41:41 PM] /spmlws/services/HttpSoap11
    Debug [5/24/2011 2:41:41 PM] End of sgsloidi::setParameters
    Debug [5/24/2011 2:42:01 PM] Inside sgsloidiOIMDownErrorHandler
    Debug [5/24/2011 2:42:01 PM] Inside sgsladds::sgslperwriteData YOOOO
    Debug [5/24/2011 2:42:01 PM] Inside sgsladac c-tor
    Debug [5/24/2011 2:42:01 PM] AD Host
    Debug [5/24/2011 2:42:01 PM] 192.168.252.12
    Debug [5/24/2011 2:42:01 PM]
    Debug [5/24/2011 2:42:01 PM] AD Port
    Debug [5/24/2011 2:42:01 PM] 389
    Debug [5/24/2011 2:42:01 PM]
    Debug [5/24/2011 2:42:01 PM] AD Base DN
    Debug [5/24/2011 2:42:01 PM] DC=admin,DC=mybps,DC=org
    Debug [5/24/2011 2:42:01 PM]
    Debug [5/24/2011 2:42:01 PM] Only dataattribute
    Debug [5/24/2011 2:42:01 PM] Got Registry enteries
    Debug [5/24/2011 2:42:01 PM] contact
    Debug [5/24/2011 2:42:01 PM] description
    Debug [5/24/2011 2:42:01 PM] Got Entiredn
    Debug [5/24/2011 2:42:01 PM] OU=oimpwdsyncadmin.mybps.org,DC=admin,DC=mybps,DC=org
    Debug [5/24/2011 2:42:01 PM] Encrypted record already exists in Datastore
    Debug [5/24/2011 2:42:01 PM] Already Exists
    Debug [5/24/2011 2:42:01 PM] Encrypted record already exists in Datastore
    Debug [5/24/2011 2:42:01 PM] Already Exists
    Debug [5/24/2011 2:42:01 PM] Inside sgsladdsSearchUser
    Debug [5/24/2011 2:42:01 PM] Firing Search Request
    Debug [5/24/2011 2:42:01 PM] AD search for a user objectGUID is successfull
    Debug [5/24/2011 2:42:01 PM] Count success
    Debug [5/24/2011 2:42:01 PM] Search result fetched
    Debug [5/24/2011 2:42:01 PM] 0:318 6 230 308 AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAJFqp2tiHmkKsyDTbryXNMQAAAAAmAAAAUABhAHMAcwB3AG8AcgBkACAARQBuAGMAcgBwAHQAaQBvAG4AAAADZgAAqAAAABAAAAB4zc1WOQi1O89gt9yPTPQaAAAAAASAAACgAAAAEAAAAO6jrhYFzep1GBjUEY3rhTU4AAAA5YMKvxhm7XLSGZafTPPYXG9eBTKtlwitIWhX4ZSgyEdO7yIatkBoZT2CCBEXfIlVT0tSjF47qTgUAAAA5ppQOjx3VeDh8ps3leGg9D+eSIs=
    Debug [5/24/2011 2:42:01 PM] --------------------&&&----------------
    Debug [5/24/2011 2:42:01 PM] Inside sgsladds::sgsladdsgetData NEW Look
    Debug [5/24/2011 2:42:01 PM] 0:318 6 230 308 AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAJFqp2tiHmkKsyDTbryXNMQAAAAAmAAAAUABhAHMAcwB3AG8AcgBkACAARQBuAGMAcgBwAHQAaQBvAG4AAAADZgAAqAAAABAAAAB4zc1WOQi1O89gt9yPTPQaAAAAAASAAACgAAAAEAAAAO6jrhYFzep1GBjUEY3rhTU4AAAA5YMKvxhm7XLSGZafTPPYXG9eBTKtlwitIWhX4ZSgyEdO7yIatkBoZT2CCBEXfIlVT0tSjF47qTgUAAAA5ppQOjx3VeDh8ps3leGg9D+eSIs=
    Debug [5/24/2011 2:42:02 PM] Encoded Data Extracted in sgsladdsgetData
    Debug [5/24/2011 2:42:02 PM] 318 6 230 308 AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAJFqp2tiHmkKsyDTbryXNMQAAAAAmAAAAUABhAHMAcwB3AG8AcgBkACAARQBuAGMAcgBwAHQAaQBvAG4AAAADZgAAqAAAABAAAAB4zc1WOQi1O89gt9yPTPQaAAAAAASAAACgAAAAEAAAAO6jrhYFzep1GBjUEY3rhTU4AAAA5YMKvxhm7XLSGZafTPPYXG9eBTKtlwitIWhX4ZSgyEdO7yIatkBoZT2CCBEXfIlVT0tSjF47qTgUAAAA5ppQOjx3VeDh8ps3leGg9D+eSIs=
    Debug [5/24/2011 2:42:02 PM] Moving out sgsladdsgetData
    Debug [5/24/2011 2:42:02 PM] Encoded Data Extracted
    Debug [5/24/2011 2:42:02 PM] 318 6 230 308 AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAJFqp2tiHmkKsyDTbryXNMQAAAAAmAAAAUABhAHMAcwB3AG8AcgBkACAARQBuAGMAcgBwAHQAaQBvAG4AAAADZgAAqAAAABAAAAB4zc1WOQi1O89gt9yPTPQaAAAAAASAAACgAAAAEAAAAO6jrhYFzep1GBjUEY3rhTU4AAAA5YMKvxhm7XLSGZafTPPYXG9eBTKtlwitIWhX4ZSgyEdO7yIatkBoZT2CCBEXfIlVT0tSjF47qTgUAAAA5ppQOjx3VeDh8ps3leGg9D+eSIs=
    Debug [5/24/2011 2:42:02 PM] MAXRETRY LIMIT count is not updated: OIM is down_+*
    Debug [5/24/2011 2:42:02 PM] 0
    Debug [5/24/2011 2:42:02 PM] numretries ======
    Debug [5/24/2011 2:42:02 PM] 0
    Debug [5/24/2011 2:42:02 PM] Inside sgslcodsupdateChild
    Debug [5/24/2011 2:42:02 PM] 0:318 6 230 308 AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAJFqp2tiHmkKsyDTbryXNMQAAAAAmAAAAUABhAHMAcwB3AG8AcgBkACAARQBuAGMAcgBwAHQAaQBvAG4AAAADZgAAqAAAABAAAAB4zc1WOQi1O89gt9yPTPQaAAAAAASAAACgAAAAEAAAAO6jrhYFzep1GBjUEY3rhTU4AAAA5YMKvxhm7XLSGZafTPPYXG9eBTKtlwitIWhX4ZSgyEdO7yIatkBoZT2CCBEXfIlVT0tSjF47qTgUAAAA5ppQOjx3VeDh8ps3leGg9D+eSIs=
    Debug [5/24/2011 2:42:02 PM]
    Encrypted record data updated successfully
    Debug [5/24/2011 2:42:02 PM] Inside sgsladac destructor
    Debug [5/24/2011 2:42:02 PM] Password updation failed in child process+_
    Debug [5/24/2011 2:42:02 PM]
    About to UNBIND datastore after processing the Records
    Debug [5/24/2011 2:42:02 PM]
    Deleting datastore object pointer
    Thanks,
    M

    incorrect port number

Maybe you are looking for

  • How do I edit my ePub file on Windows 8?

    Hello, I need help for my ePub file, I'm a ebooks writer and I have to design and edit my ePub books and publish it onto site, please recommend a great tool to edit, design ePub book! Thanks in advance!

  • How do you cancel BT Sports?

    I'm currently on Sky HD but I'm cancelling it as the majority of programmes I watch are on freeview. I signed up online for BT Sports back in May but I've changed my mind & don't wish to go ahead with it anymore. How do you cancel this before the sea

  • Can I copy iphoto 6 from my macbook to my imac

    Hi, Is this possible? I want to upgrade iphoto 5 to iphoto 6 on my imac. Can I copy if from my macbook? iLee

  • How can I save website icons

    Hi, I tried this question in other forums with no success. How can I save website icons from Google, Yahoo, etc? All I get is the safari archive icon when I save a website to the desktop. Thanks MC

  • Report9i not generating more then 50852 pages in PDF format

    Hi, I have Oracle Report 9i (9.0.2.3) version with patchset 3. I am facing problem of generating PDF file which has more than 50K pages. It is generating if 50,000 page only but if pages more than 50852 then its not generating PDF. If any one has any