Help with mapping the mod_plsql path with Apache

Hi,
I need help with mapping my pl/SQL Handler path.
Currently i have an URL like this :
http://myhost.com/pls/DADUSER/PLSQLPROC?param1=123
But I need something like :
http://myhost.com/d/PLSQLPROC?param1=123
I tried to rename the "Location Handler" from "pls" to "d", works great, but it always appends my Default DAD User to the URL.
And I tried to map my PL/SQL Handler to "/" and create a DAD User called "d" and set it to default. Didn't worked...
Any help is appreciated....
Bye,
Oliver
null

Oliver,
try to use the rewrite directive or the
rewrite engine (mod_rewrite).
Please see the Online documentation for how
to do this:
http://technet.oracle.com/docs/products/ias/doc_library/1021doc_otn/comm.102/a87562/apptroub.htm
Hope it helps
-Stefan

Similar Messages

  • How can I map the composite_dn name with a composite in run time

    Hi All,
    I want to craete a report on number of total business and system faults with the help of Information Publisher in OEM 12c Cloud Control. I am fetching data from the table composite_instance_fault present in SOAINFRA schema. Below os my SQL statement:-
    select error_category,count(error_category) from prefix_SOAINFRA.composite_instance_fault where composite_dn=??EMIP_BIND_TARGET_GUID?? group by error_category
    Now I want to know that how can I map the composite_dn name with a composite in run time. When we fetch data from the repository we used to map target in rumtime by using ??EMIP_BIND_TARGET_GUID?? but here as I am not fetching data from repository, how can I map target in run time.
    On executing the above SQL statement its returing an empty table without any data.
    Please guide!!
    Thanks in Advance!!

    Hi,
    try something like this.
    Mike
    Attachments:
    Unbenannt 5_LV80.vi ‏12 KB

  • Search help is populating the input field with wrong data

    Hi Guys,
    I have created a ZCITY table for which has below 2 field
    ZZCITY (Code ) (5 Char) u2013 Key field
    ZZNAME (City Name ) (40 Character)
    I have added a custom field ZZCITY & ZZNAME in CI_CATSDB. Funtional guy has configured to make ZZNAME as  VISIBLE  and ZZCITY is HIDDEN on CAT2 screen in Data Entry area.
    I created search help on table ZCITY with export parameters as  ZZCITY and ZZNAME.
    In SE11, I have mapped the export parameters with CI_CATSDB
    Now in tcode CAT2, when I press F4 on City Name field, the list is displayed with City code and City names. And when I select any city code, the ZZNAME is populated by City code instead of City name.
    I want that City Name should be populated in ZZNAME and City Code should be populated in hidden field ZZCITY.
    Please tell me how I can fix this problem.
    Thanks in advance.
    mini

    Hi
    Try selecting the Improting Check box aswell. if a screen field is hidden or display mode we can not use F4 help for that field.
    you can also take the help of DYNP_READ_VALUES to get the selected value before PAI
    Check whats happening in Debug.
    Cheers
    Ram

  • Problem with mapping the Entity beans onto database tables

    Hi,
    I got a problem with mapping the Entity beans onto database tables. Here are what I did:
    First Step:
    asant capture-schema
    Second Step:
    capture-schema -driver com.pointbase.jdbc.jdbcUniversalDriver -dburl jdbc:pointbase:server://localhost/sun-appserv-samples -username pbPublic -password pbpublic -table APPLICANT -table APPLICANTSKILL -table CUSTOMER -table LOCATION -table job -table JOBSKILL -table SKILL -out build/agency.dbschema
    The first step was fine. But, in the second step, I got the error message as follow:
    using dburl:jdbc:pointbase:server://localhost/sun-appserv-samples
    using username:pbPublic
    using password:pbpublic
    using driver:com.pointbase.jdbc.jdbcUniversalDriver
    using schemaname:null
    using output file:build/agency.dbschema
    JDO71100: Failed to find a class. Verify that the class is available on your CLASSPATH
    java.lang.ClassNotFoundException: com.pointbase.jdbc.jdbcUniversalDriver
    at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:141)
    at com.sun.forte4j.modules.dbmodel.jdbcimpl.ConnectionProvider.<init>(Co
    nnectionProvider.java:38)
    at com.sun.jdo.api.persistence.mapping.ejb.CaptureSchema.main(CaptureSch
    ema.java:130)
    at com.sun.jdo.spi.persistence.support.ejb.util.CaptureSchemaWrapper.mai
    n(CaptureSchemaWrapper.java:29)
    Thanks for your help!

    You need to add the pbclient.jar or some similar name like that, in the CalssPath.

  • CONM7007I: Mapping the following SQLException, with ErrorCode -901 and SQLS

    When I execute a Query it throws
    CONM7007I: Mapping the following SQLException, with ErrorCode -901 and SQLState 58004, to a StaleConnectionException: java.sql.SQLException: [SQL0901] Error del sistema SQL.
    I am using iSeries DB2 and Websphere V5.
    Thanks for your help.

    Retrying solved my problem:
    StaleConnectionException
    This exception (com.ibm.websphere.ce.cm.StaleConnectionException) indicates that the
    connection currently being held is no longer valid. This can occur for numerous reasons,
    including the following:
    The application tries to get a connection and fails, as when the database is not started.
    A connection is no longer usable due to a database failure. When an application tries to
    use a connection it has previously obtained, the connection is no longer valid. In this
    case, all connections currently in use by an application could get this error when they try
    to use the connection.
    The application using the connection has already called close() and then tries to use the
    connection again.
    The connection has been orphaned because the application had not used it in at most two
    times the orphan timeout; then the application tries to use the orphaned connection.
    The application tries to use a JDBC resource, such as a statement, obtained on a
    now-stale connection.
    Code that implements retries in case of StaleConnectionException...
    boolean retry = false;
    int numOfRetries = 0;
    java.sql.Connection conn = null;
    java.sql.Statement stmt = null;
    do {
        try {
            //    assumes a datasource already obtained from JNDI
            conn = ds.getConnection();
            conn.setAutoCommit(true);
            stmt = conn.createStatement();
            stmt.execute("INSERT INTO EMPLOYEES VALUES
                    (0101, 'Bill', 'R', 'Smith')");
        } catch(com.ibm.websphere.ce.cm.StaleConnectionException
                sce) {
            if(numOfRetries < 2) {   
                retry = true;
                numOfRetries++;
            } else {
                retry = false;
                //    throw error indicating a connection
                //    cannot be obtained
        } catch (java.sql.SQLException sqle) {
            //    handle other database problem
        } finally {
            //    always cleanup JDBC resources
            try {
                if(stmt != null) stmt.close();
            } catch (java.sql.SQLException sqle) {
                //    usually can be ignored
            try {
                if(conn != null) conn.close();
            } catch (java.sql.SQLException sqle) {
                //    usually can be ignored
    } while (retry);

  • How to map the bulk users with the required  roles in portal at one time

    Hi,
    Would anyone tell me how to map the bulk users with the required roles in portal at one time?

    Thanks for all the reply.
    <b>I need to assign 1 or 2 group to n((eg) 1000)number of users</b>
    I tried the first option like
    [group]
    gid=
    gdesc=
    user=
    Thr problem with this is I could n't put more no of users in the notepad.
    I would be able to put only 150 users in the single line of notepad. If it goes to next line it is not working.
    I tried creating seperate notepad but in Import it says "exists"
    I'm not sure about LDAP. Would anyone explain me the best approach to do this.

  • How i map the caf data with data of UWL in web dynpro

    Hi Experts,
    i created a bpm project with nwce 7.1.1 and it have a independent caf to keep it's data and status.
    now i have to create a view(use web dynpro) such like UWL,
    my question is
    how i map the caf data with UWL, and let the view can open the task(popup a window, just like UWL do) for user to finish their job?
    thanks.

    Hi Vic
    Your requirement is exect functionality of UWL based on WEBDYNPRO, CAF and BPM for automation? ,and question is How to use CAF with WD or CAF with UWL API's ?. please clarify it.
    Please fo through from given doc misght give u some idea
    1. [How to develop Web Dynpro UI for your CAF project |http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417300)ID0722080650DB02400261803144436507End?blog=/pub/wlg/5414]
    Best Regards
    Satish Kumar

  • Mapping the CMP Fields with the Database Table using Websphere???

    Hi,
    How to Map the CMP Fields with the Database Table using Websphere
    thru ejb.jar.xml???
    Thanks,
    JavaCrazyLover

    Hi,
    How to Map the CMP Fields with the Database Table using Websphere
    thru ejb.jar.xml???
    Thanks,
    JavaCrazyLover

  • Get the context path with jspx

    How can I get the context path using jspx?
    with jsp I get using scriptlet
    <%=request.getContextPath()%>but it didn't validate with xhtml
    thanks

    I'm really unfamiliar with JSP Documents and I don't know if nesting the tags would be valid. Why don't you use EL in that case?
    ${pageContext.request.contextPath} will print out the value you need.
    P.S. In case it just prints out as is without being evaluated, take a look at these:
    http://faq.javaranch.com/java/ElOrJstlNotWorkingAsExpected
    http://faq.javaranch.com/java/JstlTagLibDefinitions
    http://faq.javaranch.com/java/SetupJstlForJsp2
    http://faq.javaranch.com/java/ServletsWebXml
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    (Yes I know it's on JavaRanch but I think it applies everywhere)
    ----------------------------------------------------------------

  • How to configure the virtual path with our web listener

    Oracle Apps Version: 11.5.10.2
    Oracle database: 10.2
    platform: Windows server 2003
    while applying developer 6i patch ( 61954129 ) i got following error which says configure the following virtual path for your web listener
    following is the output of forms6iconfig.txt file which oracale suggest to check
    Configuration Steps for Oracle Forms installation of 06:21:33 2010/12/01
    This file gives details of the configuration steps done for you by the installation process
    (marked '[INFO]') and of any actions you need to do manually (marked '[ACTION]'). Please read
    this file and perform the requested actions.
    [ACTION] If you are installing in a new Oracle Home, please reboot the machine after the installation.
    [ACTION] Please configure the following virtual path with your web listener: /dev60temp for
    physical directory D:\CLONE\cloneora\8.0.6\tools\web60\temp.
    [INFO] NT service Oracle Forms Server [Forms60Server] has been created and started for
    the Forms Server.
    [ACTION] Please configure the following virtual path with your web listener: /forms60java for
    physical directory D:\CLONE\cloneora\8.0.6\FORMS60\java.
    [ACTION] Please configure the following virtual path with your web listener: /dev60html for
    physical directory D:\CLONE\cloneora\8.0.6\tools\web60\html.
    [ACTION] Please configure the following virtual path with your web listener: /dev60cgi for
    physical directory D:\CLONE\cloneora\8.0.6\tools\web60\cgi.
    [INFO] An internet shortcut to run a standard test form, or any form of your choice, has been
    created for you in the Oracle Forms program group.
    [ACTION] Please configure the following virtual path with your web listener: /jinitiator for
    physical directory D:\CLONE\cloneora\8.0.6\JINIT.

    Hi,
    while applying developer 6i patch ( 61954129 ) i got following error which says configure the following virtual path for your web listener
    following is the output of forms6iconfig.txt file which oracale suggest to check
    Do you mean (Patch 6194129)? How do you get this error? Is it at the beginning or the end of the installation?
    Configuration Steps for Oracle Forms installation of 06:21:33 2010/12/01
    This file gives details of the configuration steps done for you by the installation process
    (marked '[INFO]') and of any actions you need to do manually (marked '[ACTION]'). Please read
    this file and perform the requested actions.
    [ACTION] If you are installing in a new Oracle Home, please reboot the machine after the installation.
    [ACTION] Please configure the following virtual path with your web listener: /dev60temp for
    physical directory D:\CLONE\cloneora\8.0.6\tools\web60\temp.
    [INFO] NT service Oracle Forms Server [Forms60Server] has been created and started for
    the Forms Server.
    [ACTION] Please configure the following virtual path with your web listener: /forms60java for
    physical directory D:\CLONE\cloneora\8.0.6\FORMS60\java.
    [ACTION] Please configure the following virtual path with your web listener: /dev60html for
    physical directory D:\CLONE\cloneora\8.0.6\tools\web60\html.
    [ACTION] Please configure the following virtual path with your web listener: /dev60cgi for
    physical directory D:\CLONE\cloneora\8.0.6\tools\web60\cgi.
    [INFO] An internet shortcut to run a standard test form, or any form of your choice, has been
    created for you in the Oracle Forms program group.
    [ACTION] Please configure the following virtual path with your web listener: /jinitiator for
    physical directory D:\CLONE\cloneora\8.0.6\JINIT.Please make sure you source the application env file before applying this patch, and select 8.0.6 ORACLE_HOME.
    Thanks,
    Hussein

  • Please help me resolve the many problems with my airport extreme

    Dear Community,
    My Apple Airport Extreme has never worked properly out of the box and I do not understand why. I must be doing something wrong. It is replacing a series of Linksys products which integrated with several Linux and Windows machines, and they worked flawlessly.
    Problem (1):
    Extreme crashes/reboots every now and then, especially when I try to send a lot of data from one machine to another. I assume that I am sending too much data then, and would like to know how I can slow down my data transmission so as to not hurt the Extreme.
    Problem (2):
    Airport Extreme when restarting either on its own or through the software refuses to let previously connected clients reconnect. The problem is probably because of of Windows XP, Windows Vista, and Linux. This causes major networking issues as each individual machine must have its network layer restarted or be rebooted. So I would like to know what I can do to work around these problems in the operating systems.
    Problem (3):
    Airport Utility after a spontaneous dropping of all connections by the Extreme is unable to find "any base stations within range" (it is connected to the base station by Ethernet). Base station and computer were both power cycled, problem remains. Perhaps my ethernet cable is too long and this has made the base station "out of range?"
    Problem (4):
    Apple claimed that I would be able to use a USB 2.0 disk on the Extreme to do backups. When I plug in the USB disk as advertised, the transfer rate is 12% of its transfer rate when plugged into any other hardware. Please let me know which configuration options I need to set on the disk in order to obtain full data transfer rates that will allow me to back up several networked machines in a reasonable timeframe (i.e. less than 3 days).
    Problem (5):
    Please describe to me how to connect to the router with a web browser. Every other router I have worked with allows me to connect with a web browser, and since the Apple software refuses to connect to the base station I am no longer able to configure it as I do not own a shorter ethernet cable that will bring the base station within range of the computer. Since the apple software does not take any obvious arguments that allow me to specify the IP address of the base station, my only conclusion is that I am supposed to use a web browser which will take an IP address to connect. However, when I do this, I get a "page load error." I am confused, because I was told this is an extreme unit, so I thought it had at least industry standard features, therefore I must be the one doing something wrong.
    Your assistance is much appreciated.

    Problems 1 through 4 are the topic of many (often long) past discussions in this forum. Though I hate to say it, I have yet to see anything that comes close to a "solution" for the problems you describe. Sometimes, Problem #3 results from radio interference which might be alleviated by changing the default channel the base station transmits on.
    Unlike every non-Apple router on the market, Apple's Airport Base Station must be configured using Apple's own "Airport Utility" software application. It is not possible to configure an Airport Base Station using a web browser.
    Regrettably, in your case it sounds like you would be better off continuing to use your previous Linksys wireless router.

  • Issue with Getting the file path from InputFile component

    Hi,
    One of our requirement is like below:
    I am working on ADF 11g (latest release R1) page. User will select the file and when he/she clicks on the Save button we need to store the file path in the database.
    In the database file_path is varchar2(300). We need to store just the file path. I am using InputFile component but filepath is not getting inserted.
    This is really urgent. It would be really appreciate if anyone can guide me on this.
    Thanks
    MC

    Hi Mahesh,
    I have manage to store the file path from the InputFile component in Jdev 11g. I found the file upload script from this forum and manage to alter it so that i could save the file path to the database. But my problem is to retrieve it back to view as a document. Hope this will help you :)
    This is an example of what I have manage to save to my DB :
    (CLOB) //192.168.238.53/c$/Research/Docs/0906160744/EyeCandyLog.txt
    In my form, I save the file path first before I update the other fields. My code is something like this :
    public void uploadFile(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    InputStream in;
    FileOutputStream out;
    if(tanda == 0){
    try {
    // final Context context = getInitialContext();
    RS01Proposal rS01Proposal = (RS01Proposal)new InitialContext().lookup("Phase2-RS01Proposal#sr.model.RS01Proposal");
    id = rS01Proposal.dptProposalid();
    tanda = tanda + 1;
    System.out.println("tanda"+ tanda);
    } catch (Exception ex) {
    ex.printStackTrace();
    System.out.println("id"+id);
    proposal = id.substring(6);
    System.out.println("proposal"+proposal);
    UploadedFile file = (UploadedFile)valueChangeEvent.getNewValue();
    String fileUploadLoc = "//192.168.238.53/c$/Research/Docs/"+id+"/";//The place where file will saved
    //create upload directory
    boolean exists = (new File(fileUploadLoc)).exists();
    if (!exists) {
    (new File(fileUploadLoc)).mkdirs();
    if (file != null && file.getLength() > 0) {
    FacesContext context = FacesContext.getCurrentInstance();
    FacesMessage message =
    new FacesMessage("File Uploaded " + file.getFilename() +
    " (" + file.getLength() + " bytes)");
    *// extracting the file message to get the path*
    context.addMessage(valueChangeEvent.getComponent().getClientId(context), message);
    columnL = valueChangeEvent.getComponent().getClientId(context);
    column = columnL.substring(9);
    System.out.println(column);
    columnLengkap = "RS01"+column.toUpperCase();
    System.out.println("columnLengkap"+columnLengkap);
    *try {*
    out = new FileOutputStream(fileUploadLoc + "" + file.getFilename());
    in = file.getInputStream();
    *for (int bytes = 0; bytes < file.getLength(); bytes++) {*
    out.write(in.read());
    in.close();
    out.close();
    } catch (IOException e) {
    e.printStackTrace();
    } else {
    String filename = file != null ? file.getFilename() : null;
    String byteLength = file != null ? "" + file.getLength() : "0";
    FacesContext context = FacesContext.getCurrentInstance();
    FacesMessage message =
    new FacesMessage(FacesMessage.SEVERITY_WARN, " " + " " +
    filename + " (" + byteLength + " bytes)",
    null);
    context.addMessage(valueChangeEvent.getComponent().getClientId(context),
    message);
    System.out.println(fileUploadLoc+file.getFilename());
    a = fileUploadLoc+file.getFilename();
    b = b + 1;
    if (flagInsert == 0){
    try {
    // final Context context = getInitialContext();
    RS01Proposal rS01Proposal = (RS01Proposal)new InitialContext().lookup("Phase2-RS01Proposal#sr.model.RS01Proposal");
    rS01Proposal.insertDoc(id,proposal,columnLengkap,a);
    flagInsert = flagInsert + 1;
    System.out.println("tanda"+ tanda);
    //session
    ProposalSession.storeCurrentProposalId(id);
    } catch (Exception ex) {
    ex.printStackTrace();
    }else{
    // update proses
    try {
    // final Context context = getInitialContext();
    RS01Proposal rS01Proposal = (RS01Proposal)new InitialContext().lookup("Phase2-RS01Proposal#sr.model.RS01Proposal");
    rS01Proposal.updateDoc(id,proposal,columnLengkap,a);
    flagInsert = flagInsert + 1;
    //session
    ProposalSession.storeCurrentProposalId(id);
    System.out.println("tanda"+ tanda);
    } catch (Exception ex) {
    ex.printStackTrace();
    }

  • How to map the font folder with particular instance?

    Hello All,
    I need a quick clarification on one of the requirement in InDesign Server that whether we can map the fonts folder for particular instance say if there are 5 multiple instances, can we map these 5 instances into 5 different font folders? Please advise.
    Thanks,
    Praveen

    Sounds like you need http://helpx.adobe.com/indesign/using/using-fonts.html#document_installed_fonts
    Dirk

  • Need Help in finding the Menu Path's for the below topics

    Hi,
    Where can i get the menu paths for the below topics in SAP syste. I have searched in the system,But couldnot find the Menu Path's for the below topics.Kindly help me in finding the configuration Path for the below...
    1)Public tendering process
    2)Grants Management
    3)Tax & Revenue management
    4)Public sector accounting --> Budget formulation, preparation, execution & Monitoring.
    Thanks
    Rajitha M

    Hi,
    Check for the relevant path in IMG in Public Sector Management.  The prerequisites being configuration of Financial accounting
    sub modules.
    Best Regards,
    Sadashivan

  • Help deciding on the right path...

    Hello, I wrote a children's book for the ipad that has a few animations on each of its 11 pages and I paid a graphic designer to do the page designs for me. I'm really happy with the quality design work but now its time to add some sound effects and code up the animations.
    When the designer was finished I ended up with:
    - backgrounds for each page
    - 8-10 frames for each animated character
    - a .swf file for the developer to use as an example when coding for the iphone, complete with animation
    - the source .fla files
    Originally when I started the project my thought was to get a developer to code it in xcode for the iPad but I've recently learned that Flash 5 can export to iOS formats so I'm wondering wether I should hire a professional flash guy to finish this up for me and then export it or hire a iOS developer to code it in xcode.
    Can anyone give me feedback on what which be the better way to go? Are there any negatives to exporting to iOS format with Flash 5? Does it bloat the file size? Is it buggy?
    Thanks,
    -Jordan

    coding in xcode will improve performance and that's important if you have a performance intensive application.  it doesn't sound like you so so that may not be a factor.
    you're then left comparing the cost to pay for a xcode programmer vs the cost to do this in flash.

Maybe you are looking for

  • Status bar turned red

    While I was using my iPad, the status bar at the top (the black bar all the way at the top with the clock) suddenly turned red for a very brief moment.  Out of the corner of my eye, I saw some words there.  But when I shifted my focus to read what wa

  • Which hard drive do you recommend macbook pro mid 2009

    Which hard drive does Apple recommend as a replacement for the MacBook Pro Mid 2009??

  • IOS Signature Settings for Multiple Email Accounts causes crashes and errors

    Hello Everyone, I've been having troubles with iOS email signature for severals years from iOS 4 (?) through iOS 7 on everything ranging from an iPad2, iPad3, IPad Air, and various iPhones.  I'm currently on an iPad Air 128GB WiFi running iOS 7.1.2.

  • FormsCentral Plus vs. FormsCentral w/Acrobat

    What is the difference(s) between the FormsCentral Plus (11.99 mo) and FormsCentral w/Acrobat (19.99 mo) packages?  What additional features would I gain from the 19.99 version?

  • X220 dead ips display - return instructions?

    Apologies if this has been covered somewhere in the forums and I missed it. I have a new X220 with the IPS display and after a couple weeks of use, the laptop display no longer works. The laptop seems fine otherwise, and it works with an external dis