Is it possible to change the URL of an application?

Hi All,
          I was working with the oracle apex and created few applications almost a year back, due to my higher studies there is a gap with the tool..and finally I am in.
Am planning to create an application which will be similar like a personal website.My doubt here is ..whether it's possible to change the URL by keeping a simple one which includes my name also
instead of having this big..
http://apex.oracle.com/pls/apex/f?p=10221:1:116416608594529
I can understand that the whole URL describes the appln no,page no and session ID but its my doubt possible or not..If possible then how to proceed?
Thanks
with Regards,
Ramya.

My doubt here is ..whether it's possible to change the URL by keeping a simple one which includes my name also
instead of having this big..
http://apex.oracle.com/pls/apex/f?p=10221:1:116416608594529
I can understand that the whole URL describes the appln no,page no and session ID but its my doubt possible or not..If possible then how to proceed?
If you are just looking for a nice and short URL to start your application, why not just use a URL shortener service like goo.gl ?
Just put in your long URL and it will create a nice and short URL for you... for example, the above URL is now http://goo.gl/FijYxn
- Morten
http://ora-00001.blogspot.com

Similar Messages

  • Is it possible to change the URL of an iTunes Podcast page itself (NOT the Feed URL)?

    My company has an usual question:
    While keeping all the individual podcasts the same, and the subject matter of the whole podcast series the same, my company would like to change the URL that Apple iTunes has assigned us.  Is this possible, and how can it be done?
    Again, I am talking about the URL that Apple iTunes has assigned us.  The one that begins:
    http://itunes.apple.com/us/podcast/career-...
    We are having a small change in marketing emphasis.  So my company wants to change one of the dashed English words in the URL, after:
    http://itunes.apple.com/us/podcast/
    These English words were based on the original title of our podcast.  The original title of our podcast has changed slightly, with no problem.  Now my company just wants to change the URL assigned to us by Apple.
    Let me emphasize: There is no purpose of misdirection, evasion, or deceit here -- not in the slightest.  My company is simply taking a different marketing angle.  Our category is staying the same.  The podcasts themselves are staying the same.  My company would just like to update the URL assigned to us by Apple to reflect our new podcast series name.
    ALSO:
    We are a category-leading, very popular podcast.  If we do change our iTunes podcast URL, we do not at all want to jeopardize our leading status in our podcast subject category.  We want all our download stats to move with us over to the new URL.  This is extremely important to us.
    AND FURTHER:
    If we do change our iTunes podcast URL, we want all our listeners to automatically find us at the new URL.  We don't want any of them to lose their subscription because we changed our URL.
    So in summary:
    1. CAN we change our podcast URL (the one assigned to us by iTunes)?
    2. Can we change the URL, but still keep our category-leading position and stats, exaclty as they are now?  That is, will our old download stats move with us to the new URL, so we can retain our category-leading position?
    3. Will podcast listeners going to the old URL automatically be forwarded to the new URL?  Might any of our current listeners become unsubscribed as a result of the URL change?
    I know this is an unusual, complicated, and multi-part question.  I am looking for definitive, authoritative answers to all these questions.
    Thank you very much for your help!!
    David

    You can omit the title altogether in the URL (together with the succeeding slash, of course). For example, my own podcast URL in the Store is
    https://itunes.apple.com/gb/podcast/the-sound-of-78s/id166389425?mt=2
    but this works perfectly well:
    https://itunes.apple.com/podcast/id166389425
    Indeed you can even put your own title:
    https://itunes.apple.com/podcast/any_old_title/id166389425
    So it's as simple as that!

  • Is it possible to change the URL of the browser corresponding to changes in the timeline?

    Hello,
    I'm trying to create a whole website in Edge. Is it possible to change the browser URL for different sections of the animation. For example me.com/part1 leads to 2.0 seconds in the animation. And for example when you type me.com/part2 the browser would go to 4th second of the animation. And vice versa, when the animation reaches the 4th second the browser URL would change to me.com/part2. It would be really great if that were possible. Any ideas on how to accomplish it?
    Thanks!

    Hi there, Joel's example seems to be exactly what you're trying to do. All you need to do is replace his functions with your functions.
    There are two main parts to his example: 1) reacting to a URL change directly in the URL bar, 2) reacting to a button click, and setting the URL
    Regarding Item 1: this line (this adds a listener for when the URL hash is changed, and calls the 'sym.animate' function in his example). Note that he is linking the value after the # with the symbol names 'panel1', etc. This line enables the functionality for you to be able to directly change the URL to: testStep95.html#panel2, and the site will change pages.
    $(window).on("hashchange", function(){sym.animate(location.hash.replace("#",""), sym.onStage)});
    Regarding Item 2: he's setting the page title (based on the active panel symbol) and URL hash, in the  'sym.animate' function. He calls the 'sym.animate' function on click of btn1, btn2, btn3:
    document.title = panelIn;
    window.location.hash = panelIn;
    Props to Joel for his slick example!

  • Is it possible to change the URL of displaytag's sortable function?

    Basically, I've got a jsp page with the displaytag code on it such as:
    <display:table name="result">
    <display:column sortable="true" property="title" />
    <display:column sortable="true" property="author" />
    <display:column sortable="true" property="status" />
    <display:column sortable="true" property="location" />
    <display:column property="image" />
    </display:table>
    The way it loads the data is that in a servlet, a line of code creates the arraylist called "result", and passes that through the HTTP header onto the jsp. The jsp gets it and displaytag handles it. However, whenever I click one of the sortable headings, none of the data is found because the jsp currently needs to have the arraylist sent to it from a servlet. Clicking a sort link doesn't go through a servlet, just adds some arguments.
    Is there a way to change the sortable URL to go back through a servlet and then add the sorting code (which is something usually like ?d-49653-s=0&d-49653-o=2&d-49653-p=1)?
    Thanks
    Ed

    Hi there, Joel's example seems to be exactly what you're trying to do. All you need to do is replace his functions with your functions.
    There are two main parts to his example: 1) reacting to a URL change directly in the URL bar, 2) reacting to a button click, and setting the URL
    Regarding Item 1: this line (this adds a listener for when the URL hash is changed, and calls the 'sym.animate' function in his example). Note that he is linking the value after the # with the symbol names 'panel1', etc. This line enables the functionality for you to be able to directly change the URL to: testStep95.html#panel2, and the site will change pages.
    $(window).on("hashchange", function(){sym.animate(location.hash.replace("#",""), sym.onStage)});
    Regarding Item 2: he's setting the page title (based on the active panel symbol) and URL hash, in the  'sym.animate' function. He calls the 'sym.animate' function on click of btn1, btn2, btn3:
    document.title = panelIn;
    window.location.hash = panelIn;
    Props to Joel for his slick example!

  • Is possible to change The URL of a SAP Portal ?

    I have a large URL for a SAP Portal. 
    http://sikpbj.grup-sig.corp:52100/irj/portal
    The end-user wants a short URL.    http://BI_Estrategico
    I don´t have experience with Portals
    Somebody could help me, pls,
    What i need to do ?
    Message was edited by:
            Carlos Trujillo

    Hi,
    By default, URLs in the portal are shortened, with the navigation target converted (hashed) into a short GUID.
         http://myServer:54000/irj/portal 
    NavigationTarget=ROLES://portal_content/every_user/general/eu_role/com.sap.portal.portal_personalization/com.sap.portal.persoUserMapping.
         A short version of the URL might be the following, with the navigation target hashed and shortened:
    http://myServer:54000/irj/portal?NavigationTarget=navurl://b3d6d9ebac16a46574d62757803b05d4
         Go to SystemAdministration->Navigation->ShortUrls(it is in detailed navigation area)->from here you can select Short URLs for custom roles.
         Give the Shorturl as NavigationTarget.
    Refer this blog
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2452">Short URL</a>
    You can also use Quick links for iView and pages
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2452">Quick Link</a>
    Regards,
    Hemalatha
    /Assign Points if helpful/

  • Repoint or change the URL for an application

    Hi,
    I have deployed an application (Java based) via OC4J using Oracle application Server ,
    URL Application : http://200.100.11.232/test
    Enterprize manager URL : http://200.100.11.232
    Can you tell me how I can point http://200.100.11.232/test to the test application instead of the enterprise manager home page. I want to use Enterprise manager URL to run the application , Advise needed Please.
    best regards

    changing mod_oc4j.conf could help as well using virtual hosts with Rewrite in httpd.conf could do the work.
    Hope this helps.
    Greetings.

  • How to change the URL

    Hi All,
    I have created a web dynpro application and now I  need to change the URL of this application to some basic message type URL for eg:
    let's say our URL is "http://testdoc/post?mssg" and I now want to change this to as "OPEN DOCUMENT" and when user clicks on ""OPEN DOCUMENT" it will still direct to the original destination that is our original URL.
    Thanks,
    Rajat

    I used the following syntax:
    <A href="http://forums.sdn.sap.com/">display SDN</A
    >
    Edited by: rajatg on Oct 6, 2010 4:43 AM

  • When creating a custom SearchPlugin, is it possible to add more code such as uppercase conversion of the SearchText and IF statements that change the URL depending on what is typed?

    When creating a custom SearchPlugin, is it possible to add more code such as uppercase conversion of the searchTerms and IF statements that change the URL depending on the searchTerms? Every time I try to add something firefox doesn't want to add it as a search plugin. I need to create a more powerful search tool for personal use.

    I've found some external software applications that will do it, so that leads me to believe its not possible within ID CC.

  • Is it possible to change the default URL when creating new hyperlinks?

    I'm currently working to take a 128 page catalog that was created in InDesign for print and turn it into a interactive PDF to post on our companies website. The catalog contains thousands of part numbers and I'd like to link each one to its corresponding stock status page on our website that gives current availability and pricing for any particular customer.
    So say I'm dealing with part number "XXXX". When I go to add the hyperlink the default web address it spits out is " http://XXXX ". Instead of that, would it be possible to change the default to " http://forums.adobe.com/discussion/XXXX/1 ". Obviously I just used this website as an example, but it would save so much time if I could avoid having to type the exact same URL every time.
    Or maybe is there a quicker way to do this other than what I am currently trying?
    Thanks

    I've found some external software applications that will do it, so that leads me to believe its not possible within ID CC.

  • Is it possible to change the timeout url?

    Hello,
    When I am inactive for a while on ucm, it gives me a timeout (my timeout is defined for 3600 sec) and redirect me to the login page (http://server/cs/login/login.htm).
    Is it possible to change this url?
    Maybe, I want the redirect goes to http://server/cs/
    Thank you,
    Edited by: 900661 on 12/Dez/2011 2:31

    Hi
    If you have any SSO solution integrated for eg OAM then the logout url can be changed .
    Apart from that on default installations check under the Deployment - Content Server UCM to see if the logout url option shows up .
    Thanks
    Srinath

  • Is it possible to change the colors of the tabs in the pannelTabbed comp

    Hi Experts,
    Is it possible to change the colors of the tabs in the pannelTabbed component.
    suppose for the selected tab we need white color and non selected we need brown color.
    How can we achive this using ADF.
    Regards
    Gayaz

    [url http://download.oracle.com/docs/cd/E14571_01/web.1111/b31973/af_skin.htm#BAJFEFCJ]skinning

  • RoboHelp 10 - Is it possible to change the TOC icon for just one "book" in the TOC. See the attached screen shot.

    In my current Help project, I have one set of topics that are specific to use of our product in one country.  I would like to change the TOC icon for the specific book without changing all of the "purple book" icons.
    Thanks.

    Whether you can do this depends on how much time you are willing to invest. The easy answer is 'no'.
    Having said that, it is possible to change the script to change the icon for a specific page. For this, you need to change the output files and you must create an exception to the regular mechanism. Best of all, you need to hard code the topic title/url to do this. This is a typical case of 'I offer consultancy for these kinds of things'. PM me if you want to know more.
    Kind regards,
    Willam

  • Changing the URL used in BPC 7.0 Installation

    Hi,
    We had a new server NLB environment installed by SAP tech services, unfortunately he is not available at the moment.
    The installation was done using a temporary URL
    Now we have made this the productive system this temporary URL is appearing in a number of places in the system.
    Looking at the SAP BPC server manager the temporary URL has been used in the installation.
    Is it possible to change this URL through the server manager?
    Regards,
    Mark Sapey

    You have to protect the report before distributing it.  This is done under Etools-->Workbook Options within the template being distributed.  Set the password here and BPC will lock the workbook before distribution.  If you do not set the password in the workbook you will get an error.

  • Is it possible to change the number of weeks to be displayed in the month view in calendar (mavericks)?

    I'd like to know if it's possible to change the number of weeks to be displayed in the month view in calendar? Thanks!

    No.
    There are up to six calendar weeks that might be used to display the 31 possible days in a month.
    So the month view displays six weeks.

  • How to change the URL of a URL-iView over Code ?

    Hi all,
    i am getting started with the Portal-Application-Developement and want to change the URL of an URL-iView on runtime with java-code.
    i have read the context and can get the Property url with this statement.
    endContext.getProfile().getProperty("url")
    But if i change this property, nothing is done.
    endContext.getProfile().setProperty("url", "http://www.yahoo.com");
    Where is my fault.
    Thanks for help.
    Regards Jürgen

    Hi,
    the context is of Type IPortalComponentContext.
    I cant find no method getParameter() at the context or the profile.
    The methods to read the properties of the URL-iView are
    context.getProfile().getProperty("url")
    context.getProfile().getAttributeValue("url")
    But if i want to set (change) this attribute, nothing is done.
    Regards Jürgen

Maybe you are looking for

  • Officejet Pro 8600 Plus - Apps Error - 'Connection Error'

    Hi, Newbie question maybe, but it's got me a little stumped. I've an HP Officejet Pro 8600 Plus on a wired connection to my Sky router/ADSL modem, using a static IP. when I go into Apps it pulls down a list of the installed Apps OK, but when I select

  • Anyone knows how to use toFixed(int) in jsp??

    Currently, i want to make a string variable to have a fixed decimal point. I intend to use toFixed(int) this method but it gave me errors.. (method toFixed(int)not found in class java.lang.String) What should I do?? Anyone can give me some ideas?

  • Should I keep replacement SIM card?

    Just replaced my 4s for technical problems with the same model (insurance claim)  The new phone came with a SIM card, which I replace with the one from my old phone, is this other card any good for anything? The directions say they just want the old

  • IPhone not charging via USB

    I just got this weird problem today. I have a 2G iPhone running 2.2 1. iPhone is not charging with the USB cable to my MacBook and not recognizing by iTunes, thus I can't sync anymore. 2. I can use the same USB cable to charge the iTouch from my MacB

  • Problems deploying printers

    Hi, I've some bizarre problems when deploying printers, so I just hope you can give me few hints on where or what to check here. We've one domain, 2 DC (older, physical dc is 2003 and vm one as 2008r2). We've 2 print servers (2008R2) and a new one i'