Design and Source JSP views no longer in sync

Been using the product about a week now. All of a sudden, when I make changes to the Design editor, they are no longer reflected in the .jsp file. So basically, the product no longer works.
Any ideas?

Okay, I figured out what's happening, but not yet how to stop it from happening again...
Unfortunately, I selected to upgrade from the menu (big mistake). Basically, the process ran all night and never finished. Meanwhile, it placed a nasty little file called .com.sun.deployment.backend in the C:\Compiler\Sun\Creator\SunAppServer8\domains\creator\applications\backup\j2ee-modules folder, apparently keeping track of the perpetually failing update. When I deleted the file, I can edit and run.
When I exit the app and come back in, the file is back, and I'm in the same boat. all over again.
Anyone know how to turn off this update process?
Thx.

Similar Messages

  • Jdeveloper 10.1.3 open a page in design and source mode simultaneously

    I want to open a page editor in design and source mode simultaneously on the same file.
    Kind of stupid question, but I could not find the answer in the help..

    OK ignore this message.
    For those who want to know - it is simple - right click on the tab with a a page name and select "Split Document" - I knew it was easy :)

  • "Code & Design" and "Code & Live" view problem i  am getting in Dreamweaver CC 2014

    Please anyone help me.
    I have 2 webpages, one is with 12 columns fluid grid based and another is without fluid grid based.
    Both are open in same site folder in Dreamweaver CC 2014.
    I want to resize/edit  my fluid grid div column in design view.
    But i m not getting the proper menu (view-->Code and Design)
    why the problem is happening ?
    If my non-fluid page is active for edit purpose than i am getting the "View"-->"Code and Design"
    if my fluid page is active for edit purpose than i am no getting the  "View"-->"Code and Design"
    but i am getting "View"-->"Code and live"
    i am unable to resize my fluid div using the resize handler.
    this is fluid based, i need "code and design view"
    this is non-fluid based

    There has been much discussion about this lately.  You can add your vote for a return of Design View below.
    Provide "Design View" for Fluid Grid Webpages
    It's an "improvement" made to the October release to promote more people to use Live View editing in FGLayouts.  As we're finding out, the removal of Design View in FGLayouts is severely impacting people's workflows.
    Workarounds:
    Step back to CC June release from links below
    Win: http://download.adobe.com/pub/adobe/dreamweaver/win/cc/Dreamweaver_14_LS20.exe
    Mac: http://download.adobe.com/pub/adobe/dreamweaver/mac/cc/Dreamweaver_14_LS20.dmg
    or put an X in the FGLayout CSS comments
    Change this:
    Dreamweaver Fluid Grid Properties
    dw-num-cols-mobile:        5;
    dw-num-cols-tablet:        8;
    dw-num-cols-desktop:    12;
    dw-gutter-percentage:    25;
    to this:
    Dreamweaver Fluid Grid Properties
    dw-num-cols-mobile:      X;
    dw-num-cols-tablet:        8;
    dw-num-cols-desktop:    12;
    dw-gutter-percentage:    25;
    Nancy O.

  • Portal design and source code

    Hi
    How can I make the HTML generated from the portal more readable? When I view the page source some tags like table, div are separated into few lines.
    I have a portal composed as one main book (book1). book1 has some pages (page1). Then each page has one book (book2). That book can has 1 to n pages (p1, p2....pn). Can I just put book2 in book1, or even p1 in book1 if book2 only has one page p1? What's the difference? I will think it's simpler.
    Thanks

    If you're using WLP 10.0 or later, use the Bighorn look and feel as your starting point. In Bighorn's skeleton, we've cleaned up a lot of the markup to make it easier to read and understand.
    You might also look into Firebug (http://getfirebug.com) or another web development tool of similar ilk, to help you when you're trying to read rendered markup.
    George

  • Updated to os4.3.3 and to itunes 10.2.2 and ipod touch will no longer work (sync) to computer.  I have removed all Apple Software and reinstalled and this did not fix the probelm

    I updated my ipod touch 3rd generation to the new operating system 4.3.3 and itunes to the latest.  I have a WindowsXP machine all was working fine until the updates.  Since then after trying many things. Currently unable to transfer music to the ipod.

    Found solution after trying many things that were recommended in the Apple error messages.
    The problem was resolved after I totally removed my Security Software.

  • DW CS3: Selection between code and design no longer in sync

    All version of dreamweaver which supported mixed design/code
    view so far
    kept the selection in sync. I.e. if I select "Hello World" in
    the WYSIWYG
    view, it selects the markup in the code view above.
    This make a big part of the workflow I have, getting quickly
    oriented which
    code renders what, and I suppose I'm not the only one.
    In CS3 the selections are no longer in sync. I tried various
    key combos, and
    double-click+ shift seemed to do the trick... from time to
    time, then
    stopped working at all.. I'm confused...
    Can anyone reproduce this?
    Regards, Stan Vassilev

    If you contact Adobe Support by chat or phone they can take care of the deactivations for you as long as you can prove you own the license. 
    Serial number and activation support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • JSP generates error - thread.java:481 - Source code viewing is disabled

    I run IBM WebSphere 3.5.3 on a WinNT platform. When I try to run my JSP testpage (which is a normal HTML page with jsp extension) I get the error message:
    thread.java:481 - Source code viewing is disabled.
    What is this? What can I do to get it running?
    I have made the webapplication and application server and it seems to run fine.
    Thanks in advance.

    I thought I had done it correctly, but I must have missed out on something. I tried my jsp code in the "examples" folder and it worked there. I am now using the "examples" folder instead. Thanks for your reply :)

  • How to create list of a View's column names and source

    Using SQL 2005, 2008, and 2012
    How to create list of a View's column names and source. For the following example would like to @Print something like the following.  Does anyone already have some code to do this? I realize there are probably some gotchas, but the views that I am looking
    at to use this follows the code snippet pattern below.
    DBACCT.[Account Number]
    dbo.ConvertDate(DBACDT). [Boarding Date]
    DBXES.DBXES
    CREATE VIEW [dbo].[v_ods_DBAL]
    AS
    SELECT DBACCT AS [Account Number], dbo.ConvertDate(DBACDT) AS [Boarding Date], DBXES
    FROM dbo.ods_DBAL

    The column information can be obtained from INFORMATION_SCHEMA.COLUMNS view using logic like below
    SELECT c.COLUMN_NAME,c.DATA_TYPE
    FROM INFORMATION_SCHEMA.COLUMNS c
    WHERE EXISTS (SELECT 1
    FROM INFORMATION_SCHEMA.TABLES
    WHERE TABLE_NAME = c.TABLE_NAME
    AND TABLE_TYPE='VIEW')
    http://technet.microsoft.com/en-us/library/ms188348.aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • I have created numerous forms in Designer and for some reason, "Edit in Designer" from PDF, I cannot edit any of the fields in Design View.

    I have created numerous forms in Designer and for some reason, "Edit in Designer" from PDF, I cannot edit any of the fields in Design View.

    Is it possible you accidentally put the fields on the master page?

  • Switching between Design and JSP tabs add code?

    I am new to SJSC and I am taking the time to go through all of the little odds & ends of the IDE.
    I was looking at:
    http://blogs.sun.com/roller/page/tor?entry=computing_html_on_the_fly
    And I decided to try this.
    When I add the following in the JSP tab:
    <h:outputText binding="#{Page1.tableHtml}" id="outputText1"/>Save.
    Then click on the Design tab, then go back to the JSP tab, I now have:
    <h:outputText binding="#{Page1.tableHtml}" id="outputText1"/>
    <h:outputText binding="#{Page1.outputText1}" id="outputText1"/>It's late here, but this doesn't make any sense, why would switching between Design and JSP tabs add code?
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Girish: I followed these steps:
    1.) Downloaded:
    Sun Java Studio Creator 2, Multilanguage creator-2-windows-ml.exe 254.23 MB
    2.) When I started the install, I received the message:
    Welcome to Sun Java(TM) Studio Creator 2! You are installing: Sun Java Studio Creator 2 development environment Sun Java System Application Server Platform Edition 8.1 2005Q1 Update Release 2 Bundled database
    3.) Installed version:
    Product Version: Java Studio Creator 2 (Build 060120)
    IDE Versioning: IDE/1 spec=5.9.1.1 impl=060120
    Also, Under, the Palette window: Standard component list, there is a component labeled Output Text.
    When placed on a jsp, the following code is produced:
    <h:outputText binding="#{Page1.outputText1}" id="outputText1" style="position: absolute; left: 24px; top: 48px"/>Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • W3_PUBLISH_SERVICES and dump while viewing the source code in se80

    Hi,
    external ITS6.20  on SAP R/3 4.7
    we have installed ITS and we published the templates. When we published the teampltes using the standard prgram   W3_PUBLISH_SERVICES, and around 43 of the services fail  Not sure if this is an error
    After the upgrade is finished, you must make this up, before you can use the Internet applications of the system. For a detailed procedure description see Note 399578.
    or not.
    On the other hand when i go to se 80 and try to view the source code of any ITS service lets say PZM3 in my case, the entire application goes for a dump with error
    Exception condition "INVALID PARAM VERB: TEXTSTREAM" raised.
    What happened?
    The current ABAP/4 program encountered an unexpected
    situation.
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    Error analysis
    A RAISE statement in the program "SAPLOLEA " raised the exception
    condition "INVALID PARAM VERB: TEXTSTREAM".
    Since the exception was not intercepted by a superior program
    in the hierarchy, processing was terminated.
    Short description of exception condition:
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    function module from the display of active calls.
    How to correct the error
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    The termination occurred in the ABAP program "SAPLOLEA " in
    "AC_FLUSH_CALL_INTERNAL".
    The main program was "SAPMSEU0 ".
    The termination occurred in line 220 of the source code of the (Include)
    program "LOLEAU10 "
    of the source code of program "LOLEAU10 " (when calling the editor 2200).
    Any deas what the error could be??
    On the other hand i tried to see the Service 'System' and 'webgui' from se80 di dnot find any..
    Any ideas if we are missing in our landscape.
    Message was edited by:
            RajK
    Message was edited by:
            RajK

    Hi RajK
    > On the other hand i tried to see the Service 'System'
    > and 'webgui' from se80 di dnot find any..
    > Any ideas if we are missing in our landscape.
    The services system and webgui are shipped within the installer of ITS 6.20. So you can't find them in the database via SE80, instead only in the filesystem.
    Not your main problem, I know, but I just wanted to clarify.
    Best regards,
    Henning

  • Using Aperture 3 and Lion I can no longer view .mov file

    Using Aperture 3 and Lion I can no longer view .mov files from a Canon G11. I get a thumbnil which is a triangle with !. If I right click I can open it with Quick time. I cannot import any of the files into iMovie as it does not recognize them in Aperture or iPhoto.  From other dicussions I tried removing 3ivvxVideoCodec.componenet from Quiktime Library and retarted with no success, so iI restored the file. 

    You are welcome;
    there is another problem with videos, that might apply in your your case, when you reimport the videos, after you deinstalled the codec - the location you are importing from, and the permission settings, see this post:
    Re: Aperture cannot read newly imported video since Lion upgrade.
    Regards
    Léonie

  • JSP, View Object and ? parameter

    I have a view object that uses a ? type parameter in its query. The use ? type parameter checkbox has been marked in the view and the view compiles successfully.
    Now this view is being used by the Data Web bean JS Tree Browser in a JSP page.
    The JSP code
    <jsp:useBean class="oracle.jbo.html.databeans.JSTreeBrowser" id="roleMenuTree" scope="request" >
    <%
    roleMenuTree.setDepthLevel(6);
    roleMenuTree.setReleaseApplicationResources(false);
    roleMenuTree.setDisplayAttributes("Name");
    roleMenuTree.initialize(pageContext,"Tasksys_TasksysAppModule.MenuTreeView");
    Object x[] = new Object[1];
    x[0] = "tasksys";
    roleMenuTree.getRowSet().getViewObject().setWhereClauseParams(x);
    roleMenuTree.getRowSet().getViewObject().executeQuery();
    roleMenuTree.render();
    %>
    </jsp:useBean>
    But I end up getting the following error. WHY ?
    Error: 500
    Location: /tasksys/jsp/login_submit.jsp
    Internal Servlet Error:
    javax.servlet.ServletException: JBO-27122: SQL error during statement preparation. Statement: SELECT Menus.ID, Menus.NAME, Menus.DESCRIPTION, Menus.MODULE, Menus.MEN_ID FROM MENUS Menus WHERE menu_allowed(?, to_char(id)) = 'Yes'
    void org.apache.jasper.servlet.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void org.apache.tomcat.core.ServletWrapper.doService(org.apache.tomcat.core.Request, org.apache.tomcat.core.Response)
    void org.apache.tomcat.core.Handler.service(org.apache.tomcat.core.Request, org.apache.tomcat.core.Response)
    void org.apache.tomcat.core.ServletWrapper.service(org.apache.tomcat.core.Request, org.apache.tomcat.core.Response)
    void org.apache.tomcat.core.ContextManager.internalService(org.apache.tomcat.core.Request, org.apache.tomcat.core.Response)
    void org.apache.tomcat.core.ContextManager.service(org.apache.tomcat.core.Request, org.apache.tomcat.core.Response)
    void org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(org.apache.tomcat.service.TcpConnection, java.lang.Object[])
    void org.apache.tomcat.service.TcpWorkerThread.runIt(java.lang.Object[])
    void org.apache.tomcat.util.ThreadPool$ControlRunnable.run()
    void java.lang.Thread.run()
    null

    You need to prepare the query using the setWhereClauseParams(x) call, before you initialize your data web bean. Otherwise, if you call the methods after you initialize your web bean, the context has already been set and the error occurs.
    You should insert another data web bean into your page somewhere at the top and use it to setup your query and create a view object. You should remove this bean's Render() method since you are only interested in the Initialize() method here. Add your code to prepare the query and create the view object.
    Then when your JS Tree Browser executes, it will be able to call getRowSet() on the View Object you created already.

  • I can no longer use all of the "Computer Management" tools against a remote computer. "Local Users and Groups", "Event Viewer", "Performance Logs and Alerts" and "Device Manager"

    Hello All,
    I can no longer use all of the "Computer Management" tools against a remote
    computer. "Local Users and Groups", "Event Viewer", "Performance Logs and
    Alerts" and "Device Manager"
    kindly see the below snapshot for assistance
    REGARDS DANISH DANIE

    This link may help....
    http://windowsxp.mvps.org/admintools.htm
    Freeman

  • Servlet - JSP design and performance (Tomcat)

    Hi everybody.
    I'm new in Tomcat and servlet/JSP development.
    My current design involves only one servlet (does the business logic, JSP page selections) which delegates the requests to several JSP-s (the JSP-s are included with the "jsp:include" tag).
    The questions:
    1. Has this design some performance drawbacks in contrast with a design in which several servlets are used (some of the included JSP pages will be the same)?
    2. How Tomcat resolves concurent requests (if the same servlet is involved or two separate servlets are involved)?
    Any response is greatly appreciated.
    Thanks.

    A few things to keep in mind:
    Every JSP is really a Servlet. Behind the scenes, these are compiled into Servlets which are then run. So, you really do have an implementation with more than one Servlet.
    Controller Servlet's (one per JVM) are a very popular architecture choice. Struts, Spring and a number of other frameworks use this model. There should not be a difference between running multiple versus a single Servlet, and even if there is, your application undoubtedly has scaling bottlenecks other than this (probably orders of magnitude higher) than worrying about this particular issue.
    Tomcat dispatches the request to whatever Servlet satisfies the servlet-mapping that the URL matches. Since Servlet's are designed to be written thread-safe, and since the container will manage those instances, do not worry.- Saish

Maybe you are looking for

  • Printing XML Docs in List view created by XF builder

    Hi, I have an iview which displays a list of XML documents created using XMLForms. I want to add Print functionality in this iview. I tried adding a simple HTML link calling window.print() in the <project>RenderListItem.xsl file. It works fine. But t

  • New logic board...now LOUD fans

    hi everyone.. i have a MBP 15". I had my logic board replaced last week due to graphics and power problems that i was experiencing. Ever since, the fans turn on to full blast (6000+ rpm) for the littlest things. If i open itunes, fans on, open word,

  • Media Encoder support for 4K XAVC-S (H.264 Level 5.2)

    Has anyone heard when encoding for H.264 Level 5.2 (XAVC-S/XAVC) might be available for Premiere CC/Media Encoder?

  • Web Server died after 10.6.2 update

    I had my server completely setup and it suddenly stopped accepting web connections. It acts like the web page is not online however when I check the service its running. This happened before and I ended up reinstalling the server. I don't have the ti

  • How can I get the entire PS cc 2014 software to be visible on Mac 30" with OS Maverick?

    I have tried reopening software, looked in preferences, tried changing screen resolution, etc. This situation suddenly happened and is the only cc software affected in this manner.