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

Similar Messages

  • 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/

  • 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.

  • JavaScript error when I test deploy an html file

    RoboHelp 8 HTML: If I do a test deploy (CTRL+W) of an html file that contains image maps, when I deploy the html file and click the image map, I get this:
    This 'gbSafari3' appears to point to the Mac browser Safari 3, but I can't verify that. I get the same error with any html file that I do a test deploy on. The old workaround was to generate a new RoboHelp project, copy the new (127KB) ehlpdhtm.js file over the existing one, and that solved the problem. Doesn't seem to do it here.
    IE 8 is my default browser, and I'm running WinXP. Thanks for any advice.

    you should type this:
    buildclient -w -o simpcl -f simpcl.c
    "jonson" <[email protected]> wrote:
    >
    I have installed the tuxedo 6.5. and test the simpcl sample program. after finished "buildclient -f simpcl.c -o simpcl -w",
    and run it ,it report the "system internal error" message.
    The enviroment variable "WSNADDR" has been set,and the ubbconfig file is modified for the WSC model.
    who can help to solve this problem?

  • How to Deploy HTML file in embedded OC4J Server

    Hi,
    I have a problem with deploying the HTML file.
    How to deploy a HTML file in embedded oc4j server.
    I'm running this in a Standalone and JDeveloper9i version.
    I don't know where to deploy and how to deploy ?
    Thanks
    James

    Hi Deepak,
    I tryed that but i was NOT successful.
    I'm getting 404 error page could not find in the Server.
    Any other idea ?

  • How to deploy custom HTML Help files in OBIEE 11g

    Hi gurus,
    I have question regarding deploying Custom HTML files in OBIEE 11.1.1.5, i tried to place files under
    Middleware/Oracle_BI1/bifoundation/web/app/olh/l_en and tried to access with below URL after bounce Weblogic...but no luck.
    http://hostnmame:9704/analytics/olh/l_en/lOfferExpert_Help.htm
    Can some one give some pointers to appropriate documentation of achieving this?
    thanks
    Ravi

    Hi Ravi,
    I am thinking deploying these html files as a part of separate application in weblogic might be another approach. This process is like
    1. Making a .war(.ear) of your html
    2. Deploying the .war in weblogic through deployments as an application with an application context.
    3. Referencing the files in analytics or even outside just through a url.
    Hope this helps.
    Thank you,
    Dhar

  • How to include HTML file in JSP using HTML elements or Javascript?

    Hi,
    I have around 15000 static html files one for each item which we display each upon invoking an item.The HTML file should be part of a JSP file.
    Please note that the name of the HTML file is determined dynamically
    Placing all the HTML files within the web application does not give us good performance so i would like to put all of them in the webserver.
    I am not able to include the file in the JSP using the jsp:include attribute if i place the HTML files in the webserver ,
    in order to do that i think should use either HTML element or javascript to include the HTML in the JSP.is there any alternative to <Jsp:include>
    Does anyone have an idea how to include the HTML file and take advan tage of webserver?
    Any ideas are appreciated

    What you need to do is simply read the HTML file from the disk and dump it out to the outputstream. It really is that simple.
    There's no reason you need to include all 15000 files in the actual WAR, you can place those files any place handy that is easy for the application to see (in another directory, or accessible from a file server if you have multiple front ends).
    Then, just write a utiility function that takes the output stream (i.e. the 'out' JSP variable), and the file name, read the file, and write it to the stream.
    If you start noticing performance issues, then you can try doing some caching, but truth is your OS should be doing that for you.
    But, truth be told that's the only practical way to do it.
    Another solution would be to use JavaScriipt and XMLHttpRequest (i.e "AJAX") to load the file at the client side, and simply replace a tag with the results.
    That's also pretty trivial to write, any web site talking about AJAX should give you hint there.
    Of course, that won't work for folks who have JavaScript turned off, or some other incompatible browser, whereas the server side solution obviously works everywhere.

  • Simple Browser which support locally saved html file having Marquee text

    I want simple java browser in which I can run locally saved html file having marquee text in it.
    My requirement is to show html file in Oracle forms.For that i need JAR Files of that browser which support html file(locally saved & support marque text).
    Because i use several browser which support locally html file but not support marque text.These browser display static html file not marque text in it.
    Can anybody help me.
    Regards

    1. There is no reliable way of guessing the encoding of a file without that information. Thats why XML for example has very strict rules wrt. it's encoding (short form: use UTF-8 or UTF-16, if you use anything else, you'll have to specify it)
    2. you might be able to make an educated guess if the possible range of encodings is limited, but it will probably never be 100% certain
    3. The HTML file might have a header entry "<meta http-equiv..." that tells you about it's encoding. You could try to read the start of the file and see if you find that, then if you found it re-read the entire file.
    regards

  • Open an html file locally

    Hi,
    I have started developing with iPhone less than one month ago. Im still following tutorials and guide books and in one of them I learnt how to open in Safari an URL with openURL.
    I was just wondering if it is possible to open a local HTML file with openURL, I mean; I have a simple,static HTML file, added to my Resources folder in Xcode. Then, I try to open it using openURL but it seems that either it is not possible or I am not referencing the file properly. I have used these two options:
    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"html"];
    NSURL *url = [NSURL fileURLWithPath:filePath];
    and
    - (NSString *)dataFilePath:(NSString *)fileName
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    return [documentsDirectory stringByAppendingString:fileName];
    filePath = [self dataFilePath:@"test.html"];
    NSURL *url = [NSURL fileURLWithPath:filePath];
    With both options I get a reference to my .app file, but I want the .html file in it.
    Is it possible to do what Im trying?
    Thank you and regards.

    file:// appears to be a valid URL scheme on the simulator, but it is not on Safari Mobile. My guess is that Safari Mobile does not have access rights to the bundle's files.
    Thus:
    NSURL *fileURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"readme" ofType:@"html"]];
    NSLog(@"URL is: %@",fileURL);
    [[UIApplication sharedApplication] openURL:fileURL];
    works on the simulator, but gets this:
    Thu Oct 22 08:21:58 unknown com.apple.debugserver-43[104] <Warning>: 1 [0068/1603]: error: ::read ( 7, 0x28091c, 1024 ) => -1 err = Bad file descriptor (0x00000009)
    on the real device.
    I can't find it specifically in the Doc, but my guess is that this behavior is intentional.

  • WEB DB static html

    hello together,
    i have one question. i have installed oracle 8.i with webdb.
    I need static html files generated by webdb for a stand alone
    offline information terminal without webdb or applikation
    server. In most time this terminal works offline.
    I need only one idea.
    ciao
    T.Vollstaedt
    null

    You can use "Save As"-menu item in your Browser to save a copy of the WEBDB forms in HTML. However you must alter all anchors and references by hand.

  • SWF and HTML files separate directories.

    I am generating HTML wrapper dynamically and it runs
    successfully (No JavaScript errors etc.). I right click on the page
    and it displays "Print,Settings, About Flash Player"
    Problem is that my SWF file which resides somewhere else on
    the HTTP server is not played at all. I get a blank page. The path
    to SWF was provided in HTML using an alias defined on the HTTP
    config file.
    If I run static HTML file in the same directory as SWF file
    the page is generated OK.
    Am I missing a crossdomain.xml file but everything is on the
    same domain (so ruled out).
    Please help.

    Hi zetokore, and welcome to the Community!
    You cannot separate the HTM and SWF files, so don't try.
    These files are designed to be symbiotic and must be accessed from
    the same location. Your "getaround" won't work because if you link
    to the SWF instead of theHTM, the output will be warped ... the HTM
    file contains sizing parameters for display of the SWF; so without
    proper sizing, the SWF will appear warped.
    In short - you'll have to live with it, because what you are
    seeing is Captivate's designed behavior.
    To emphasize the point: Design and record your Captivate
    projects at the size they are to be displayed to the end-user ...
    always! And - again always - link to the HTM file, never to the
    SWF.
    .

  • CS3: How to generate PDF from multiple HTML files using CSS?

    I have a set of static HTML files. They are nicely formatted using a single style sheet. They interlink. I would like a way to generate a single PDF file from that set of HTML files that preserves the links (of course, they would all link within the single generated PDF because they would not longer be separate files as a PDF). I would also like to preserve the formatting from the CSS so it doesn't look generic. I own CS3 but don't know which tool to use for this, if any. Which tool would I use for this?

    Acrobat Pro

  • HTML File -- Highlight

    HI All
    I have a file in ROOT webapp and I give the file location as http://localhost:8080/files/file1.html so that users can see them.
    Now my requirement is I have to show some words highlighted in the file.
    I am clueless on...
    1. How do I tell what words to highlight. ( I have the words in a java variable)
    2. When the user clicks on the link , how to highlight?
    Any ideas please......
    Thanks
    bib/-

    From the name of the file you gave, it looks like you are talking about a static html file. What do you mean by highlight? Do you want the words to appear bold or in some other color or what? If you want words in an html file to appear bold: surround them with <B>...</B>. For example:
    <B>This line will be bold</b>If you want them in another color, surround them with something like:
    <font color="red">This line will be read.</font>Strictly speaking what I am showing you isn't the best way to do it. Style sheets are the preferred approach but that would be too complicated to explain here.
    The <body> tag has three attributes which control the color of links: link, alink and vlink. Links which the user is currently clicking on are active links and their color is controlled by alink. Links which have previously been visited are controlled by vlink. All non-visited, non-active nodes are controlled by link. The colors can be specified by either a name or a red, green blue value (e.g. "#FF0000" would be red). Again, style sheets are the preferred approach but all browsers still support the old approach.

  • Including static html outside of docroot

              Has anyone had any luck with including a static html file inside a jsp, using <jsp:include
              .. />? I have had plenty of luck including an html file that is included in the
              .ear file, but I am looking to include a file that is kept outside of the .ear
              file, either in a virtual directory using IIS or maybe in a directory somewhere
              around the config.xml.
              Thanks for any help you may give.
              gmonn
              

    in your filter you may process HTML as is, catch the result, add header/footer etc. and stream the updated result to your users
    Dmitry Namiot
    http://www.servletsuite.com/

Maybe you are looking for

  • Problems with adding a new device in Common Services

    Hello, I have the following problem: I need to add a new device in my Cisco Works. What I do is I go to Common Services >> Device and Credentials >> Device Management. There I click "Add" and I add the new device with the corresponding credential set

  • HP 7510 All-in-One Won't Wake Up

    My networked HP 7510 goes into power saving mode as set in default settings, but will not wake up when a print job is sent from a networked PC - except randomly and for reasons that I can't explain. I can't correlate when it will wake up to any parti

  • Displaying W message on selction screen and on enter need to go to ALV liso

    Dear All, I have  a requirement where i get my data in end-of-selection evenet after that i do  some calculation / validation and i display the warning message . But i need to display the warning on selction screen and on enetr need to go to ALV list

  • Video Question, How to play all at once

    Hey everyone, I have a list of videos i'd like to play one right after the other but i cannot seem to be able to do it. Is there any way to do this? I don't see why there wouldn't be, I probably just can't figure it out. Thanks!

  • Feel ripped off

    Comcast is extremely expensive.. My suggestions to anyone who has Comcast is not to get any promotional items they offer..I'm stuck in a 2 year contract that will cost me $600 dollars just to get rid off xfinity home security. My bill is over $200 wh