How to pass username and password with the portal url

i want to access portal from my web site. i have created username and password fields in my web page. when submited , my portal page should open. so how to pass username and password with the portal url.

This is not straightforward; but it is doable.
First tell us about your portal version; portal 10.1.4 has a slightly different method of doing it and the pre-10g portals were completely different animals.
And if you are in AS Rel 2, then the most important document for you would probably be the following:
[Creating Deployment Specific Pages| http://download-west.oracle.com/docs/cd/B14099_19/idmanage.1012/b14078/custom.htm#i1015535]
You might want to use it in conjunction with some metalink notes about your portal version and such a login page.
hope that helps!
AMN

Similar Messages

  • Passed username and password on the 10G url to a form

    If I have a url (eg;) https://mydomain.com/forms/frmservlet?config=board
    is there a way to:
    1) add username on the url line
    2) modify any of the Forms Server config files to accept username/password
    Because what I really want to do is have FrontPage(my front-end app) interrogate who's coming in , isolate the username/password, and pass it on to the url I mentioned on line 1. AND, I don't want Forms to prompt me for a username/password.
    So that in the end, FrontPage will pass something like this:
    https://mydomain.com/forms/frmservlet?config=board?username=firstname.lastname?password=whateveritis
    IS this explanation clear?

    you can add a "&" behind the config and use parameters in the URL.
    https://mydomain.com/forms/frmservlet?config=board&userid=scott/tiger@db
    try it
    Gerd

  • This is how I am supposed to contact to have my annual creative cloud membership refunded?  I cancelled immediately upon seeing the charge and followed the instructions given and wound up here.  Am I supposed to share my username and password with the for

    This is how I am supposed to contact to have my annual creative cloud membership refunded?  I cancelled immediately upon seeing the charge and followed the instructions given and wound up here.  Am I supposed to share my username and password with the forum?  Adobe, I am about to go social with my frustrations!

    No, this is a public forum, as in user-to-user, so you should not share any private information here.  You will need to contact Adobe Support by chat or phone, which is apparently getting harder and harder to do.  Use the link below and choose the Still Need Help? option at the bottom in the blue area - in the section that opens take your pick of chat or phone.
    Contact Customer Care

  • How to pass Username and password using Invoke to a webservice

    Hi Guys,
    Please tell me how can I pass Username and password using Invoke to a webservice, I am using SOA 11G.
    Thanks
    Yatan

    Hi Yatan
    I suppose you want to use basic HTTP authentication.
    Try to lookup in the SOA docs this property
    oracle/wss_http_token_client_policy
    http://download.oracle.com/docs/cd/E17904_01/web.1111/b32511/configuring.htm#WSSEC2261
    Regards
    Mihai

  • 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.

  • How do I pass username and password to the Citrix client via netlet

    I have managed to call a Citrix managed application from the portal via netlet (via InitialProgram within citrix_start.html) - thankyou William Geurts.
    How do I use the Portal's single sign-on functionality to pass the username and password through to Citrix via netlet?

    Hi,
    This can be done by writing a small application that will pull session/user info from Portal and then pass it on to another app as needed.
    Thanks,
    Raj_indts
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support

  • Passing username and password through the URL (SharePoint integration)

    Dear friends
    I have a requirement to integrate MS SharePoint with Jsp application site. user has to login to the Sharepoint first then from link (URL) i want to pass the username and password from
    that link to login into the jsp site without showing the login page !!

    SharePoint with Jsp application site. user has to login to the Sharepoint first then from link (URL) i want to pass the username
    and password from that link to login into the jsp site without showing the login page

  • How to pass username and password from form to web service

    Hi All,
    We need to develop an offline interactive to form.
    When on desktop computer, the user has to click on button and it calls a web service (exposed via PI ) which updates the backend.
    But backend needs an authorised user for updation. We have a dummy user with authorisations.
    But how to pass the that username with its password to web service
    Please give your suggestions
    Regards,
    Aditya Deshpande

    i am closing this thread

  • How to pass username and password to ftp server using jdk1.4

    My following codes runs fine when i give full access to the anonymous user on ftp server. But when the ftp server is password protected the code gives me error
    "sun.net.ftp.FtploginException"...How can i solve it???
    import java.net.*;
    import java.io.*;
    import java.security.*;
    class Dnet
    public static void main(String r[])
    try
    File fi=null;
    FileInputStream fis=null;
    BufferedReader buff=null;
    OutputStream os=null;
    InputStream ins=null;
    String s=null;
    String ar[]=null;
    int i=0;
    String li=null;
    String ht="i will be there for u";
    fi=new File("c:/nick");
    ar=fi.list();
    System.out.println(ar[0]);
    for(i=0;i<ar.length;i++)
    URL ul1=new URL("ftp://pg-12/satyen/"+ar);
    URLConnection ucon=ul1.openConnection();
    ucon.setDoOutput(true);
    os=ucon.getOutputStream();
    fis=new FileInputStream("c:/nick/"+ar);
    buff=new BufferedReader(new InputStreamReader(fis));
    while((li=buff.readLine())!=null)
    os.write(li.getBytes());
    os.flush();
    os.close();
    }catch(Exception e)
    System.out.println("error is: "+e);
    }

    Hi,
    you need to extend the URL to :
    ftp://user:password@host/path/file
    e.q :
    URL ul1=new URL("ftp://user:passwd@pg-12/satyen/"+ar);
    SKA

  • How can I pass username and password in a client bean to call a webservice?

    Hi,
    I have created a Client Java Bean for a web service (an automatically created Service from a Bapi) that requires username and password. How can I pass username and password in the code?
    Thank you!
    Julia
    This is my code:
    public Z_FlightGetlist port;
    Business Method.
    public String test1234() {
    try{
    BAPI_FLIGHT_GETLIST list = new BAPI_FLIGHT_GETLIST();
    list.setAIRLINE("KLM");
    port.BAPI_FLIGHT_GETLIST(list);
    return "ok";
    catch(Throwable e){
    return "error"+e;
    public void ejbCreate() throws CreateException {
    try{
    InitialContext ic = new InitialContext();
    Z_FlightGetlistService s = (Z_FlightGetlistService)ic.lookup ("java:comp/env/FlightProxy");
    Z_FlightGetlist vi = (Z_FlightGetlist)s.getLogicalPort(Z_FlightGetlist.class);
    this.port = vi;
    catch(Throwable e)

    Hello Julia,
    Check this document
    http://help.sap.com/saphelp_nw04/helpdata/en/50/a5d13f83a14d21e10000000a1550b0/frameset.htm
    Best regards, Maksim Rashchynski.

  • Firefox memeorised my username and password with a shared laptop. How do i erase the memorised information?

    Firefox memeorised my username and password with a shared laptop. How do i erase the memorised information?

    Hello if you go to the tools at the top of the screen and click on it.
    Then you go to the options in that list and click on it.
    Then you select security its the padlock its the last but one in the list click on it.
    In that list you will have the options for the saved passwords click on this and then you can remove them.
    please note this is not a secure way to save your pass words.
    i would not use this.
    if you would like to save pass words try [http://passwordsafe.sourceforge.net/ and its free.
    hope this helps

  • How to retrieve WorkflowContext without passing username and password ?

    Hi,
    I have created a dynamic ApprovalGroup and inside this class i have the following private method.
    private IWorkflowContext fetchWorkflowContext() {
              IWorkflowServiceClient wfSvcClient =
                   WorkflowServiceClientFactory.getWorkflowServiceClient(WorkflowServiceClientFactory.LOCAL_CLIENT);
              ITaskQueryService queryService = wfSvcClient.getTaskQueryService();
              IWorkflowContext workflowContext;
              try {
                   workflowContext =queryService.authenticate("weblogic", "weblogic1".toCharArray(), null);
                   } catch (WorkflowException e) {
                   e.printStackTrace();
    But when i retrieve workflowContext, I have to pass username and password.As this dynamic ApprovalGroup class will be deployed on the same SOA server under D:\Oracle\Middleware111150\Oracle_SOA1\soa\modules\oracle.soa.ext_11.1.1
    I have kept wf_client_config.xml under D:\Oracle\Middleware111150\Oracle_SOA1\soa\modules\oracle.soa.ext_11.1.1\classes.
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <workflowServicesClientConfiguration
    xmlns="http://xmlns.oracle.com/bpel/services/client">
         <server name="default" default="true" excludeFromFederatedList="true">
         <localClient>
              <participateInClientTransaction>false</participateInClientTransaction>
         </localClient>
         <remoteClient>
              <serverURL>t3://localhost:8001</serverURL>
              <userName>weblogic</userName>
    <password>weblogic1</password>
              <initialContextFactory>weblogic.jndi.WLInitialContextFactory</initialContextFactory>
              <participateInClientTransaction>false</participateInClientTransaction>
         </remoteClient>
         <soapClient>
              <rootEndPointURL>t3://localhost:8001</rootEndPointURL>
              <identityPropagation mode="dynamic" type="saml">
                   <policy-references>
                   <policy-reference enabled="true" category="security" uri="oracle/wss10_saml_token_client_policy"/>
                   </policy-references>
              </identityPropagation>
         </soapClient>
         </server>
    </workflowServicesClientConfiguration>
    How to retrieve WorkflowContext without passing username and password ?
    ============================
    workflowContext =queryService.authenticate("weblogic", "weblogic1".toCharArray(), null);
    ============================
    regards.
    Edited by: user10303338 on Oct 5, 2011 1:51 AM

    Use :
    Properties prop = System.getProperties();
    prop.put("proxySet","true");
    prop.put("http.proxyHost","yourProxy");
    prop.put("http.proxyPort","8080"); // change the port
    //prop.put("https.proxyHost","yourProxy");
    //prop.put("https.proxyPort","8080"); // change the port
    Denis

  • TS1702 How do change the old Apple ID username and password to the updated username and password for the apps store?

    How do you change the old Apple ID username and password to the updated username and password in order to get updated apps from the app store?

    cbkitche wrote:
    How do you change the old Apple ID username and password to the updated username and password in order to get updated apps from the app store?
    Do you mean you kept the same account but you only updated your AppleID?
    Just log out and log back in with new ID.
    Note that the AppleID is embedded into the item at purchase and cannot be changed.
    However, when you change your AppleID, it will link the old account name to the new account name so you will not have any problems updating apps using the new AppleID.

  • Passing username and password while calling the simple HTTP API

    Hi,
    I want to execute a graph by calling the http api from a java code. However, this gives me a 401 unauthorized http error as I am not passing the username and password to the clover http url.
    The following is the format of the constructed url. - http://<host>:<port>/clover/simpleHttpApi/graph_run?sandbox=<sandboxname>&graphID=graph/Baseline.grf&verbose=FULL
    Can anyone suggest how to pass user credentials to this url.
    Thanks

    Brett,
    Thanks for the response.
    The idea is to run the baseline graph using the simple http api and get the run id of the job. Then I plan to call
    this url - http://<host>:<port>/clover/simpleHttpApi/graph_status?runID=1310924&returnType=STATUS_TEXT&waitForStatus=FINISHED_OK by passing the obtained run ID of the previous job dynamically to this url. This status has to be read and printed on the screen. Now all this is easy to write using java and executing the java class using the JAVA EXECUTE component of Integrator ETL 3.1. My only problem is how do I pass the user credentials.
    Thanks

  • I have purchased an Apple TV from a friend. How do I replace his username and password with mine?

    I have purchase an Apple TV from a friend.  How do I replace his username and password with mine.

    Sign out and sign in with your own Apple ID.

Maybe you are looking for

  • Fan Speed & internal Temperatur​e of 600-1170a

    Hi There, I have an all in one desktop PC, Model is 600-1170a, Product Number is: VT558AA-ABG, OS is win7 home Premium Pack 1. it restarts itself after continuous running for several hours, I installed SpeedFan v4.50 software and found speed of fan2

  • Orange Livebox & MacBook Pro Slow wireless connection

    Hello, Looks like we are a lot experiencing a slow or sporadic wireless connection. I have done all updates, the MBP finds the livebox and connect properly but I have a very slow connection. Lan connection is working fine and quick. Please could some

  • Suggestion needed on creating report

    Morning all, I have been asked to create a report which would categorize each lens type according to month. However each lens type would show number of orders according to number of days. For example                                            Number

  • How to findby unique key

    Hi, for CMP, we have findByPrimaryKey, I'm wonding how to implement a findByUniqueKey. Can any idea? Thanks John Toronto

  • Country of Origin

    I accidentally used Tajikistan, a country I recently relocated to, instead of Canada as my country of origin and am now getting emails from Skype in Tajik or Russian. Would really appreciate some help in correcting my country of origin?