In realtime what username and password we use?

hi,
in realtime what username and password we use?
if any one can help me on this?
regards
KR

Hi Ravi,
What the members have said is correct. It depends upon how a company wants to go with the Usernames. Usually it would be the name of the user, maybe with the initials too.
What we do is create usernames as initials, month and day of the user's birthday. My id would look like KNP0522.
Regards
Nadarajah Pratheb

Similar Messages

  • What username and password is used for a Mac on the Install of Adobe Reader,  (Step 8 in procedure)

    Is it a Mac or Adobe password used for installing Reader to a Mac OS? Doesn't. Say in step 8 of procedure.  We cannot. Get past this point.  Thanks.

    See https://forums.adobe.com/thread/1619850

  • Can you set username and password when using OWA_UTIL.REDIRECT_URL?

    If you have a PSP that runs under a DAD that includes username and password and therefore doesn't require users to log in and you want it to do OWA_UTIL.REDIRECT_URL to another PSP that runs under another DAD that normally requires login using basic database authentication and the first PSP already "knows" the user's username and password, is there any way to use them to skip the login dialog of the second page? Maybe hack into the request and use UTL_HTTP.SET_AUTHENTICATION somehow...?

    That doesn't seem to work, and trying that kind of url directly from the browser says "invalid syntax error", so maybe Oracle appserver just doesn't let you do that.
    I got the idea of trying to add an authorization header:
    OWA_UTIL.MIME_HEADER(BCLOSE_HEADER => FALSE);
    HTP.P( 'Authorization: Basic mybase64encodedcredentials' );
    OWA_UTIL.REDIRECT_URL('myurl', FALSE);
    OWA_UTIL.HTTP_HEADER_CLOSE;
    ...but it didn't work either and with a little further thought I guess it's obvious why: any code here modifies the response header for this request, not the request header for the redirect.
    Message was edited by:
    psalmu

  • Capturing weblogic username and password for use in my console extension

    Hi,
    I have developed a console extension as a war file and it needs to capture the Weblogic username and password so internally it can use the class MBeanServerConnection that needs these during connection. I have therefore created the standard <login-config> <auth-method>FORM</auth-method> ... stuff in the web.xml to output a logon.jsp when my war is accessed in the hope of capturing username and password. My intention is that these would appear in addition to the standard logon that appears when the Weblogic console is 1st accessed.
    However, my console extension logon.jsp does not appear and I think it’s because there is only one logon needed and this is when the main Weblogic console is accessed because my console extension is subordinate to the main Weblogic console.
    Therefore, how can I get my console extension logon.jsp to appear so I can capture the Weblogic username and password?
    Thanks,
    Dave.

    One approach that might work is to write a look and feel console extension that modifies the console's login jsp (vs trying to have a second login jsp).
    http://download.oracle.com/docs/cd/E15523_01/web.1111/e13745/rebrand.htm#i1070459 describes how to write look and feel extensions.
    Basically, you instantiate the look and feel extension template, hand-edit login/LoginForm.jsp, then build and deploy the extension.
    One tricky part is figuring out how to pre-compile the jsps. Here's part of a build script I've used for look and feel extensions. Let me know if you need a sample look and feel extension.
    <project name="sample-look-and-feel" default="build">
    <dirname property="this.dir" file="${ant.file.sample-look-and-feel}" />
    <property environment="env" />
    <property name="src.dir" value="${this.dir}/src" />
    <property name="build.dir" value="${this.dir}/build" />
    <property name="webapp.dir" value="${build.dir}/webapp" />
    <property name="jspc.dir" value="${build.dir}/jspc" />
    <property name="samplename" value="sample-look-and-feel" />
    <property name="wlhome.dir" value="${env.WL_HOME}" />
    <property name="consoleapp.dir" value="${wlhome.dir}/server/lib/consoleapp" />
    <property name="deployment" value="${build.dir}/${samplename}.war" />
    <target name="build">
    <!--
    Make a temporary directory that we will compile the jsps from.
    It includes the console's web.xml (which has the jspc configuration),
    the sample's jsps, and any console taglibs the sample's jsps use.
    -->
    <copy todir="${jspc.dir}">
    <fileset dir="${consoleapp.dir}/webapp">
    <include name="**/struts.jar" />
    <include name="**/standard.jar" />
    <include name="**/beehive-netui-tags.jar" />
    <include name="**/skeleton_taglib.jar" />
    <include name="**/render_taglib.jar" />
    <include name="**/l10n_taglib.jar" />
    <include name="**/*.tld" />
    <include name="**/web.xml" />
    </fileset>
    <fileset dir="${webapp.dir}">
    <include name="**/*.jsp" />
    </fileset>
    </copy>
    <!--
    Compile the jsps out of the temporary directory.
    Put the generate files into the extension's wabapp.
    -->
    <java classname="weblogic.servlet.jsp.jspc20" fork="true" failonerror="false">
    <arg line="-noexit" />
    <arg line="-d ${webapp.dir}/WEB-INF/classes" />
    <arg line="-webapp ${jspc.dir}" />
    <!--
    <arg line="-verboseJspc"/>
    <arg line="-debug"/>
    <arg line="-keepgenerated"/>
    -->
    <classpath>
    <pathelement path="${wlhome.dir}/server/lib/wlw-langx.jar" />
    <fileset dir="${consoleapp.dir}/APP-INF/lib">
    <include name="*.jar" />
    </fileset>
    <fileset dir="${consoleapp.dir}/webapp/WEB-INF/lib">
    <include name="*.jar" />
    </fileset>
    <pathelement path="${java.class.path}" />
    </classpath>
    </java>
    <!-- Remove the temporary directory now that we're done with it. -->
    <delete dir="${jspc.dir}" />
    <!-- Package the extension -->
    <jar destfile="${deployment}" basedir="${webapp.dir}" />
    <!-- remove the webapp directory now that the webapp is built -->
    <delete dir="${webapp.dir}" />
    </target>
    </project>

  • How to set username and password when using Proxy class for SOCKS5?

    Hi all,
    I use the proxy class for SOCKS5, so need to set username and password, I don't find where can I set the value. whether the API support it.
    Thanks in advance!

    System.getProperties().put("proxySet", "true");That does nothing. Remove.
    System.getProperties().put("proxyHost", getProxyHost());
    System.getProperties().put("proxyPort", getProxyPort());You should be setting socks.proxyHost and socks.proxyPort here.
    System.setProperty("java.net.socks.username", getSOCKSUsername());
    System.setProperty("java.net.socks.password", getSOCKSPassword());
    Authenticator.setDefault(new ProxyAuth(getSOCKSUsername(), getSOCKSPassword()));You either need the first two lines or the third, not both. See the last link posted above.
    1. After I set the value, I connect internet by proxy, how the proxy server knows the values?Because Java tells it during the SOCKS handshake.
    2. In my app, I just set the values in the system properties, then JVM does remaining work? Remaining work is not concerned?Should be OK unless you have to connect to a different SOCKS proxy from the same JVM, but that kind of thing is problematic anyway due to the curious Authenticator design which is set globally, not per connection as you might expect.

  • JAZN Admin tool - what username and password??

    I need to use the JAZN Admin tool that comes with JDeveloper to configure security for the embedded OC4J. I have specified JAAS as the policy provider by adding the following lines to jre/lib/security/java.security:
    auth.policy.provider=oracle.security.jazn.spi.PolicyProvider
    login.configuration.provider=oracle.security.jazn.spi.LoginConfigProvider
    However, I don't know what user name and password to specify when attempting to invoke a JAZN command, such as "java -jar jazn.jar -listusers". What is the default username & password that is included in the JDeveloper 10g installation? Or do I have to manually configure a username/password? If so how?
    Thanks in advance!
    Steve

    See https://forums.adobe.com/thread/1619850

  • Changing username and password on used Macbook pro?

    I just inherited a MacBook Pro from a friend who left back to Saudi Arabea. He had gotten it from another friend who thought it was broken (though it turned out it just needed a new charger). Now that its working, it has a user and password, and I want to know how to change it, because I can't download anything without that dang password, and my friend didn't know it had a password to begin with. What can I do?

    You need to wipe the drive completely and reinstall the OS. The only way you're going to do that is with the original disks that shipped with the Mac. If you choose not to wipe it clean, you run the risk of allowing the keyloggers and other malware that the previous owner installed to steal your personal information.
    What OS is it running? Go to the About This Mac menu item in the Apple menu and it will list a number like 10.8.1 in the version. While there, click on More Info and post what type of Mac it is.
    For instance, on mine, it is a Macbook Pro, 13 inch, Mid 2010 model.
    If it is running 10.7 or 10.8, you will never be able to reinstall the OS as it is linked to the original owners AppleID.
    Depending on what OS shipped with the Mac, there are several options. If it shipped with Snow Leopard, and you don't have the disks that came with it, Call AppleCare and order replacement disks. They will need the Serial number which you can find on the About This Mac window.
    If it came with Lion, then you will need to Call AppleCare and have the license transferred to your AppleID.
    If you are logged in, then you can go to System Preferences, Users & Groups, and create a new user by clicking on the + sign. If it is grayed out and the padlock is locked, you are out of luck.

  • Why do my firewalls only use the domain username and password for login and enable passwords, not a different enable password like my switches do? The RADIUS config looks the same...

    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman","serif";}
    Issue:
    Cisco firewalls require only one level of password i.e. the domain username and password are used for both logging in as well as reaching global configuration mode.
    Background:
    We have multiple Cisco network devices set up which authenticate to our Windows domain controller using NPS (Windows 2008 R2). The switches we have set up all function exactly as we would hope as they require your domain username and password to login to the device. They then require a separate password when you use the enable command, this is stored in Active Directory:
    Switches:
    Username:domain-username
    Password:domain-password
    SWITCH>enable
    Password:enable-password-in-Active-Directory
    SWITCH#
    Firewalls (as they currently are):
    Username:domain-username
    Password:domain-password
    FIREWALL>enable
    Password:domain-password
    FIREWALL #
    With the firewalls however, they require your domain username and password first, and then your domain password again when using the enable command. I want the firewalls to use the enable level password that the switches currently use instead of the domain password again. The current configuration look like the following:
    Current switch configuration:
    aaa new-model
    aaa authentication login default group radius local
    aaa authentication enable default group radius enable
    aaa authorization exec default group radius local
    aaa session-id common
    radius-server host 192.168.0.1 auth-port 1645 acct-port 1646
    radius-server source-ports 1645-1646
    radius-server key 7 1234abcd
    Current firewall configuration:
    aaa-server DC01 protocol radius
    aaa-server DC01 (outside) host 192.168.0.1
    aaa authentication ssh console DC01 LOCAL
    aaa authentication enable console DC01 LOCAL
    key 1234abcd
    Any help would be great, thanks!

    Cisco ASA works that way by design. You could remove "aaa authentication enable" and then you could use the "enable password" command to set your enable password.
    But if you do that, then ASA would change your username to "enable_15". That would break Authorization and Accounting if you're using them. Let me clarify with an example
    Firewalls :
    Username:domain-username
    Password:domain-password
    FIREWALL>show curpriv
    Username : domain-username
    Current privilege level : 1
    Current Mode/s : P_UNPR
    FIREWALL>enable
    Password:enable-password-from-running-config
    FIREWALL #show curpriv
    Username : enable_15
    Current privilege level : 15
    Current Mode/s : P_PRIV
    If you're using Authorization and Accounting it's recommended to stick with your current behavior.

  • HT1338 how can i find username and password for MobileMe ?

    please let me know which username and password should use for Mobileme.

    MobileMe is closed; if you had an account and did not migrate it to iCloud it's lost. If you migrated it to iCloud the login is your @me.com email address and the password is what you chose.
    If you never had a MobileMe account (and paid for it prior to June last year) the situation does not arise - you may have come across some old documentation encouraging you to sign up, but this is no longer possible.
    You can open an iCloud account for free, which will give you email and syncing facilities:
    Get Started with iCloud

  • Forgot router username and password

    I have forgotten my router username and password. How do I recover them?
    Thanks,
    Bill

    What is the model number of your router? What username and password are you referring to, is it to log into the router page or are you looking for the router's wireless network password? to log into the router page default password is admin. If you cannot access the router using the default password , then you will have to reset the router.

  • OSS Username and Password

    Hello,
    it is required username and password while using OSS on Service.sap.com. I save my username and password after first login, but while advancing it again requires username and password:( Is there anyone knowing the reason of this? and what is the solution? thanks in advance...
    Regards
    ismail KARAYAKA

    Just one extra thing not mentioned in here - bear in mind that SAP.COM runs on multiple servers and you have to have your ID saved for each server if you do not use the passport method as the other replies recommend (I agree - best method!) .
    However eventually if you continue to enter in your userid and password each time and save each time, all the servers will recognise you and it will prefill them for you!!
    BUT use the passport method - much easier...
    Regards
    Mark

  • HP1102W, XP, asking for username and password

    I'm setting up my wireless printer, and it is asking for a username and password?
    The wireless printer is set up and shows a status of online when I look at the printer in the browser.  I recently reinstalled windows and everything on one PC. I am trying to set up the wireless printer to print from the PC that was recently reimaged.  It is an HP 1102W. I click Add a Printer (next), A network printer (next), Browse for a printer. The printer shows up in my list of devices. But when I click on it, I am asked for a username and password for the PC that this printer is connected to by USB cable. I do not know what username and password it is asking for.
    It does not seem to be the printer username and password it is looking for. It is looking for the username and password for the PC that the printer is hooked up to (by USB cable.). The box that comes up is a windows box and says "Connecting to SHARONS-PC" and then asks for the username and password. There is no username and password on this PC.

    I finally figured it out. Even though this is a wireless network printer, it is not added by clicking on the add a network printer. Somehow, Microsoft considers this a local printer (attached to this computer, even though it is not attached to the computer or a local printer).
    To add:
    Click Add a printer (next), select Local Printer (attached to this computer) (next), The wizard was unable to find a plug and play printer (next), select Create a new port. From the drop down select Standard TCP/IP port (next) (next), put in the printer IP address from the configuration page of the printer. That should pre-fill the port name also (next). That should add the wireless network printer.

  • I keep getting the message " The server 192.168.1.1:80 requires a username and password. The server says: RE1000"?

    Why am I getting this message and how can I fix it? I can't access any websites. What username and password an I supposed to put? I'm dumb with this stuff so please provide a simple explanation? Thanks.

    Do you mean the password of the wifi network i'm connected to?

  • Mysql username and password

    Hi All,
    I have installed 9.2.0 and the Mysql is also installed with the hyperion.
    And now when i configure the same it is asking me for the username and password when can i get that.
    Please help.
    Regards,
    Mink

    Are you talking about configuring shared services ?
    From the docs
    A MySQL database is installed automatically with Shared Services. During configuration, you can specify the
    database name, username, and password to use.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • OS X username and password

    Need help!  My username and password I use to login work fine when I log in,
    but when I go to Keychain and check box to reveal password this pops up. I enter my username and password but it will not take it.  Is their a different Username and Password ?

    Guys,
    My username and password is the Admin username and password
    Their must be a different username and password why does it keep rejecting my Admin username and password.  When I login with my username and password it works but not with this!!  Help this is driving me crazy!

Maybe you are looking for

  • DVI to S-video connector?

    I'm looking at buying a cable to extend my display onto a TV. Apple sells the mini-DVI to S-video/Composite adapter but doesn't say if it works for the Powerbook G4 15". I would assume that if it works for the 12" it would also work for the 15" and 1

  • Huge Acrobat temp files - is this right?

    Hi When using the reduce file size function, I have noticed that acrobat produces massive temp files.  I was running some files over night, and acrobat crashed, presumably because it ran out of HD space.  Upon looking for what was using all the space

  • Can's see more than 10 home pages on my iPad

    Hello, Strange thing.. I have so many Apps that I can't see them on my iPad anymore. It seems we can only have 10 home pages on the iPad? If I connect the iPad to itunes, I DO see the 11th homepage. How do I get to see the 11th home page on my iPad?

  • Connecting iPhone to Lexus 430 aux port

    I used to connect my iPod to my Lexus via an auxilary port in the center glove compartment and it would play on my radio speakers. I cannot get my iPhone to play like that. Is there a device that will allow me to plug my iPhone into my Lexus and play

  • Itune Movies

    Not sure if this the correct catagory for this question but here goes - I use Handbrake to copy my own DVD's for viewing on Itunes/Iphone and Ipad The copy process involves selecting the one main movie title in handbrake However on a recent DVD there