How to authenticate userid and password of b2b user in a b2c portal

I am having a reqirement in B2C web portal , where in i have to create two input text fields which will accept userid and password ( the userid and password will be of b2b users)and button to logon and if i click on the logon button, it should take into b2b web portal. Is it possible? if possible please help me in this issue.
Please get back to me if i am not clear in my requirement.
Thanks a lot in advance!
lakshman reddy G.
<MOVED BY MODERATOR TO THE CORRECT FORUM>
Edited by: Alvaro Tejada Galindo on Oct 6, 2008 6:07 PM

To get an idea check these links.
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/aaa1a890-0201-0010-eb93-ae3d2bb74a78
BSP/HowTo - Customizing the design of System Logon page in NetWeaver '04
-Aman

Similar Messages

  • How to Hide userid and password in the address bar

    Hello Dears
    I am using OAS 10g and calling a form from my web portal designed in ASP.Net. I pass userid and password to OAS as parameters and form is accessed but the problem is that userid and password are displayed in the address bar. How can I hide this info to secure my application.
    Note: This is a multi-user environment.
    Please guide. thanks
    Inayat Qazi

    On your reports server in the reports\conf directory there is a file called cgicmd.dat
    This file allows you to create a key that will be replaced with the entry from this file. You can put your userid and password parameters in here and thus remove them from the address line.
    Key value entries look like this in the file:
    examplekey: userid="scott/tiger@myoracleinstance" %*
    your url would then look like this:
    http://myreportsserver/servlet/rwservlet?examplekey&report=myreport.rdf&destype=cache

  • How to encrypt UserID and Password in HTTP url

    Hello experts,
         We want to encrypt UserID and Password which has used in http URL in SAP PI 7.1.
    As we have used SOAP adapter with Transport Protocol HTTP for sender server.
    Kindly help us on it.
    Regards,
    Poonam.

    Hi,
    please go through below blog,
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b04408cc-f10e-2c10-b5b7-af11026b2393?QuickLink=index&overridelayout=true
    please go through below threads,
    SOAP Envelope with user id password
    Soap ---to ----file scenario
    regards,
    ganesh.

  • How to Store UserID and Password on Server

    Hi,
    I m using Applet-Servlet Communication. When my applet calls Servlet it makes database connection and retruns Object to Applet. Can ne body pls. tell me instead of hardcoding database userid and password in servlet, what is a most convinient way to a pass these parameters to servlet. Properties files are one of the way, but is it secure and suaitable on the Web? Is there ne other funda for this?
    Thanx in advance
    Sandeep

    No, I don't think the use of properties file is a suitable
    approach.
    You can use JDBC-realm .Accept the username & password from user,pass these values to the servlet and then validate this against the names stored in the database.

  • BSP - UserId and Password for Internal Users - Anonymous for other users

    Hello,
    We developed an application via BSP's. This application can be accessed by two kind of users.
    1. External Users, with should access the page without using a userId and password.
    2. Internal Users, they will have more authorisation and need to specify their userId and Password.
    How can we accomplish this? I tried internal aliases, but can't get it to work properly.
    In the first service 'zbsp' I didn't specify a userId and password in sicf.
    Then I created an internal alias 'zbsp' referring to this 'zbsp'. In this alias I specified a userId and Password, but the system still asks for a userId and Password. (and after logging in the system gives the following error: The application name in URL .../bc/bsp/sap/zbsp2/uat_report.htm is invalid.)
    What did I do wrong? Or are there other ways to accomplish this?
    Greetings,
    Bart

    Take a look at the following mesaages that discussed the whole SSO and SSO2 ticket logins.
    As for a way to handle the two different login types. Well first and formost - active the SSO Tickets on your system.  Set your BSP up for that.
    Then create a new starting page with an alias to the pöublic section for BSP's in your system. On this page make two links.
    For your external users - one that redirects to your BSP passing the user and password in the url for the "read only external user" - that's the sap-user=name here&sap-password=passwordhere.
    For your internal people give them simply the link to the BSP which when they click it will see no user name and password and redirect them to the BSP login.
    Make sure you setup the BSP login according to SAP note 517860 and follow the instructions from http://help.sap.com/saphelp_nw04/helpdata/en/1d/13c73cee4fb55be10000000a114084/frameset.htm using the supplied SYSTEM_PUBLIC)
    It's a bit basic but it works, we do it
    Oh and setting up the system for the SSO (transaction sso2) is very very simple!!

  • How to authenticate Username and password in MVC using Azure Active Directory

    Need a sample application where in need to authenticate user entered logindetails using Azure Active directory.

    Hi,
    Kindly go through beneath article which helpful to understand the procedure.
    How to Authenticate Web Users with Azure Active Directory Access Control
    http://azure.microsoft.com/en-in/documentation/articles/active-directory-dotnet-how-to-use-access-control/
    Developing ASP.NET Apps with Windows Azure Active Directory
    http://www.asp.net/identity/overview/getting-started/developing-aspnet-apps-with-windows-azure-active-directory
    Adding Sign-On to Your Web Application Using Azure AD
    https://msdn.microsoft.com/en-us/library/azure/dn151790.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to authenticate username and password?

    dear friends,
    i would be thankful if u could please help me out.
    i need to check the username and password in the database while the users login(say for example from login.jsp and the database is ORACLE.).
    reply awaited.
    thanks a lot.

    Well i assume the user fills in a form to login...then it's quite easy to get those parameters, to build an SQL query with this and to check if there is a match with an entry in the DB.

  • How to send userid and password to yahoo website

    Hi All,
    I am working on a project(single sign on) and want to open a website (say yahoo). how can i open yahoo website in Browser from java code. which classes will i have to use?? Also , how can i provide username and paswrd in their respective fields (login, passwd) in the webpage, so that this programs automatically helps to directly access the inbox?
    thanks in advance.

    Prepare post data,
    String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
    data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");Creat connection,
    URL url = new URL("http://hostname/");
    URLConnection conn = url.openConnection();
    conn.setDoOutput(true);Send data
    OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
    wr.write(data);
    wr.flush();If you need to get the response do the following
    BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String line;
            while ((line = rd.readLine()) != null) {
                // Process line...
            wr.close();
            rd.close();

  • How to pass username and password while invoking a web service through wsdl

    Hello All,
    i am calling a web service through wsdl, but it is giving error 401. i want to know how to pass userid and password when i am invoking webservice?
    i am using NetBeans 6.1.
    i did following thing:
    First i created one web application, then i right clicked on project new->web service client, and gave the url for my wsdl.
    after that i create one main class and try to call my required operation by that wsdl.
    Thanks in advance

    Thanks dumchikov, i tried the same thing what ever you told but there is no option for security.
    when i right clicked on web service reference its open 1 window which have 2 tab one is quality of service and second is wsdl customization, then i clicked on wsdl customization. which contain Global Customization, Port Types, Port Type Operations, Port Type Faults, Binding, Binding Operations, Services, Ports and External Binding Files. it don't have security option.

  • Hi, how to develop application , matching of userid and password to backend

    hi masters ,
                  , user  have to give userid and password of back end sap system  to see particular report. i mean there is a first view ( this first view muust not be first screen of portal ) with userid and password fields . after gave his id and password he can go to second view to see the particualr details .please suggest me about how to do custom bapi code and , in also  webdynpro java  how to develop .
               i know about sso. in this concept i have to use through webdynpro java only. no need of sso concept here .
              after giving the  userid and password , those details must be match with  backend sap database.if no  one of userid and passwrod field  is  matching it has to show some error message. and in password field must be in encrypted letters .

    hi surya,
    Use JCO api to create connection to the backend.
    [JCO tutorial|http://www.apentia-forum.de/viewtopic.php?t=1962&sid=9ac1506bdb153c14edaf891300bfde25]
    On the webdynpro screen you can ask users to enter login id and password. Use this information to create connection to backend using JCO.
    Hope this helps!
    Monalisa

  • How to use the userid and password infor from Oracle DB in BO

    Out client has the userid and passwords(encrypted) infomration stored in oracle table.
    Is it possible to import this useid and password information into BO .And use the same userid and password from Oracle table for its login authentication and for data security...?
    In other words can the userid/pwd info from Oracle Profile Table imported and re-used in BO Enterprise Edition.

    If the users/pw are in an Oracle LDAP v3 compliant server then you can import them via LDAP plugin, else you would need to bring them in an enterprise users via script. The Import wizard can do this and the SDK (see the SDK forums for more info on how)
    Maintaining the passwords would be difficult unless you are using and industry standard directory like LDAP.
    Regards,
    Tim

  • How do pass the UserID and Password in the SOAP header for web services

    I am encountering issues trying to pass the userid and password in the SOAP header when consuming a 3rd party web service.  Rostewitz posted something similiar but I don't know how to type iv_xml.  Any help would be greatly appreciated.
    Thank you,
    jpina

    It helps to post a link to a thread when you refer to it.  If you are trying to implement that solution though, you can look at the parameter of the corresponding method being called.  The parameter has type 'SIMPLE' which means that it is compatible with all of the predefined elementary ABAP types.  In this case, you should use 'STRING'.

  • How to create a desktop shortcut that includes UserID and Password

    I would like to know how to add my User ID and Password to allow seamless login to a site by using the userid and password
    I have an existing shortcut and would like FF to open and login to the site with one "double-click"
    I do appreciate that it is a security risk to do this, but the information on this site poses no risk for me if someone that has authorized access to my personal computer, click on this shortcut.
    I will appreciate any help to assist me in doing this.
    Kind Regards
    Frits

    iamjayakumars,
    Thanks for the advice, but the website does not give the option to save the password, hence my question
    Any other way I can perhaps in the properties specify that?

  • When starting webcenter domain, how not to enter userid and password?

    Dear All,
    I followed this link http://yonaweb.be/start_webcenter_domain in installing my webcenter domain and I was successful in setting my own webcenter and busy exploring the webcenter spaces.
    My only concern is that when I am starting my webcenter domain it always ask for user id and password for the weblogic.
    I created a small batchfile for this.
    call C:\Oracle\Middleware\user_projects\domains\webcenter_domain\bin\startManagedWebLogic.cmd WC_Spaces http://localhost:7001but how can I get away from typing the user id and password?
    Thanks

    >
    otherwise,you can specify the userid and password in boot properties file of your domain.
    \user_projects\domains\dryrun_domain\servers\AdminServer\security\boot.properties.
    # Generated by Configuration Wizard on Wed
    username={AES}dbjKVafUpVLPvTG04tGl12RJRCaYmU5dmv2Yw=
    password={AES}5WHBgndS2Fq2uoiIKKWI+rM2uwTPAYQ0I=
    replace the username and password with your credentials.There's a nice tutorial with screenshots describing how to do this here:
    http://st-curriculum.oracle.com/obe/fmw/wls/10g/r3/installconfig/enable_auto_login/boot_identity_file.htm#t4

  • How to embed the UserID and Password in WSDL

    Hi
    is there any way to embed the UserID and Password in the WSDL file that is generated by XI.
    Thank You,
    Madhav

    Hi,
    It is not possible by using SOAP adapter. But you can use http adapter with user and password instead of SOAP adapter.
    Follow Stefan Grube's postings in thread how to add the username and password into the WSDL
    Regards,

Maybe you are looking for

  • Opening & Closing ALL Windows in Final Cut Express 4???

    I am new to Mac & FCE 4. When I either open up FCE or close it - only certain windows are opened or closed (i.e. just Viewer & Browser may appear, for example). How do I open & close projects so that ALL the windows open & close? Thanks for helping a

  • Since updating to iOS 6 many of my apps are crashing

    Since I have updated my iPhone 4s to iOS 6, 6.0.1 and now to the latest, I have noticed that a few of my applications are generating errors. Typically they are EXC_BAD_ACCESS(blah) KERN_INVALID_ADDRESS at address Some applications I cannot even open

  • Cannot download anything in browser. download box stays empty

    my yahoo homepage is scrambled. cannot change it. firefox browser 7 will not download anything. the download box remains empty

  • Need Help Formating Text

    Hello, My program send a table to a method that save table values in disk ".doc", there is a way to format some strings to be bold in the end file?? Here is the Code: import java.io.*; import javax.swing.*; public class test{       public test( JTabl

  • Display a long text of service order header in xMAM PDA version

    Hi, I am wondering if you can tell me how long or many digits the long text of the service order header can be displayed in the PDA? or is there any restriction e.g. max 256 digits for the long text? Thank you Minh Tri