JSP Weblogic server question.

          Hi,
          I'm new with Weblogic, and I have running the server already. I'm able to run servlets
          through the browser, however I want to start working with JSP. I created a sample
          jsp file and when trying to launch it through the browser I get a 404 message error.
          So my question is how can I make weblogic to act as a jsp server as well?
          Thank you for any help.
          A.R.
          

Copy your JSP file into the
          config/mydomain/applications/
          DefaultWebApp directory
          In a web browser, request the JSP file using the following URL:
          http://localhost:7001/sampleJsp.jsp
          "A.R." wrote:
          > Hi,
          > I'm new with Weblogic, and I have running the server already. I'm able to run servlets
          > through the browser, however I want to start working with JSP. I created a sample
          > jsp file and when trying to launch it through the browser I get a 404 message error.
          > So my question is how can I make weblogic to act as a jsp server as well?
          >
          > Thank you for any help.
          > A.R.
          

Similar Messages

  • JSP on Weblogic Server

    Hi All,
    I am new to weblogic server. I will be maintaing a site that is already uploaded on weblogic 8.1. I will be modifying as well as changing the contents of jsp and html pages. What needs to be done so that after doing the changes I can deploy these pages. Some one told me that you can do this through management console. How can I access the management console. I am having the IP address of the server.
    What needs to be done?
    Please guide me
    Thanks in advance

    If you want to redeploy the application you can do it via the admin console.
    Do you know at which address your admin console is running?
    If you know that , access it like
    http://ip_address:port/console
    It will ask for the username/password , once you are in there you can redeploy the webapp if required.
    If you dont know the port where it is running you should be able to get it from config.xml
    Use the bea forum , you get a better response there for weblogic related questions
    http://newsgroups.bea.com/cgi-bin/dnewsweb
    hope this helps

  • WebLogic Server - Problem encoding file MS Word in jsp

    Hi, i'm new in this forum...sorry for my english but i don't speak it very well...
    I have a problem with encoding of a MS Word file (with WebLogic Server 8.1.4).....I have this file stored in a DB Oracle like a BLOB...then I extract this file and I obtain the bytes of this file....than i write this byte in my ServletOutputStream so that i can see this word document from my jsp page in word format....until now everithing is ok...MS Word is open....but in the file the character are not encoded....are like this
    "ÐÏ à¡± á ÿÿÿÿÿÿÿÿÿÿ "....... why i can't see it correctly???
    What I don't understand is thas:
    1)in the same page with a pdf (even this extract as byte from oracle column BLOB) works fine
    2)with the same web application deployed on a tomcat server everithings work fine (with doc,xls....)
    3)I think that every settings is ok....
    in the jsp file
    response.setContentType("application/msword");
    response.setHeader("Content-Disposition", "attachment; filename=test.doc");
    in web.xml
    <mime-mapping>
    <extension>doc</extension>
    <mime-type>application/msword</mime-type>
    </mime-mapping>
    in weblogic.xml (I have read this in a forum)
    <jsp-descriptor>
    <jsp-param>
    <param-name>encoding</param-name>
    <param-value>UTF-8</param-value>
    </jsp-param>
    <jsp-param>
    <param-name>compilerSupportsEncoding</param-name>
    <param-value>false</param-value>
    </jsp-param>
    </jsp-descriptor>
    The file that i obtain is not encode but is corret....infact if i make a compare (with a program "Beyond Compare" that meka a compare with the character not encoded like "ÐÏ à¡± á ÿÿÿÿÿÿÿÿÿÿ ") between the file that I obtain and the original file....everithing is equal...so the file is ok....but i can't open this correctly and visualize it correctly in word format!
    Please help me.....thanks so much

    i was able to solve it by clearing the output stream (jsp page - out.clear() ) before using it, even resetting the jsp response does the trick..
    thanks,
    prakash.m
    Edited by message2prakash at 02/08/2008 10:35 AM
    Edited by message2prakash at 02/08/2008 10:36 AM

  • How to run jsp in weblogic server

    hi,
    how to run jsp application in weblogic server,plz send the procedure how to deploy..
    Thanks

    How to run JSP and EJB program using weblogic server

  • How to deploy jsp project in weblogic server 10.3

    I have downloaded a jsf project from a website. I want to deploy it in weblogic server 10.3. What to do?

    This has nothing to do with JDev.
    Ask your question WebLogic Server - General
    Timo

  • Configuring JSP's in Weblogic server 7.0

    Hi,
    I'm trying to port my web application from weblogic server 6.1 to weblogic
    7.0. I'm having a little problem with jsp pages in weblogic 7.0. Some of the text
    box controls which are populated dynamically in my jsp pages are getting populated
    with
    "null" value in WL 7.0 e.g. in the following case
    <%
    String claim_id=null;
    %>
    <input type=text value=<%= claim_id %> >
    on weblogic 6.1 an empty string is printed but in wl 7.0 null is printed as the
    value for the text field.
    I used the domain configuration wizard in wl 7.0 to make a WLS Domain and then
    deployed my application. If I deploy the same application in one of the examples
    domain which is installed with Weblogic 7.0 then everything works fine. So its
    definity a configuration issue.
    Could someone please help me with this.
    Thanks,
    -Taqdees.

    As per the j2ee 1.2, jsp 1.2 specification mandates that the expressions
    default must be "null".
    We have introduced a new flag in weblogic.xml called printNulls which is
    true by default meaning that "null" will be the default.
    Setting this to false makes sure that expressions(<%=expr%> ) with "null"
    results are printed as "" (earlier behavior)
    Here is how to configure the printNulls from weblogic.xml :
    <weblogic-web-app>
    <jsp-param>
    <param-name>printNulls</param-name>
    <param-value>false</param-value>
    </jsp-param>
    </weblogic-web-app>
    Regards,
    Eric
    "taqdees malik" <[email protected]> wrote in message
    news:3daaff99$[email protected]..
    >
    Hi,
    I'm trying to port my web application from weblogic server 6.1 toweblogic
    7.0. I'm having a little problem with jsp pages in weblogic 7.0. Some ofthe text
    box controls which are populated dynamically in my jsp pages are gettingpopulated
    with
    "null" value in WL 7.0 e.g. in the following case
    <%
    String claim_id=null;
    %>
    <input type=text value=<%= claim_id %> >
    on weblogic 6.1 an empty string is printed but in wl 7.0 null is printedas the
    value for the text field.
    I used the domain configuration wizard in wl 7.0 to make a WLS Domain andthen
    deployed my application. If I deploy the same application in one of theexamples
    domain which is installed with Weblogic 7.0 then everything works fine. Soits
    definity a configuration issue.
    Could someone please help me with this.
    Thanks,
    -Taqdees.

  • Weblogic server 10.3 needs restart to reflect jsp changes.

    Hello,
    I am using weblogic 10.3.5. My problem is when I make changes to JSPs, it is not getting reflected when I refresh the page. Always I have to perform restart of the server.
    I checked my weblogic.xml and I have the below configuration also.
    <jsp-param>
    <param-name>pageCheckSeconds</param-name>
    <param-value>0</param-value>
    </jsp-param>
    I saw this thread: Weblogic server 10.3 needs restart to reflect jsp changes. , but it not helping me.
    Can anyone help me?
    Thanks.

    you should also need to change the name space please try below
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.1/weblogic-web-app.xsd"
    xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app">
    <jsp-descriptor>
    <page-check-seconds>0</page-check-seconds>
    </jsp-descriptor>
    </weblogic-web-app>
    http://docs.oracle.com/cd/E23943_01/web.1111/e13712/weblogic_xml.htm#BEIBCAJH
    http://docs.oracle.com/cd/E23943_01/web.1111/e13712/weblogic_xml.htm#i1038490
    Regards,
    Sunil

  • Urgent. Unable to set up JSP in Weblogic server

              Hi,
              I wish to enable JSPs in the weblogic server. i went thru the bea documentation and
              added the following lines in hte weblogic.properties file :
              weblogic.httpd.documentRoot=XXX (The root directory for the jsps.
              weblogic.httpd.register.*.jsp=\ weblogic.servlet.JSPServlet
              weblogic.httpd.initArgs.*.jsp=\ pageCheckSeconds=1,\
              compileCommand=/opt/java1.2/bin/javac,\
              workingDir=XXX,\
              verbose =true
              After this, i started the weblogic. But apparently, it says that all the above properties are undeclared.
              I am not able to go further on this. Could anyone help me out on this.
              I am working on a HP machine.
              thanks in advance. prashant
              

    Hi,
              It is really hard to tell exactly what is going on without more information. If all you are using are JSPs, try
              removing the servlet classpath altogether. Put any helper classes into the weblogic classpath.
              Can you get one of the example JSPs working in your environment? This would be a good place to start just to verify
              that your environment is set up correctly.
              Can you post your JSP file that is not working?
              Hope this helps,
              Robert
              prashant wrote:
              > Good Morning.
              >
              > I just changed the path as you had said. now it stands as :
              >
              > weblogic.httpd.documentRoot=/sclNewArch/weblogic/pgupta/jsp
              >
              > workingDir=/sclNewArch/weblogic/pgupta/jspworkingdir
              >
              > weblogic.httpd.servlet.classpath=/sclNewArch/weblogic/pgupta/jspclass
              >
              > But still it gives the same error : javax.servlet.ServletException: Servlet class: could not be loaded - the reques
              > ted class wasn't found in the classpath
              >
              > Pleae help.
              >
              > Prashant
              >
              > Robert Patrick <[email protected]> wrote:
              > >1.) Do not make the working directory the same as the document root (or a subdirectory of the document root
              > >hierarchy).
              > >2.) Do not put the working directory in the servlet classpath.
              > >
              > >prashant wrote:
              > >
              > >> Hi,
              > >> Sorry, that was an error on my part while writing to this forum. i had actually done it correctly.
              > >> To tell you in more details, among other things, i have set the following parameters :
              > >>
              > >> weblogic.httpd.documentRoot=/sclNewArch/weblogic/pgupta/jsp
              > >>
              > >> workingDir=/sclNewArch/weblogic/pgupta/jsp
              > >>
              > >> weblogic.httpd.servlet.classpath=/sclNewArch/weblogic/pgupta/jsp
              > >>
              > >> Now, a small jsp that i made is in the same directory. When i try to run the directory with the following :
              > >> http://localhost:8013/a.jsp, it gives the error as given below. I am not able to understand what is the
              > >> problem, since my jsp is in the same directory where the class file is to be made.
              > >>
              > >> Please help.
              > >>
              > >> Thanks,prashant
              > >>
              > >> Fri Jan 05 17:31:45 CST 2001:<E> <ServletContext-General> Servlet failed with Ex
              > >> ception
              > >> javax.servlet.ServletException: Servlet class: could not be loaded - the reques
              > >> ted class wasn't found in the classpath
              > >> /sclNewArch/weblogic/pgupta/jsp
              > >> at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
              > >> mpl.java:299)
              > >> at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
              > >> java:164)
              > >> at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              > >> pl.java:99)
              > >> at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              > >> textImpl.java:742)
              > >> at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              > >> textImpl.java:686)
              > >> at weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
              > >> ContextManager.java:247)
              > >> at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
              > >> a:361)
              > >> at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
              > >>
              > >>
              > >> "Tamilselvan Ramasamy" <[email protected]> wrote:
              > >> >"\" means that property continue in the next line.
              > >> >
              > >> >so your changes as follows
              > >> >
              > >> >weblogic.httpd.documentRoot = /opt/app1/jspdir
              > >> >
              > >> >weblogic.httpd.register.*.jsp=\
              > >> > weblogic.servlet.JSPServlet
              > >> >weblogic.httpd.initArgs.*.jsp=pageCheckSeconds=1,\
              > >> >compileCommand=/opt/java1.2/bin/javac,\
              > >> > workingDir=XXX,\
              > >> > verbose =true
              > >> >
              > >> >/selvan
              > >> >Captura Software Inc
              > >> >
              > >> >"prashant" <[email protected]> wrote in message
              > >> >news:[email protected]...
              > >> >>
              > >> >> Hi,
              > >> >>
              > >> >> I wish to enable JSPs in the weblogic server. i went thru the bea
              > >> >documentation and
              > >> >> added the following lines in hte weblogic.properties file :
              > >> >>
              > >> >> weblogic.httpd.documentRoot=XXX (The root directory for the jsps.
              > >> >>
              > >> >> weblogic.httpd.register.*.jsp=\ weblogic.servlet.JSPServlet
              > >> >> weblogic.httpd.initArgs.*.jsp=\ pageCheckSeconds=1,\
              > >> >> compileCommand=/opt/java1.2/bin/javac,\
              > >> >> workingDir=XXX,\
              > >> >> verbose =true
              > >> >> After this, i started the weblogic. But apparently, it says that all the
              > >> >above properties are undeclared.
              > >> >>
              > >> >> I am not able to go further on this. Could anyone help me out on this.
              > >> >>
              > >> >> I am working on a HP machine.
              > >> >>
              > >> >> thanks in advance. prashant
              > >> >
              > >> >
              > >
              

  • Bea Weblogic Server performance question.

    Hello,
    Im wondering if there are big performance difference between Bea Weblogic Server
    versions.
    I run BWS 5.1 and find it great, I ve tested the application on 6.0 and it seems
    to run as good as 5.1, I ve tested with 6.1 and it works fine too.
    And now is my question... is it big difference between WLS from 5.1, 6.0, 6.1,
    7.0, 8.0, 8.1 ???
    I dont need any "super-hyper" features just run a simple EJB (30-40 EJBs) application.
    If there are big performance difference then there is a good reason to update
    to the latest WLS. (Do you have any benchmark urls for this issue?)
    Do I need to modify the EJBs if I want to upgrade from 5.1 to 8.1 ??
    When I upgraded from 5.1 to 6.1 there was a little changes I ve to make in the
    xml files.
    Thanks for all your help!
    /Sonny!

    "Sonny" <[email protected]> wrote in message
    news:3f0d6ca6$[email protected]..
    |
    | Hello,
    |
    | Im wondering if there are big performance difference between Bea Weblogic
    Server
    | versions.
    | I run BWS 5.1 and find it great, I ve tested the application on 6.0 and it
    seems
    | to run as good as 5.1, I ve tested with 6.1 and it works fine too.
    | And now is my question... is it big difference between WLS from 5.1, 6.0,
    6.1,
    | 7.0, 8.0, 8.1 ???
    | I dont need any "super-hyper" features just run a simple EJB (30-40 EJBs)
    application.
    |
    | If there are big performance difference then there is a good reason to
    update
    | to the latest WLS. (Do you have any benchmark urls for this issue?)
    |
    | Do I need to modify the EJBs if I want to upgrade from 5.1 to 8.1 ??
    | When I upgraded from 5.1 to 6.1 there was a little changes I ve to make in
    the
    | xml files.
    |
    | Thanks for all your help!
    |
    | /Sonny!
    As new versions release, there is differences in performance. One
    significant point to note is the JVM versions that are supported which
    significantly impact the application server performance. The new WLS 8.1 on
    the newest released 1.4.2 JVM is damn good. The 1.4.1_0x JVMs have been
    dramatically slower in tests that I've done. So even incremental releases
    will make an impact.
    In newer releases, code matures also. I also believe in 7.x they gave the
    capability of clustering JVM more effectively.
    anyway... good luck.
    ken k

  • Need Help with Comprehensive Interview Questions  Weblogic server admin

    Hi
    I would like to thank everybody in advance
    I am beginner with weblogic server administration and i would greatly appreciate if someone share the comprehensive interview Questions
    PLEASE HELP ME
    Regards
    Schelako

    Hi Schelako,
    You will get many links regarding weblogic Interview questions on Google.
    For basic Weblogic interview questions and answer you can follow the below links
    http://www.coolinterview.com/type.asp?iType=469
    https://sites.google.com/site/weblogicadminsite/weblogic-issues/weblogic-interview/wla-interview-questions
    https://sites.google.com/site/weblogicadminsite/weblogic-issues/weblogic-interview/WLA-Interview-Questions--2
    https://sites.google.com/site/weblogicadminsite/weblogic-issues/weblogic-interview/weblogic-administrator-interview-questions-3
    As you said "I am beginner with weblogic server administration"
    It would be better if you start Oracle doc's for Weblogic Administration
    Regards
    Fabian

  • Help in executing jsp files using weblogic server 6.0.

              I have an operating system Windows2000, i have downloaded 30 day trial version of weblogic server 6.0.
              I have a file called hello.jsp.
              Where do i have to save hello.jsp file in weblogic server 6.0.
              How do i execute hello.jsp through browser using weblogic server6.0.
              As there is no properties file in weblogic server6.0.
              TO run it i started default server and when i started default console it got opened in the browser as http://127.0.0.1:7001/console/index.jsp
              Where do i have to save it and how do i open it in the browser.
              Any help will be greatly appreciated.
              Thanks,
              

              I started the Start default Server and opened the http://localhost:7001/ in the bowser and by default
              this loaded the index.html file
              and when i tried to change index.html to hello.jsp i got the same error message as before
              Error 404--Not Found
              From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              10.4.5 404 Not Found
              The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
              If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
              "mils" <[email protected]> wrote:
              >
              >There are quite a few reasons it couldn't be working, and things you can try...
              >
              >Ensure there are no errors on startup of the server in the console, especially that there is not an error about another web listener running on the same port.
              >
              >Try just http://localhost:7001 by default this should load the index.html file that comes with the WebLogic installation.
              >
              >If you are running on a corporate LAN, your browser settings may not be set correctly to find "localhost", ensure that your browser is not using a proxy server for local addresses, or put localhost:7001 in the list of exceptions for which the browser should not look at the proxy server.
              >
              >Hope this helps!
              >
              >"Red" <[email protected]> wrote:
              >>
              >>I created hello.jsp file under E:\weblogic\wlserver6.0\config\mydomain\applications\DefaultWebApp_myserver\hello.jsp
              >>and i started the Start Default Server and when i try to open
              >>http://localhost:7001/hello.jsp in the browser
              >>getting an error message as
              >>
              >>Error 404--Not Found
              >>From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              >>10.4.5 404 Not Found
              >>The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
              >>
              >>If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
              >>
              >>Any help?
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>
              >>"Mils" <[email protected]> wrote:
              >>>
              >>>In WebLogic 6.0, to run simple JSP pages with the default installation, the JSP files should be put in....
              >>>
              >>>C:\bea\wlserver6.0\config\DefaultWebApp_myserver
              >>>
              >>>...assuming you installation was on the C: drive.
              >>>
              >>>To access a file bar.jsp in this directory, go to http://localhost:7001/bar.jsp
              >>>
              >>>"Red" <[email protected]> wrote:
              >>>>
              >>>>I have an operating system Windows2000, i have downloaded 30 day trial version of weblogic server 6.0.
              >>>>I have a file called hello.jsp.
              >>>>Where do i have to save hello.jsp file in weblogic server 6.0.
              >>>>How do i execute hello.jsp through browser using weblogic server6.0.
              >>>>As there is no properties file in weblogic server6.0.
              >>>>
              >>>>TO run it i started default server and when i started default console it got opened in the browser as http://127.0.0.1:7001/console/index.jsp
              >>>>
              >>>>Where do i have to save it and how do i open it in the browser.
              >>>>
              >>>>Any help will be greatly appreciated.
              >>>>Thanks,
              >>>>
              >>>>
              >>>>
              >>>>
              >>>
              >>
              >
              

  • Question about creating new tables using SQL script in WebLogic Server

    Hi,
    I am new to WebLogic and I am following a book Java EE Development with Eclipse published by PACKT Publishing to learn
    Java EE.  I have installed Oracle Enterprise Pack for Eclipse on the PC and I am able to log into the WebLogic Server Administration Console
    and set up a Data Source.  However the next step is to create tables for the database.  The book says that the tables can be created using
    SQL script run from the SQL command line.
    I cannot see any way of inputting SQL script into the WebLogic Server Admistration Console.  Aslo there is no SQL Command line in DOS.
    Thanks  for your help.
    Brian.

    Sounds like you are to run the scripts provided by a tutorial to create the tables, right?  In that case, you may need to install an Oracle client to connect to your database.  The client is automatically installed with the database, so if you have access to the server that hosts the database, you should be able to run SQLplus from there.
    As far as I know, there is no way to run a script from the Admin Console.  I could be wrong, however.

  • Question: one weblogic server listening on several port

    can i start one weblogic server that listening on several port, one for
    different application?
    for example,
    7001 for general user, and
    7005 for admistrators and ask for two way authentification?
    can i do this? or do i have to start two weblogic instance? does that
    violate it's license for one computer and one ip address?
    thank u.

    Ummm.. how would this help security? If I want to bypass authentication, I just go to the unprotected port.
    I don't think you can listen to different ports in the same instance
    . You can listen to different IP addresses in the same instance.
    WL is licensed by CPU so this would not cost any more to license.
    mike
    "Gong Wenxue" <[email protected]> wrote:
    can i start one weblogic server that listening on several port, one for
    different application?
    for example,
    7001 for general user, and
    7005 for admistrators and ask for two way authentification?
    can i do this? or do i have to start two weblogic instance? does that
    violate it's license for one computer and one ip address?
    thank u.

  • Weblogic Server 8.1 SP1 bug?

    Hello,
              I have a problem when using XML JSP in combination with Struts tags, allthough I have the feeling that any other TLD will have the same problem.
              The <html:link page="http://www.home.nl">Home</html:link>
              is not rendered properly by WL. The result is:
              <a href="/ipmtoolhttp://www.home.nl"></a>
              Note the fact that the text 'Home' is missing in the anchor. This makes the link 'unclickable' in the browser.
              I have tested this code on Tomcat 5.0.27 as well and there the code renders properly.
              I think its a bug. The question is, has it been solved in SP2 or SP3?
              Below is the complete source:
              <?xml version="1.0" encoding="utf-8"?>
              <jsp:root xmlns="http://www.w3.org/1999/xhtml"
              xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2"
              xmlns:bean="/WEB-INF/tlds/struts-bean.tld"
              xmlns:html="/WEB-INF/tlds/struts-html.tld"
              xmlns:logic="/WEB-INF/tlds/struts-logic.tld"
              xmlns:tiles="/WEB-INF/tlds/struts-tiles.tld">
              <html>
              <body>
              <html:link page="http://www.home.nl">Home</html:link>
              <html:link page="http://www.home.nl">
              <jsp:text>Home</jsp:text></html:link>
              </body>
              </html>
              </jsp:root>
              -----------------------------

    What about Red Hat 7.2 ?
    I do not understand very well if this version has anything to do with the
    ones mentioned on supported platforms
    thanks
    "Raj Alagumalai" <[email protected]> escribió en el mensaje
    news:[email protected]..
    Campot,
    Unfortunately WLS 8.1 sp1 is not supported on RedHat 7.1
    http://e-docs.bea.com/wls/certifications/certs_810/overview.html#1043408
    should provide you more information on this.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Campot" <[email protected]> wrote in message
    news:[email protected]..
    Can I install WebLogic Server 8.1 SP1 on Linux Redhat 7.1?
    I looked the documentation and it is not clear if the server runs on
    this
    Linux version
    Thanks

  • JSP to Excel question

    Hi,
    I have a jsp page that renders data from a result set (queried from database).
    A button on this pages calls a 2nd page that I want to re-query and open excel with the data.
    This all works except that there are a number of blank likes at the top of the excel page, prior to my data. These relate to declatations at the top of my page. i.e
    <%@ page import="java.io.*" %>
    and
    <jsp:useBean id="AccountDetailsBean" class="com.xxx.yyy.zzz.AccountDetailsBean" scope="session" />
    This will give 2 blank lines. I assume that this is because they are essentially being treated as HTML comment lines.
    How can I avoid this? Can I declare these within the main JSP servlet?
    Thanks for any assistance.

    However, remember that the parameters in GET requests are logged in the
    server log so whatever information you send to the server via a GET, remains
    logged and available to whoever has access to your logs. Shouldn't be many,
    but should that information get to the people who run a log analyzer to get
    statistics on the server usage?
    POST is better because the parameters are sent in the body of the request
    and the body is not logged.
    SSL needs to be used in both cases.
    "Dror Avinun" <[email protected]> wrote in message
    news:3affe4b3$[email protected]..
    >
    All the SSL encryption is done in the socket layer and all of the HTTPcommunication
    is encrypted. This means that both the request (yout "GET" command) andresponse
    are secured.
    cheers,
    Dror
    "Asher Bitton" <[email protected]> wrote:
    Hi,
    I'm using https to call from an excel application to a weblogic jsp page,
    my question is whether the url that excel sends (for example:
    "https://mypc:7002/mydir/myfile.jsp?myvar1=val1&myvar2=val2")
    gets also encrypted\secured, what I'm interested to know is whether the
    parameters sent using the http "get" method are secure?
    Where can I find some information regarding the https implementation
    thanks.

Maybe you are looking for

  • Need Help with Spry Drop Down Menu

    Greetings, I'm a Dreamweaver beginner, and I'm currently working on a redesign of our corporate website, and I would really like to incorporate a drop down navigation system. So far, I've gotten close to what I would like to have, except there are a

  • Does not play dvd's

    I can not play DVD's on my mac mini.

  • How do I change Apple ID on the iPad Air?

    How do I change an Apple ID on my second iPad? (iPad Air)

  • Add new fields

    Hi to all, Please go through the following programe...... i want to add the new fields <b>BEDAT</b> from <b>EKKO</b> and <b>LABST</b> from <b>MARD</b> to this report.... please suggest me how to do.....??? TABLES: MARD, /UPM/GTB10 , EKKO, /UPM/GTB11.

  • Embedding Captivate v4 recording in PowerPoint 2003

    I have recently seen simple to follow instrutions explaining the above for PowerPoint 2007, but I cannot find anything along same lines (simple step by step) to explain how to do embed a Captivate v4 project into PowerPoint 2003. Does anyone know whe