In Go URL how to hide or mask or encrypt password?

Hi Experts,
I need to see my OBIEE 11g dashboards and Reports from external application. For that I am passing the Variable through GO URL.
The Syntax of the URL is like below :
http://localhost:9704/analytics/saw.dll?Dashboard&NQUser=XXXXX&NQPassword=XXXXXX&PortalPath=XXXXX
But my requirement is No one should see the Username and Password in the URL (i.e., I want to hide the login details). Not quite sure about how to acheive the same. Could you guys please help me out.
Any help/suggestions is much appreciated.
Regards,
Siva Prasad

Hi Srini,
I tried the post method in the external application(Oracle Apex). There inside IFRAME i has to see OBIEE 11g reports.
Initially it was like this and it is working fine.
<iframe src="http://localhost:9704/analytics/saw.dll?Dashboard&NQUser=XXXXXX&NQPassword=XXXXX&PortalPath=/shared/XXXXX/XXXXX" width="1325" height="600" scrolling="yes"></iframe>
Then I changed to
<IFRAME width="1325" height="600" scrolling="yes">
<form name="myForm" action="http://localhost:9704/analytics/saw.dll?Portal" method="post">
<input type="hidden" name="NQuser" value="XXXXX" >
<input type="hidden" name="NQpassword" value="XXXXX" >
<input type="hidden" name="Path" value="/shared/XXXXX/XXXXX" >
<input type="hidden" name="Action" value="Navigate" >
<input type="submit" value="BI Report" />
</form>
</IFRAME>
But i couldnt able to see anything. Could you please help?
Thanks,
Siva Prasad

Similar Messages

  • JMX - java -  how to connect on MBeans using encrypted password?

    Hi all,
    I am trying to write a java program which connect on weblogic JMX server:
    Map<String, String> jmxEnvMap = new HashMap<String, String>();
    jmxEnvMap.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,
    "weblogic.management.remote");
    jmxEnvMap.put(javax.naming.Context.SECURITY_PRINCIPAL, username);
    jmxEnvMap.put(javax.naming.Context.SECURITY_CREDENTIALS, password); //
    -- How to use the encrypted password value (ex. {3DES}1HQGOlfHha4rhNlqEOvcOQ==) indeed of its clear text value?
    -- How to use userConfigFile/userKeyFile files to connect on the mbeans server?
    Cyryl

    Hi all,
    I am trying to write a java program which connect on weblogic JMX server:
    Map<String, String> jmxEnvMap = new HashMap<String, String>();
    jmxEnvMap.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,
    "weblogic.management.remote");
    jmxEnvMap.put(javax.naming.Context.SECURITY_PRINCIPAL, username);
    jmxEnvMap.put(javax.naming.Context.SECURITY_CREDENTIALS, password); //
    -- How to use the encrypted password value (ex. {3DES}1HQGOlfHha4rhNlqEOvcOQ==) indeed of its clear text value?
    -- How to use userConfigFile/userKeyFile files to connect on the mbeans server?
    Cyryl

  • How to hide or mask the url in APEX Hosted environment

    Please anyone help me...
    Regards
    Pavan

    Hello Pavan,
    You should not use http://apex.oracle.com/ for production applications
    Hiding app_id, session_id etc. from URL - it's been discussed several time in forum, see Nicer URL for an Oracle APEX application | Inside Oracle APEX by Patrick Wolf
    for more examples, see http://www.google.co.in/search?sourceid=chrome&ie=UTF-8&q=nice+apex+urls
    Regards,
    Hari

  • How to hide or masked my Lync 2013 phone number?

    I need to make outbound calls in France, Belgium and Switzerland, to our customers, but I don't want that they see my Lync phone number and call me back. Is there any chance to hide my number or just to masked it?

    Hi,
    Lync Server provides a way to manipulate the caller ID for outbound calls using
    Configuring Caller ID. An administrator can do that by using Lync Server Control Panel Voice Routing—Voice Routes interface to suppress the caller ID and replace it with a specified alternative caller ID.
    Also, you can configuration calling number translation rules in trunk configuration.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • How to hide Show characters in Wifi Password using Group policy

    Hi,
    I need to hide the wifi pass key to all the clients.
    Iam planning to apply group policy to the users. Can anyone help me to sort out this issue.
    Regards.,
    Srinivas.
    SRINIVAS

    Hi,
    Can you share me the Configuration of RADIUS/802.11x Server. While configuring it is
    asking for WAN IP address. Which IP address i have to give?
    1) Is it an IP address given by the network service provider?
    2) Is it an IP address of the server?
    3)Is
    it an IP address of the firewall?
    The Server IP address is as follows:
    IP: 192.168.50.11
    Gateway: 192.168.50.1
    DNS: 192.168.50.1
    Thanks.,
    Srinivas.
    SRINIVAS

  • How to Hide when input password ?

    How to Hide input char when input password
         if (passwd.trim().equals("")) {
              System.out.print("What is your password: ");
              try     { while     (System.in.available() == 0) {
              passwd = new BufferedReader(new     InputStreamReader(System.in)).readLine();
              catch (IOException e) {passwd =     "<"     + e     + ">";}

    Hi,
    I've taken this from a article by Qusay H. Mahmoud .
    This can help you.
    -----File: PasswordApp.java-------
    import java.io.*;
    * @author Qusay H. Mahmoud
    public class PasswordApp {
       public static void main(String argv[]) {
          PasswordField passfield = new PasswordField();
          String password = null;
          try {
             password = passfield.getPassword("Enter your password: ");
          } catch(IOException ioe) {
             ioe.printStackTrace();
          System.out.println("The password entered is: "+password);
    }-----File: PasswordField.java-------
    import java.io.*;
    * @author Qusay H. Mahmoud
    * This class attempts to erase characters echoed to the console.
    class MaskingThread extends Thread {
       private boolean stop = false;
       private int index;
       private String prompt;
       *@param prompt The prompt displayed to the user
       public MaskingThread(String prompt) {
          this.prompt = prompt;
       * Begin masking until asked to stop.
       public void run() {
          while(!stop) {
             try {
                // attempt masking at this rate
                this.sleep(1);
             }catch (InterruptedException iex) {
                iex.printStackTrace();
             if (!stop) {
                System.out.print("\r" + prompt + " \r" + prompt);
             System.out.flush();
       * Instruct the thread to stop masking.
       public void stopMasking() {
          this.stop = true;
    * This class prompts the user for a password and attempts to mask input with ""
    public class PasswordField {
       *@param prompt The prompt to display to the user.
       *@return The password as entered by the user.
       String getPassword(String prompt) throws IOException {
          // password holder
          String password = "";
          MaskingThread maskingthread = new MaskingThread(prompt);
          Thread thread = new Thread(maskingthread);
          thread.start();
          // block until enter is pressed
          while (true) {
             char c = (char)System.in.read();
             // assume enter pressed, stop masking
             maskingthread.stopMasking();
             if (c == '\r') {
                c = (char)System.in.read();
                if (c == '\n') {
                   break;
                } else {
                   continue;
             } else if (c == '\n') {
                break;
             } else {
                // store the password
                password += c;
          return password;
    }-Manish.

  • How to hide dynamic parameters values in the URL with Reports 6i

    Hi,
    I want to know a way of hiding the parameters values when asking for a report through the web.
    Now I'm using the Reports 3.0.5.8 with a Cartridge defined in the Oracle Web Application Server 3.0.1.0.1. When you ask for a report with the parameters DESTYPE = cache and DESFORMAT = pdf, it is fully generated and in the Address or Location box of the browser, you can see http://webserver/cache/report.pdf (where cache is the virtual directory defined in the OWAS in which the .pdfs are cached). So, users cant see the Url used to generate the report.
    Im trying to upgrade this configuration to Reports 6i with Cgi in a web server. I generate reports with no problems. The problem I have is I cant find how to hide the parameters values as before. I mean, when I ask for a report, once its generated I can see http://webserver/cgi-bin/rwcgi60.exe?server=ServerName&report=report.rdf&userid=user/pass@connection&destype=cache&desformat=pdf&P1=value1&P2=value2 in the Location box. It allows user to ask for another report changing the values of the parameters. I use these parameters to execute some query written in the Data Model. For example, imagine that the P1 represents the company id, the user (that is supposed to see only data of its company) can change this id, ask for a new report and see data of another company.
    Ive already tried to use the key mapping option, but its not useful to me because the parameters values are dynamic and its impossible to define different entries in the cgicmd.dat for each possible value. The option of loading the parameter form before running a report is not useful to me either, because there exists specific screens for this purpose.
    Is there any solution?
    Thank you.
    Marma Bonfiglio.

    Hi Rakesh,
      I am using BI  7.0
    The last option I have is 'Hide' for 'Calculate single values as' .
    I have the below options  for 'Calculate single values as'
    1. Normalise  according to Next group  level  Resul.
    2. Normalize according to  Overall Result
    3. Rank number
    4.Olympic Rank Number
    5.Maximum
    6. Minimum
    7.Counter for all detailed values
    8.Counter for all detailed values that are non zero
    9.Moving average
    10.Moving average  That is  Not zero ,null or Error
    11. Hide.
    So could you please tell me where i can find 'suppress result' option for the keyfigure .
    Many thanks

  • How to hide the PORT NUMBER from the URL

    Hi,
    We have Application on Node 1 and Database on Node 2
    Apps Version: 11.5.10.2
    DB: 9.2.0.6
    We recently added a new node to act as web server for iSupport.
    Now we are able to access the url using public Ip-address which looks like
    http://<Internet Ip-Address>:<PORT NUMBER>
    Eg: http://******.com:8000
    But we dont want the *'PORT NUMBER(8000)'* to be displayed.
    How to hide the port number ?..
    Thanks in Advance,
    Mahesh

    Hi Hsawwan,
    Can you plz explain me the steps how to hide the port number from the url as our network administrator is not aware of this.
    Regards,
    Mahesh

  • Hi, I just watched a Collin Smith How to Hide a Face with AE video. I'm stuck on mask movement size

    I created the mask successfully and I can get it to follow the face while hiding it... but as the person moves away, I'd like to change the mask to a smaller size to avoid covering more than the head.
    Here's the video: http://tv.adobe.com/watch/no-stupid-questions-with-colin-smith/how-to-hide-a-face-in-after -effects/
    Here's the question I left for Collin Smith:
    Hi, your video was extremely clear and I followed along well. My one question is... what if the person moves closer and further away. When the person is close my mask is perfect, but as they move away it becomes too large and covers shoulders and back. Is there anyway to adjust the size of the mask like we do the position as he moves? Thanks again.

    AE Basics
    Keyframe the mask path.

  • How can hide parameters in url (calling reports)

    hi,
    in portal i'm running reports.
    report url is like this;
    http://myportal/reports/rwservlet?report=report.rdf&p_userid='||v_userid||'&cmdkey=conn_ybs_1'
    when antone calls report the userid parameter shown in url.
    for example;
    http://myportal/reports/rwservlet?report=report.rdf&p_userid='||65874||'&cmdkey=conn_ybs_1'
    i don't want to show parameters value to users
    how can hide this parameter in url?
    thanks.

    in portlet i get userid
    v_userid := wwctx_api.get_user;
    and use v_userid the following portlet.
    bq. &lt;HTML&gt; \\ &lt;BODY&gt; \\ &lt;ORACLE&gt;declare \\ p_authid varchar2(50); \\ p_personel_turu varchar2(1); \\ v_userid varchar2(10); \\ begin \\ p_authid := wwctx_api.get_user; \\ p_personel_turu := substr(p_authid,1,1); \\ v_userid := substr(p_authid, 2,8); \\ htp.p(' \\ &lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;&lt;tr&gt;'); \\ if p_personel_turu = 'I' then \\ htp.p('&lt;td width="100%" bgcolor="#7496ec" align="left"&gt;*{size:2}{color:#ffffcc} &lt;img border="0" src="\img\resimler\bullet\bullet.gif" align="middle" width="19" height="19"&gt;{color}{size}{font:Verdana}{size:2}{color:#ffffcc}D&ouml;rt Aylık Vizite Kağıdı{color}{size}{font}*&lt;/td&gt; \\ &lt;/tr&gt; \\ &lt;tr&gt; \\ &lt;td width="100%" bgcolor="#ffffff"&gt;{font:Verdana}{size:1}{color:#006699} İş&ccedil;i Personel D&ouml;rt Aylık Vizite Kağıdı{color}{size}{font}'); \\ htp.anchor(curl=&gt;'http://myportal/reports/rwservlet?report=report.rdf&p_userid='||v_userid||'&cmdkey=conn_ybs_1',ctext=&gt;'*{font:Verdana}{size:1}tıklayın.{size}{font}*&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="100%"&gt; &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;',cattributes=&gt;'target="_blank"'); \\ end if; \\ htp.p('&lt;/tr&gt;&lt;/table&gt;'); \\ end; \\ &lt;/ORACLE&gt; \\ &lt;/BODY&gt; \\ &lt;/HTML&gt;

  • How can hide jsession id in url  while using struts

    i'm new to struts and when i use struts there is a jsession parameter in url how can i hide and dont see it

    Turn on cookies.

  • How to get "Layer Mask Hides Effects" from Photoshop Plug-in

    How to get "Layer Mask Hides Effects" from Photoshop Plug-in.

    I don't think there's enough information here to give an answer.  Is this a Plug-in that you're writing or intend to write?  If so, what type of Plug-in is it?
    If you are writing your own plug-in, the header files included in the Photoshop SDK/API have a bunch of defines for the proper codes to use.
    PITerminology.h has a large amount of keys that can be used to query for information.  PIUGetInfo is probably the function that you want to call to determine what you need to know.
    If you're looking for information about a specific layer, you will want to make a new PIActionDescriptor, call sPSActionDescriptor->Make(*PIActionDescriptor), and then call GetLayerInfo on the layer that you're querying information about.
    You can then call sPSActionDescriptor->Get<datatype> on the layer while passing in the key of the data that you want.

  • How can I hide the user name and password from the url address?

    Good afternoon every body,
    I have a form running with Oracle9i Developer Suite Release 2 and when I run the form on the web it shows the user name and password of my data base. Can anyone of you please help me to hide the user name and password, if there's any way of course?.
    Thanks a lot!!.

    Luis,
    Then, as inolau's notice, create logon screen (or use the default one) and force the users to logon at runtime. Do not pass username/password as parameters.
    inolau,
    True that if the connection is specified in the config it will be the same for everyone. However, every case is different. For example one of our apps gets S3 credentials (from non-Oracle S3) as session parameters. It uses this common db connection to validate some stuff with the database, read security definitions and then it re-connects the forms using the credentials.

  • How to hide libraries from breadcrumb in SharePoint 2013?

    Hi,
    How to hide libraries from breadcrumb in SharePoint 2013? just we want to display parent and least node like below,
    Home Site > Test page
    not like,
    Home Site > Pages > Test page
    Please help us to resolve this.
    Thanks., Prakash

    hi
    OTB breadcrumb have many problems, e.g. it doesn't work properly also with friendly urls. The simplest way is to create custom breadcrumb, e.g. as shown here:
    Building breadcrumbs the way you want it in SharePoint 2010.
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • How can hide the command line of a t.code in the portal

    Dear Experts.
    I have the following doubt:
    How can hide the Command Line of a Report that is called with a T.Code in the portal?
    Attach Image:
    [Image T.Code|http://www.freeimagehosting.net/uploads/eab3b6a03c.jpg]
    When I created a service using the T.Code SICF for the T.Code , I can hide buttons and the filed command line  using
    ~webgui_simple_toolbar
    ~singletransaction
    ~NOHEADEROKCODE
    With notes 1010519, "SAP GUI for HTML: Simplified Title Area Without Menu and OK Code" and 959417.
    But the problem is that when I create the service in the T.Code SICF, I also have that create an Iview IAC in the portal.
    The Question is : How can hide this fields and buttons if I want Publish the T.code using an Iview Transaction in the portal?
    In this moment I have used the two options:
    1 option) I created a service using the t.Code SICF for my Transaction and I also created an Iview IAC in the portal for call the service.
    RESULT:
    SAP Web Application Server
             500 Connection timed out
            Error: -5
           Version: 7000
           Component: ICM
           Date/Time: Sat Jun 12 20:26:39 2010 
           Module: icxxthr_mt.c
           Line: 2698
           Server: xyxab...
    Error Tag: {-}
    Detail: Connection to partner timed out after 60s
    2)  created an Iview Transaction  in the portal and  call my transaction.
    RESULT.
    [Image T.Code|http://www.freeimagehosting.net/uploads/eab3b6a03c.jpg]
    But not can hide the field Command Line and other buttons.
    I think that the command :
    ~webgui_simple_toolbar
    ~singletransaction
    ~NOHEADEROKCODE
    Only can be used if I create a service using the T.Code SICF .
    Best Regards
    Carmen.

    Hi Carmen,
    The bottom line is that this cannot be done for transaction iviews without modifying the standard webgui service in SICF, which is probably not a good idea (since it affects everyone using SAP GUI for HTML). (You could hack the appintegrator to add the ~webgui_simple_toolbar parameter to the transaction URL template in the portal, but again its not a recommended thing to do ...). Better to create an IAC service in SICF with ~webgui=1 where you set the required appearance using an appropriate value for ~webgui_simple_toolbar, and then create an IAC iview to point at this service.
    You can even override the ~transaction value configured in the new service in individual IAC iviews by entering the appropriate value in the application parameter of the iview, for example:
    ~okcode=/nSU01
    And you can pass parameters in the same way:
    ~okcode=/nSU01 USR02-BNAME=xyz;USREFUS-USERALIAS=abc;
    By the way, it would not be recommended to create a URL iview to access an IAC, since you are likely to encounter session management issues in this scenario - better to use an IAC iview.
    Regards, Rory

Maybe you are looking for