Alias for the url to application.

I am not sure whether I have titled by subject correctly.
This is my requirement..
This is my link to access my application
http://dbahost:7780/pls/apex/f?p=102:1
When rolling out this application I want the users just to type cdweb on the url and it should take them to the application. How can I do this?
Right now I have a dns alias for the host as cdweb --> dbahost.
Any thoughts?

Hi
This might help you
http://www.inside-oracle-apex.com/nicer-url-for-an-oracle-apex-application/
Br, Jari

Similar Messages

  • Server returned response code 500 for the url

    I have an applet which connects to a servlet.I have just upgraded from Java 1.5_06 to Java 1.6_027.
    I have a login.html which opens up when i hit the url http://localhost:80/test/testlogin.html.
    The IIS 7 opens this page and then when I provide login credentials it should connect to the testServlet but I get
    an IOException at the line
    ObjectOutputStream out = new ObjectOutputStream(conn.getOutputStream());
    saying 'Server returned code 500 for the url http://localhost:80/test/testServlet.class
    I am using the following lines of code
    conn = servletURL.openConnection();
    conn.setDoOutput(true);
    conn.setUseCaches(false);
    conn.setRequestProperty("Content-Type", "application/octet-stream");
    ObjectOutputStream out = new ObjectOutputStream(conn.getOutputStream());
    This code use to work fine with Java 1.5 but it doesnt work after the upgrade.
    I am not sure if it is a Java problem or IIS or Weblogic.
    Please help
    Thanks,

    885522 wrote:
    I have an applet which connects to a servlet.I have just upgraded from Java 1.5_06 to Java 1.6_027.
    I have a login.html which opens up when i hit the url http://localhost:80/test/testlogin.html.
    The IIS 7 opens this page and then when I provide login credentials it should connect to the testServlet but I get
    an IOException at the line
    ObjectOutputStream out = new ObjectOutputStream(conn.getOutputStream());
    saying 'Server returned code 500 for the url http://localhost:80/test/testServlet.class
    I am using the following lines of code
    conn = servletURL.openConnection();
    conn.setDoOutput(true);
    conn.setUseCaches(false);
    conn.setRequestProperty("Content-Type", "application/octet-stream");
    ObjectOutputStream out = new ObjectOutputStream(conn.getOutputStream());
    This code use to work fine with Java 1.5 but it doesnt work after the upgrade.
    I am not sure if it is a Java problem or IIS or Weblogic.
    Please help
    Thanks,Well, HTTP 500 is Server Exception, look at the server logs and find out why it threw a 500.

  • What is the path in the filesystem for the deployed Wendynpro application .

    What is the path in the filesystem for the deployed Wendynpro application in the WAB AS
    We have a different version of webdynpro application running in production and non production , what is the process for overwriting the deployed application from one enviorment to another.
    Please help..

    Hi,
    What is the path in the filesystem for the deployed Wendynpro application in the WAB AS
    If you search for your component under the /usr/<SID> folder
    We have a different version of webdynpro application running in production and non production , what is the process for overwriting the deployed application from one enviorment to another.
    If you have NWDI in place CTS would help in this, else you can deploy your application using sdm.
    in CE you can deploy the application from NWDS.
    Regards
    Ayyapparaj

  • The precondition on the request for the URL / evaluated to false

    Hi,
    I get error message when connect on secure 443 port:
    "The precondition on the request for the URL / evaluated to false."
    Problem in:
    <Location />
    SetHandler weblogic-handler
    WLExcludePathOrMimeType /DocumentServer
    </Location>
    It works in httpd.conf, but does NOT work in ssl.conf
    We are using WL8.1 and Apache 2.0.48
    Thanks,
    Oleg.

    Have you looked at the support pattern for SSL and Web Server plug-ins?
    https://support.bea.com/application_content/product_portlets/support_patterns/wls/SSLAndPlug-inPattern.html

  • I installed LR CC , but when i try launching it flashes & it is gone. I tried the solution in the Adobe Site - which says search for the folder Library/Application Support/ Adobe/ Sl Store ...., but i can't seem to find the SL Store or SLCache folders ( i

    I installed LR CC , but when i try launching it flashes & it is gone. I tried the solution in the Adobe Site - which says search for the folder Library/Application Support/ Adobe/ Sl Store ...., but i can't seem to find the SL Store or SLCache folders ( i use the Mac). Only then can i apply the solution. I just cant seem to find the folder in the first place

    That did not work for me & as per adobe site help if signing out does not help- we are supposed to go the above folders & do some additional steps, but i could not find the folders & hence the question

  • How to disable u201Csticky sessionu201D for the particular web application?

    Hi All,
    Is there a possibility to disable so called u201Csticky sessionu201D for the particular web application? We have deployed a WAR file with the Axis 1.4 based web service into SAP NW 7.1. The web service works fine but when the client makes SOAP request the server creates a so-called u201Cstickyu201D HTTP session with the default (30 minutes) timeout. Such u201Csessionsu201D are created on each SOAP request from the same client. The maximum number for Java Web Sessions (SAP Management Console) is 1000. After a while the clients start getting the u201C503 Service not availableu201D errors:
    503 Service not available.
    Error: -6
    Version: 7010
    Component: ICM Java
    Date/Time: Tue Mar 03 14:30:12 2009 
    Module: http_j2ee2.c
    Line: 1166
    Server: XXXXXXXXXXX
    Error Tag:
    Detail: server overload: no more sessions available
    The only way to improve the situation we found so far was to set session timeout to 1 minute. That u201Csticky sessionu201D will still be created, though.
    This is a testing environment and we do not use any hardware/software loadbalancer. 
    Any help/advice is appreciated. (Please let me know if you need more information.)
    Thanks,
    Dmitry Vasilenko

    The practical workaround we finally come up with for this problem was to create a servlet filter and map it to the AxisServlet. The servlet filter will invalidate the HTTP session and effectively destroy the sticky session created by the server on each SOAP request.
    Here is the fragment from the web.xml
    <filter>
      <filter-name>StickySessionFilter</filter-name>
      <filter-class>com.xxxxx.xxxxx.xxxx.services.StickySessionFilter</filter-class>
    </filter>
    <filter-mapping>
      <filter-name> StickySessionFilter </filter-name>
      <servlet-name>AxisServlet</servlet-name>
    </filter-mapping>
    <servlet>
      <servlet-name>AxisServlet</servlet-name>
      <servlet-class>org.apache.axis.transport.http.AxisServlet</servlet-class>
    </servlet>
    The doFilter() method looks like this:
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
           try {
                  chain.doFilter(request, response);
           } finally {
                         javax.servlet.http.HttpServletRequest httpRequest = (javax.servlet.http.HttpServletRequest)request;
                         javax.servlet.http.HttpSession session = httpRequest.getSession();
                         session.invalidate();
    Thanks,
    Dmitry Vasilenko

  • How to search for the url in a hyperlink.

    Is it possible to search a PDF and find the url in a hyperlink? According to Adobe, no! But is there some third party software?
    We are attempting to find a url in many PDF's but the hyperlink could have many different naming styles. Is there a way to search for something like referral=4320 where that is in the url http://www.example.com?referral=4320&test=1

    If this url is a part of the running text of the PDF (by that I mean that
    you can actually see it in when opening the file), then yes, it's quite
    possible to write a script that will find it.
    If it's a part of a link (meaning it's not visible on the PDF), then it can
    only be achieved with a plugin or an external application.

  • Alias for Nakisa URL

    Hi,
    our OrgChart runs on SAP portal (url placed directly in iView) under reversible proxy-server. This proxy replaces actual URL in calls from OrgChart with it's own. Then OrgChart fails to launch, getting java-errors in files:
    https://<Proxy address>/OrgChart/Scripts/xmlhttp.js
    https://<Proxy address>/OrgChart/validation.jsp
    https://<Proxy address>/OrgChart/Scripts/xmlhttp.js
    How to set alias for proxy server name in OrgChart?
    Regards,
    Sergey Aksenov
    Edited by: Sergey Aksenov on Dec 2, 2011 11:58 AM

    Hi Sergey,
    You cannot set the Proxy settings in OrgChart. You might be able to set Proxy settings in NWCE, but for that I would post the question in the [Portal Implementation Forum|The specified item was not found.;. If you leave the thread open please post any solution you get from the other thread.
    Best regards,
    Luke

  • Short form or Alias for the long PCD location

    Hello Everybody,
    We have created some iViews, pages and roles in EP.
    Roles have long pcd ID. like:
    pcd:portal_content/com.<company name>.<root folder>/<sub folder ID>/<Role name with prefix>
    I am using this full text to point to the correct UM role in UWL configuration. This is very long. Can I assign any alias or short name like, portal_requestor so that I can use only "portal_requestor" to point to actual UM role?
    Please help me.
    Thanks,
    Bhavik

    Thanks for the response.
    But, i tries providing quick link in the role name field. But it doesn't recognize this quick link. It gives error saying, invalid UM role.
    Short URLs and Quick links are the options using which we can access any iViews or pages through browser with short url.
    But, my issue is, how can I specify role name with such short form in Portal at design time.
    If you go to System administration -> system configuration -> Universal worklist & Workflow -> Universal worklist - Administration, You will get a table for Universal worklist Systems.
    Try to edit any one system over here. You will get one field called User roles. This is the field where I want to specify different roles for which this UWL system should be used. But, those roles names with prefix are too long. I need some alias or short form for role to specify over here.
    Hopefully, now requirements should be clear.
    Thanks,
    Bhavik

  • How to create a pdf for the URL attached to an invoice and send it as an attachment in a mail

    HI,
    I have requirement where i need to get the URL attached to an invoice, create the pdf and send as an attachement in a mail.
    The URL attached to an invoice can be seen by following the path : VF03-> Billing document->system->Services for object ->Attachement list.
    On searching through existing forums, i found that there is a table 'SRGBTBREL' which stores relationships of GOS object. On giving the invoice number in field 'INSTID_A', i could find an entry in this table.
    To get the content, i used the class CL_FITV_GOS, method GET_CONTENT. To this method i passed following values:
    IV_ATTA_ID = FOL21000000000521URL39000000000012 (The value if field INSTID_B from table SRGBTBREL)
    IV_OBJTP   = 'URL'
    On execution, i get URL link but the content table is empty.
    Could anybody provide some input on how i get the content? Or may be how i can create pdf from the URL link and attach it to mail as an attachment?
    Thanks,

    Hi Amit,
    Solution provided by you is working when the link length is one line but it is not working for more than one line
    Eg: say link is https://......80 [80 characters long]
    I will give    <a href="https://...72            [in first line]
                     73..80">click here</a>         [in second line]
    I will get the output as 73...80">click here
    But i want only CLICK HERE in my output..
    Please suggest solution.
    Thanks,
    Kavya

  • Corresponding BAPIs for the respective Webdynpro applications

    Hi All,
    We are on EP7,ECC 6, ESS BP1.2 enhancement package. Configured the NWDI and how do we know which BAPI is being called.
    Scenario:
    In the Bank Information application,
    User can perform three actions : Enter, change and delete the bank details.
    First we need the list of BAPI’s through which this three feature are called by the WDP application.
    ( When ever there some modifications are done in the application, here they are goin to create a ZBapi which is goin to trigger a workflow… and send the notification for approval of mail to his manager)
    Second : once this operations are done , user clicks on save( or any submit button ) it should prompt a message saying “ Information sent for approval “ instead of “ Data saved”
    Guide me what needs to be done here …
    Thanks,
    NR

    Dear Nazeer,
    As suggested by Chris, follow the steps using system trace st01.
    Select the Trace components (RFC Calls etc), Click on general filters ->>> trace on for the user which you would test ESS application.
    Hope your Basis Guy can help you better.
    Regards,
    Anil Kumar

  • Using Alias for the table column

    Dear all,
       Can we use alias name for the table column while developing zreport.
    ie.,
      without using standard  table column name ( like mara-matnr ), i wish to use mat_num for matnr. So that, one can easily understand the column.
    Could you help me out in this regard.
    Thanks in Advance,
    S.Sridhar.

    yes you can declare in ur internal table like
    material_number like mara-matnr.

  • SSL Server socket: controlling the alias for the server certificate ?

    Hi,
    Could anyone please clear up the following ?
    When you create an SSL server socket, it needs a certificate (to prove its identity), and for this it relies on a keystore:
    System.setProperty("javax.net.ssl.keyStore", "c:/mystore");
    My question is, what if the keystore contains several certificates ?
    Eg:
    keytool -import -alias AAA -file cert1.cer -keystore mystore
    keytool -import -alias BBB -file cert2.cer -keystore mystore
    Which certificate would the server use ?
    And is there a way to control the alias it would use ?
    Thanks :)

    This is a very good question and one that should be described in the Guide to Features. See javax.net.ssl.X509KeyManager.chooseServerAlias(). It does a search looking for aliases of a given key type, i.e. one of the ones the peer understands, & which are trusted by the peer. Any alias which the peer can accept will do.

  • SSO for some SAP Apps, but forced login for the sensitive data application

    We have R/3 4.7 (Enterprise), with EP 6.0 and Web AS 6.40.  We have implemented Employee Self Service, as well as CRM, and some BW reports through EP 6.0.  We have a Broadvision Portal that is on top of EP 6.0.  In other words, the employees login to the Broadvision Portal, and authenticate against our Active Directory user store.  Then they will choose the SAP apps listed above, which go through the SAP Portal (EP 6.0)
    We want to allow SSO through EP when users choose either CRM, or BW reports, but we want to force a login when they choose ESS, since this data is more sensitive.  The problem we have had is that when we turn on SSO, it allows the user through for all 3 SAP apps.  My question is: How can we force a login for just ESS, but not for the other 2 apps.
    Thanks.

    Rick,
    I suppose, Eric meant Authentication Schemes ("authschemes") instead of security zones.
    An authentication scheme is essentially a pointer to a JAAS logon stacks on the J2EE Engine plus a frontend ("login screen"). Authentication schemes are assigned numbers ("priorities"), the higher the number the more trustworthy the authentication of the underlying JAAS stack is regarded.
    Example:
    Let's assume you use the default authscheme "uidpwdlogon" for all your iviews. It features a password-based or SAP logon ticket-based logon and is assigned a value of 20. All iviews that have this authscheme set in its "authscheme" property are accessible for you without any further authentication once you have passed this scheme (or any other authscheme with a priority <= 20).
    Now, you set one individual iview to use authscheme "certlogon", which requires an X.509 certificate and is valued "21". When accessing this iview, the portal will force a re-authentication (as 21>20).
    By configuring custom authschemes and JAAS logon stacks you can easily implement your scenario. Simply ensure that all your ESS iviews will be using an authscheme with a value greater that your default value.
    Regards,
    Dominik

  • Is there an easy way to securely delete everything on my macbook PRO except for the OS and applications?  Giving my old Macbook to a family member.

    Is there an eay way to securely erase all information on my macbook Pro except for the OS and applicatios?  I'm donating my computer but want to eliiminate my files and info.

    Yes, boot to your install disk (start up while holding C key).  Go to Utilities>Disk Utility.  Choose erase and format your disk (make sure it's formatted as Mac OSX extended journaled).  There's is a button for security options.  Choose the 0 option (don't choose the multiple pass versions, or it will take forever, but that's extra security).  The 0 option writes a 0 in every location on the drive, and it takes a few hours.  It would take CIA or highly skilled hacker abilities to dig out any information.
    Once you wipe the disc, reinstall OSX.  You're done.

Maybe you are looking for

  • Conversion Codepage Unknown

    Dear Team, pls find the short dump and help me out Runtime Errors         CONVERSION_CODEPAGE_UNKNOWN Date and Time          17.11.2008 11:57:29 ShrtText      Unable to convert from code page '1200' to code page '1100'. What happened?      Error in A

  • Need help downloading Adobe Acrobat X Pro

    I purchased Adobe Acrobat X Pro & have an empty disc cover, i cannot locate the disc and need to reload teh software to my PC after a system refresh. I cannot locate the dowload under My Order History or My Download History. Can anyone assist?

  • Date Formatting error in JDBC adapter

    Hi, While inserting date using a Receiver JDBC Adapter i am getting a "Month not valid" error can anyone please tell me how do i pass date in the required format. Database is Oracle.

  • I Just backed up my newer i phone but when i plug in my older i phone to back up it won't recognize it

    just backed up my i phone 5c. but when i plug my older 4s it does not recognize it

  • Table's field increases when displaying contents

    Hi Experts, I need to show the Title along with the name. Following statement gives me the error: gv_title type tsad3-title_medi title_medi does not exist in the table tsad3. As you can see, there are 7 fields in the first screenshot and 8 fields in