Deployment of static html files (for the documentation of the application)

I'm developing with forms 11g for windows and deploying on linux.
I want to deploy the help docs of my application, which I've already migrated from hlp to html / css.
Now, I would like to know where can I deploy that html files to invoke them with web.showdocument (for example).
To what path is relative the url in the web.showdocument built in?
Can I jar them as I did with the icons?

ok, thanks anyway,
Maybe the problem is with my weblogic configuration, as it is a windows developer workstation.
I'll send instructions to the sysadmin and try to do it in the linux deployment server.
I've tried also with WLExcludePathOrMimeType , as read in the manual this
Note:
When including any user-defined aliasMatch with the prefix /forms/ in forms.conf, add the directiveWLExcludePathOrMimeType. For example, in Linux, when defining the aliasMatch for /forms/usericons in forms.conf, the directive WLExcludePathOrMimeType is defined as following:
AliasMatch /forms/usericons/(..*) "/home/userx/myicons/$1" WLExcludePathOrMimeType /forms/usericons/

Similar Messages

  • Including static html file (WebServer)  with JSP (App server)?

    Hi,
    I want to know how can a static html file that runs on a Web Server (iPlanet) in a JSP that runs on an App Server (WebLogic 6.1).
    What would be the tag used and how the html file is referenced? Is there any other extra settings involved while integrating iPlanet with WebLogic 6.1?
    Responses are highly appreciated.
    Thanks and Regards,
    Madanlal.

    Web servers usually work with the MIME Types. In the mime type settings will determine how a request for a particular mime type is served. Usually HTML, JPG,GIF... are served by the web server itself. A JSP request will be forwarded to the APP Server for peocessing.
    The HTML and the image files need to be in a directory visible to the web server from the document root.
    See the files
    config\mime.types
    config\obj.conf
    under the web server installation directory.
    Refer to the web server's admin guide for more info.

  • Static html file

    How do I access an uploaded static html file thru a url? What directory is this file uploaded to?

    You'll need to explain what you're trying to achieve.
    You can incorporate static HTML in various ways, for example copy and paste (minus header and body tags etc.) into an HTML region, or retrieve from the database (stored as a VARCHAR or CLOB) and htp.p to the browser.
    Or there is a very good 'upload/download' how-to if you want to find out about this aspect also.
    John.

  • Static help files for webGUI transactions

    Hi,
    In an ESS environment we want to use static help files, which should be maintained via the R/3 SE80.
    In the case of existing interent services the solution is obvious, it's simply adding a language specific MIME file.
    But there are transactions, for which an internet service doesn't exist, as they are executed and rendered on the fly via the webgui.
    Is there any simple way to maintain static help files via the R/3 for transactions without an explicit internet service ?
    Regards,
    Christoph Baehr
    IBM Germany

    The static help file is not an attached object, but a language dependent MIME object to an internet service. Generally it is added to an existing internet service using SE80.
    In case of EWTs like PZ02, PZ04, PZ05 etc. there is no internet service as these are easy web transaction rendered on the fly using the standard webgui only.
    I am looking for a way to maintain static help files for these transactions in R/3, which are located after publishing to the ITS at .../mimes/<EWT name>/99/en/info/docu_<EWT name>.html
    Regards,
    Christoph.

  • Does a wrapper html file need to be in the same directory? Need advice

    I'm doing some RnD experiments for an upcoming project and I would like to use Edge.
    What I'm trying to do is load 2 different compsites in a wrapper.html file that is level above the compsites. For instance my setup is
    project/wrapper.html
    project/product1/product1.html
    project/product2/product2.html
    In my wrapper file I have this, but this doesn't work
    <!DOCTYPE html>
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
        <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" charset="utf-8" src="product1/product1_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-68005601 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body style="margin:0;padding:0;">
        <div id="Stage" class="EDGE-68005601">
        </div>
    </body>
    </html>
    But when I move the wrapper.html file into the same directory as product1 and modify .js path and it loads fine? So my question is how do people normally load multiple compsites that resided in a different directory? What is the best method for accomplishing this? If anyone can point me in the right direction please. Thanks in advance.

    You will need to update the new loction for even the product1_edge.js file and the product1_edgeActions.js file in the product1_edgePreload.js file.
    Open up the product1.edgePreload.js file.
    Search for 'aloader'.
    Under this there should be a ' load: "product1_edge.js" '  change it to  ' load: "product1/product1_edge.js" '
    and do the same for product1_edgeActions.js file too.
    Bascially when you update the location of the edge preload file you will have to update the location of the animate assets like the edge file,edge actions,images etc.All these file locations work relative to the html file loading them.

  • Formatting html file for an explain plan.

    Hi,
    I would like to create a formatting html file for an explain plan.
    Oracle 11.2.0.3 on Linux.
    I can't use DBMS_XPLAN.DISPLAY_PLAN beacuse I get the info from the memory cursor and and I can't set the statement_id.
    How can I do that?

    user10931224 wrote:
    Hi,
    I would like to create a formatting html file for an explain plan.
    Oracle 11.2.0.3 on Linux.
    I can't use DBMS_XPLAN.DISPLAY_PLAN beacuse I get the info from the memory cursor and and I can't set the statement_id.
    How can I do that?
    does SQL_ID reside within AWR repository?

  • How to save HTML file with images present in the server to local machine

    Hi all
    In my application i have a option for the user to save HTML files with images present in the server. The HTML file is getting saved but the images are not being saved.
    The code i am using is below :-
    l
                        File fname = new File(filePath);
                        if(!fname.exists())                return;
                        FileInputStream istr = null;
                        OutputStream ostr = null;
                        response.setContentType("application/"+format);
                        response.setHeader("Content-Disposition", "attachment; filename=\"" + fname.getName() + "\";");
                        try { 
                             istr = new FileInputStream(fname);
                             ostr = response.getOutputStream();
                             int curByte=-1;
                             while( (curByte=istr.read()) !=-1)
                                  ostr.write(curByte);
                             ostr.flush();
    Can anyone suggest what i need to do
    regards

    The client should probably parse the html that comes down, and look for <img> links, and request those of the server as well.

  • How do I Open an HTML file for iOS?

    How do I open an HTML file for iOS using acrobat?

    This is a forum for Adobe Reader for iOS. Acrobat doesn't run on iOS. You need to run it on a Mac or Windows computer. In Acrobat, you can choose File > Create > PDF from Web Page to do what you want. You cannot do that in iOS.

  • Sorry I'm new to Final Cut Express. How do you make an image (jpeg file for example) move across the screen slowly as I've seen in many films.

    Sorry I'm new to Final Cut Express. How do you make an image (jpeg file for example) move across the screen slowly as I've seen in many films.

    Neil from bristol wrote:
    … How do you make an image … move across the screen …
    by setting KEYFRAMES
    (read, what FC/e's built-in Help-feature tells about it)
    resize and set pic to start position
    set keyframe
    move playhead in timeline to desired length
    set pic to end position
    set keyframe …

  • Using Firefox 3.6.20 and Windows XP Home SP3. Firefox sporatically deletes bookmarks from the bookmarks toolbar. Additionally, when I try to import from a saved HTML file, Firefox does not import the complete file. Results are inconsistent.

    Using Firefox 3.6.20 and Windows XP Home SP3. Firefox sporatically deletes bookmarks from the bookmarks toolbar. Additionally, when I try to import from a saved HTML file, Firefox does not import the complete file. Results are inconsistent.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • MS word It prints one file for each section of the document

    With MS word (2004 and 2008)It prints one file for each section of the document.
    somebody can help me with that????

    Please post Office related questions on Microsoft's own forums for their Mac products:
    http://www.officeformac.com/productforums

  • Search file for text and delete the found text.  How?

    I need to know how to search a file for text and delete the found text. I think grep will let you do this but not sure of the syntax.

    Hi Dmcrory,
       In addition to what Camelot and nobody loopback point out, one must also consider the fact that UNIX text tools are largely line based. You also fail to tell us for what kind of text you are searching. If you are looking for multiple words, there's a very good chance of finding the expression wrapped onto different lines. With hyphenation, even single words can wrap to multiple lines. Tools that search line-by-line will miss these unless you use multiline techniques.
       Multiline substitutions require that you write "read-ahead" code for the command line tool that you're using and that you take that into account in the substitution. Given how you want the results to be printed out, you may also want to preserve any newlines found in the match, which is even more difficult. That could bring up the subject of line endings but that's a completely different topic.
       I apologize if this sounds discouraging. Multiline searches aren't needed that often and in most of those cases, exceptions can be dealt with by hand. I just didn't want you to get surprised by it. To give you an idea of how easy basic substitution is, have a look at Tom Christiansen's Cultured Perl: One-liners 102 and One-liners 101. Both have some "in-place" substitution examples.
    Gary
    ~~~~
       MIT:
          The Georgia Tech of the North

  • [svn:fx-trunk] 11193: fix packaged build file for textlayout to accommodate the recent changes made to that project

    Revision: 11193
    Author:   [email protected]
    Date:     2009-10-27 13:08:28 -0700 (Tue, 27 Oct 2009)
    Log Message:
    fix packaged build file for textlayout to accommodate the recent changes made to that project
    QE notes: no
    Doc notes:
    Bugs: sdk-23302
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-23302
    Modified Paths:
        flex/sdk/trunk/frameworks/build_framework.xml

    There are two main annoying problems with Flash Builder and swc's:
    1.  Flash Builder doesn't reflect changes made to swc files
    Solution : First of all - keep your swc files inside your project folder, you can also disable global swc cache: change as3api.cpp code,refresh swc in flashBuilder bug!
    2. Flash Builder breakes content inside swc files (and also popular problem "TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@1f21adc1 to...")
    Solution : locate the project .actionScriptProperties file and set useFlashSDK=”false” :  Flash Builder 4.7 – useFlashSDK | In Flagrante Delicto!
    In this case you can also download latest Apache Flex SDK to target new Flash player versions: http://flex.apache.org/
    Hope this helps!
    P.

  • Deploying static HTML files

    I would like to deploy an applet in Weblogic 92. Could you point me to the documentation to do achieve this.
    There is one html file which has the applet definition and the jars that it references...

    Hi Durga,
    The idle method of deployment in case of more number java server nodes and x number App Servers implemention.
    stop all App Servers instances and keep only CI online.
    Then logon using Administrator/equaliant authorized user
    Deploy your content.
    Start CI
    restart CI
    start DI (App Servers)
    here CI now takes care of keeping all App Servers in sync with the content of CI.
    I hope this gives enough guidence for you to accomplish your task.
    Regards
    Sekhar

  • How do I Deploy a single HTML file that is part of a project without redeploying the project?

    We have an HTNL file that we load dynamically into our web page.  This file contains ToolTips and by making it an external file to the build it allows us to modify the tool-tips as the processes the tooltips describe change (government processes that
    are being re-designed under the PPACA).
    Since the file is integral to our project, it is checked into our VS Online repository under source code control and gets automatically redeployed when the whole package gets redeployed.   And this works fine
    But if we check out the file, make some edits and try to deploy ONLY this file, we get a prompt for a password.   And I have no idea what password it wants.
    What is the correct way to do this?

    I am the project owner and have not only admin rights but full admin rights to create admin rights  - and I am being prompted for a password.  so that's not the issue..
    And the link you sent me to suggests you did not read what I had posted:
    I have no problems doing a full build and a full deployment.  That works fine.
     I DO NOT WANT TO DO A FULL DEPLOYMENT.
    I want to make a single change to a single resource file that we have under source control since it is a critical component of the solution.   And I want to publish ONLY THAT FILE. 
    So I
    make the change in VS 2013 to the file (to a project that is already linked to Azure services and which we have done publishing from before)
    Check in the file
    Right cliick on the file
    Choose "Publish XXXX.html"
    And I get a prompt to lot onto the FTP server
    ftp://waws-prod-blu-005.azurewebstes.windows.net/site/wwwroot
    HUH!!! I don't have any service or server remotely with that URL anywhere my system.   see attached image below

Maybe you are looking for

  • Creation of custom BAPI for FB02

    Hi Guys, I want to create custom BAPI to update FB02 and for my requirement i found there is no standard BAPI available since i need to update lot of other fields in FB02 that is the reason, i want to use CALL TRANSACTION inside the BAPI to update FB

  • How to create email users with open directory?

    I'm trying to used a mac mini as a mail server for my domains. It works well for SMTP server/gateway for multiple locally networked systems running Lion, Mountain Lion and Maverick. The server is running Mavericks 10.9.2 server 3.1.1. I need to add e

  • Explain me please

    i ahve a doubt regarding the following line of code....please anyone explain me the same. """do 10 times varying it1-f1 from alpha0 next alpha1""". when i am using this statement in program...what function actually it does.

  • MM Manage mandatory field in material master data

    Hi, i need to manage some fields in MM01 and MM02 in order to have these fields mandatory if other fields have particular value. For example, if material type is ZFER and Prod.hierarc (in Basic Data 1) is AL001, only in this case i want that field Co

  • Drop-down menus hangs

    Hi, ever so often, my menus hangs when I try to select something. It's the same in the "Files" window - I highlight a file and right click to get my options, when menu opens, the highlight gets stuck on some menu item and I can't select anything. It