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

Similar Messages

  • Weblogic Server 9.2 MP2 - Console hangs on activating changes

    Hi,
    I have migrated the adminserver to a different server.
    After the migration, when we make changes in the weblogic console and try to activate the changes, the console hangs.
    The threads are waiting at:
    weblogic.management.provider.internal.ActivateTaskImpl
    I have tried a few things which include using “Perform Asynchronous Activation”.
    But they have not helped.
    Environment Details
    ==============
    Operating System : HP-UX Itanium
    JDK Version : 1.5
    Database Version : Oracle 10g
    Any pointers will be highly appreciated.

    facing the same problem of console hung
    for weblogic 10.3 on Red hat Linux ES 4,
    for every change console hangs and restart list shows all managed severs irrespective of changes.
    I will appriciate any help to solve this.

  • 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

  • Failing when delploying webaccess to weblogic server  urgently i need help

    what are your suggestions to solve that problem ?

    When you say "can't be disabled" you mean you get a security exception, right?
    If you want to disable the securitymanager in a JNLP application, you will need to sign the application's jar-files and request the appropriate permissions in the JNLP file.
    After that you should be able to disable the securitymanager in your main method.

  • How to make changes effect in log4j.xml without restarting weblogic server

    Hi ,
    I have successfully configured log4j in my weblogic server 8.1.
    Everytime i made a change in log4j.xml i need to restart the server
    is there any configuration or parameter to set without restarting server??
    Thanks in advance,
    CK

    I don't think you need to restart the server, atleast I never needed to when making changes to jsp pages. You only need to restart when you make changes to java classes. Some might argue jsp is converted to servlet which is a java class.....
    Try refreshing the page when you make any changes. This works for me, if it doesn't work try turning reloadable="true" in your context path in tomcat's server.xml

  • Startup Class in WebLogic server 6.1

    I Have a Java application as startup class in Weblogic server 6.1 . I need to stop
    the application without restarting the Weblogi server (The startup class should
    be removed and the change should be reflected in WebLogic server). Is it possible
    to achieve this. I Know that we can remove the startup class from the console
    but the change is getting reflected only if i restart the WebLogic Server. Can
    some one help me out ?.
    Thanks,
    S Gopikrishna

    Even if it is EJB-only, adding .war with startup logic will be more convinient
    than startup classes.
    S Gopikrishna <[email protected]> wrote:
    Hi
    Thanks a lot for the info. My application is not servlet based rather not
    web based. In this case how to solve my startupclass problem.
    Regards,
    S Gopikrishna
    Dimitri Rakitine <[email protected]> wrote:
    You can deploy web-app(stand-alone, or as a part of an EAR), which has
    servlets marked as
    load-on-startup (in that case you can use servlet's init() method to
    perform your startup
    logic), or has servlet context listeners registered
    (http://e-docs.bea.com/wls/docs61/webapp/app_events.html#177041) - contextInitialized()
    callback will be called when application is deployed, and contextDestroyed()
    will be called when application is undeployed.
    S Gopikrishna <[email protected]> wrote:
    Thanks a lot for the info. Iam pretty new to WeblogicServer. Can utell me about
    how to use load-on-startup servlets or application listeners ?.
    Thanks in Advance
    S Gopikrishna
    Dimitri Rakitine <[email protected]> wrote:
    You can look into using load-on-startup servlets or application listeners
    instead
    of startup classes in 6.1 - that way you can redeploy your application
    and re-execute
    it's startup logic without placing any classes in the system classpath
    or restarting
    WebLogic.
    S Gopikrishna <[email protected]> wrote:
    I Have a Java application as startup class in Weblogic server 6.1
    I need to stop
    the application without restarting the Weblogi server (The startupclass should
    be removed and the change should be reflected in WebLogic server).Is it possible
    to achieve this. I Know that we can remove the startup class from
    the
    console
    but the change is getting reflected only if i restart the WebLogicServer. Can
    some one help me out ?.
    Thanks,
    S Gopikrishna--
    Dimitri--
    Dimitri
    Dimitri

  • Weblogic server 9.2 support for WS-Transaction

    Hi,
              Does Weblogic Server9.2 support WS-Transaction 1.1 ? The WL Server data sheet is not specific about the details of compliance. I am trying to find out if there is support for WS-Coordination, WS-Atomic Transaction and WS-Business Activity in Weblogic Server.
              We need to use the Aqualogic Service Bus 2.6 is a distributed WebService Transaction.

    As I know, the answer is "no".

  • How to find manage server name in weblogic server?

    I have two managed server in weblogic server. I need to find out which managed server serving my request. Please let me know if any body knows about this.

    You do not need to do anything, if your Report server is on the same machine as the Forms server (which is usually the case) you simply use the url as
    /reports/rwservlet?report=myreport' and the server will automatically use the default report server.
    then you simply use
    web.show_document('/reports/rwservlet?userid=scott/tiger@orcl&report=myreport&desformat=htmlcss&desname=test.html'Tony
    Try it now
    Edited by: Tony Garabedian on Nov 5, 2008 2:00 PM

  • Planning to buy weblogic server

    Hi,
    I am planning to buy weblogic server. I need a kind request to suggest for following info.
    Presently we have requirments to run Enterprise application in weblogic server.
    Techonologies we are using are as follows:
    Java 1.6 or 1.5
    JEE 1.5
    Jsf 1.2
    EJB 3.0
    Seam 2.2GA
    Hibarenate 3.0
    RichFaces 3.3.3
    Eclipse Galileo IDE
    SqlServer 2008
    linux OS
    By using above technologies we have developed Ear file(Enterprise applications) and run in weblogic server.
    Any suggestion would be helpful,so based on above technologies which version of weblogic server would be perfect, software-hardware requirments, How many users can it allow, memory space it holds, if 1Terabyte of data I want to store in db so which version performs faster.
    Thanks&Regards
    K.chaitanya
    Please post reply to below email id.
    My emailid:[email protected]

    Sounds like an excellent question to ask your friendly local Oracle Sales Rep/Solution Architect

  • Admin can't apply any type of changes because a single weblogic server

    When I try to modify/create "anything" in the admin console of weblogic and I try to apply the changes I am getting this error:
    "*An error occurred during activation of changes, please see the log for details.*
    *Message icon - Error [Management:141191]The prepare phase of the configuration update failed with an exception:*
    *Message icon - Error Provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl not found*"
    I found a workaround, but not the solution yet.
    It seems the problem is caused by a single weblogic server from the domain, if its clustered then from both weblogic servers, or as many as there are.
    The workaround is to search in all the weblogic server in its logs to see which one is reporting this same error when I try to apply the changes. You shut down those servers and suddenly the admin server can apply the changes no problem, then you can re-start the offending weblogic server/s.
    My questions are:
    * Anyone knows how can I know what is deployed or not in a single weblogic server can affect the admin to apply any changes, including anything not related to the weblogic server that is causing the problem?
    * How come is this affecting the admin to apply any changes not related at all with what's in this weblogic server?
    * Why if I shutdown the weblogic servers I can apply the changes and then the offending weblogic servers will start again correctly?
    Is there an effective solution? Since in production environment I can't just go shutting down servers when I need to apply changes through the admin server.
    Scenario:
    WebLogic Server Version: 10.3.5.0 generic install
    jrockit-jdk1.6.0_29-R28.2.0-4.1.0
    Linux x64
    Any help/tips will be apreciated.
    Edited by: ezra-s on 02-oct-2012 11:17

    I found the answer:
    ".apache.xerces.jaxp.DocumentBuilderFactoryImp" is a document builder factory that is specific for JDK 1.4 and will not work on JDK 1.6, which causes the issue".
    It seems the offending webserver as this object in one of their applications which is causing this issue.

  • The dev2dev Reader Survey + WebLogic Server Survey

    Hi,
              The 2005 dev2dev Reader Survey is underway:
              http://dev2dev.bea.com/pub/a/2005/10/2005-dev2dev-survey.html
              This is your opportunity to steer the dev2dev site by helping us
              understand what you use, what you're interested in, and what can be
              improved. Prizes included ;-)
              It's being run in parallel with a WebLogic Server Survey too - help the
              WebLogic Server team tailor WebLogic Server to your needs.
              Please participate - we value your input!
              Thanks,
              Jon Mountjoy
              Editor, dev2dev
              <http://dev2dev.bea.com/blog/editors/>

    Hi,
              The 2005 dev2dev Reader Survey is underway:
              http://dev2dev.bea.com/pub/a/2005/10/2005-dev2dev-survey.html
              This is your opportunity to steer the dev2dev site by helping us
              understand what you use, what you're interested in, and what can be
              improved. Prizes included ;-)
              It's being run in parallel with a WebLogic Server Survey too - help the
              WebLogic Server team tailor WebLogic Server to your needs.
              Please participate - we value your input!
              Thanks,
              Jon Mountjoy
              Editor, dev2dev
              <http://dev2dev.bea.com/blog/editors/>

  • Reload a jar in weblogic server without restart

    Hi All,
    We are using weblogic version '10.0.1.0' and have 'reports.jar' file in server for reports.
    If we change any existing class file under 'reports.jar' then we are using below steps in order to recognize a modified jar by weblogic
    1) We need to recreate a jar using eclipse in local IDE and
    2) Copy the 'reports.jar' into server
    3) Need to restart server inorder to recognize the modified jar
    Is there any alternative solution to reload a jar in weblogic server without restart?
    Please do the needful.
    Thanks & Regards,
    Gangadhar

    Hi,
    If this is for weblogic running on development mode, then you can go for auto-deployment feature where weblogic will auto-deploy modified application from autodeploy directory.
    For production mode, you can go for production-redeployment feature of weblogic where it uses application versioning. So for example you deployed webapp1 with version app1.0 and then for new release you will deploy webapp1 with version app2.0 adding a retirement policy to retire old application after said time and start using webapp1 with app2.0.
    Refer to link for mode detail - http://middlewaresupport.wordpress.com/2013/03/21/production-redeployment-feature-in-weblogic/
    rank it if found useful
    Thanks,
    Ranjan

  • Only Restarting the Weblogic Server will invoke the Stored Procedure???

    Hi,
    I have written a stored procedure which is called using hibernate
    which is working fine when ever i restart the server(Weblogic). That is for each time, when i need to invoke the stored procedure i need to restart the server to invoke it then only the stored procedure gets invoked. Which is very expensive indeed. How to overcome this, is there any way to set in the weblogic server properties, so that i can dont have to restart the server every time when i need to invoke the Stored
    procedure. Any way please do look up the code as well in which i have called the stored procedure in Hibernate.
    public int callPopulateCertDataSP(String barCode,String containerType,String conditionValue) throws SystemException {
         log.debug("Inside the callStoredProcedure Method!!!");
         int checkValue=0;
         Session hibSession = HibernateUtils.getSession();
         Connection con=hibSession.connection();
         CallableStatement cstatement=null;
         if(con!=null){
    try {
         log.debug("Inside con object not null!!!");
              cstatement=con.prepareCall("{call p_populate_cert_data(?,?,?,?)}");
              cstatement.setString(1,barCode);
              cstatement.setString(2,containerType);
              cstatement.setString(3,conditionValue);
              cstatement.registerOutParameter(4,Types.INTEGER);
              cstatement.execute();
              checkValue=cstatement.getInt(4);
              cstatement.close();
              con.commit();
              con.close();
         }catch(SQLException e){
              log.debug("The error Message is what????"+e.getMessage());
         HibernateUtils.closeSession();
         return checkValue;          
    Expecting ur replies....
    Thanks,
    JavaCrazyLover

    No Replies as Yet!!!

  • Need help regarding Weblogic Server Hang up

    We are facing a problem at the client’s place on the production environment.
    The weblogic server is hanging up once every week. The application is running fine till then, but once the server is hung we need to restart the weblogic again.
    Also after observing the behavior of the memory usage of the application in the weblogic admin console we came to know that the memory usage is gradually increasing day by day. We are not sure why this is happening.
    We tested the application to check for any memory leaks using JProbe. We couldn’t find any memory leaks in the application. We even tested it onsite but couldn’t find any memory leaks.
    I need some help on this issue as this is happening on the production environment and needs to be resolved as soon as possible.
    The configuration we are having on the production environment is:
    bea:8.1
    JDK:1.41_02

    1. You say its a hang, get multiple threadumps and see whats happening at the time of hang. this will give you a clue into the work thats going on and thats stuck.
    2. are you seeing outofmemoryexception? If yes only then you will need to suspect the memory leak. First thing in such situation is try to increase the heap by about 1/3rd more (this is just a guestimate not a recommended practice) , that can potentially buy you time to analyze the problem.
    3. you should also check if weblogic objects are leaking , check the jprobe snapshots if you have any to see if you find any weblogic object that are not getting garbage collected and growing continuously. there have been a few memory leak fixes since 8.1 release. if you find something contact support@bea and find out if any existing fix will help.

  • I need  How to retrive data from sap r/3   using weblogic server

    Hi every body .
    I need how to retrieve r/3 data  using BAPI methods
    and using weblogic server
    very critical

    Hai.
    check the links.
    http://www.bea.com/content/news_events/white_papers/BEA_WLP_SAP_Portlets_81.pdf
    http://www.info-sun.com/docs/wp_sapinter.pdf
    regards.
    sowjanya.b

Maybe you are looking for