Disable servlet reload

          I need to disable servlet reload(WLS 7 SP4) for performance reason. I set the
          servlet-reload-check-secs to -1 in the container-descriptor of the web.xml of
          my war file. However when I deploy my war file, from the admin console the "Reload
          Period" is set to 1. Is there a way to make the deployment set the default "Reload
          Period" to -1 during deployment? I hate to deploy, change "Reload Period" from
          console, shutdown server, them restart server. Thanks.
          

Daniel Lo wrote:
          > I need to disable servlet reload(WLS 7 SP4) for performance reason. I set the
          > servlet-reload-check-secs to -1 in the container-descriptor of the web.xml of
          > my war file. However when I deploy my war file, from the admin console the "Reload
          > Period" is set to 1. Is there a way to make the deployment set the default "Reload
          > Period" to -1 during deployment? I hate to deploy, change "Reload Period" from
          > console, shutdown server, them restart server. Thanks.
          You can use the following in your web.xml
          <context-param>
          <param-name>weblogic.servlet.reloadCheckSecs</param-name>
          <param-value>-1</param-value>
          </context-param>
          Nagesh
          

Similar Messages

  • How to make servlets reloadable in iplanet web server in solaris??

    hi all,
    does anyone know how to make servlets reloadable in iplanet ??? Thanks for help

    Hi there,
    I think your question is about "Dynamic Class Reloading", also named as Hot deployment. and the following lines may be helpful.
    iAS 6.0 SP3 and later version supports new hot deployment features through dynamic class
    reloading of EJBs.By default, dynamic servlet, EJB and registered JSP reloading is disabled in iPlanet Application Server.
    To enable dynamic reloading of servlets, EJBs and registered JSPs, perform the following steps:
    1.Start iPlanet Registry Editor, kregedit, and modify the Disable value under the Versioning key:
    SOFTWARE/iPlanet/Application Server/6.0/CCS0/SYSTEM_JAVA/Versioning
    2.Set the Disable value to 0 (By default, the Disable value is set to 1)
    3.Restart iPlanet Application Server to enable the change
    To hot deploy your application, simply compile and replace the file in the appropriate directory or, use iasdeploy to redeploy
    applications.
    I recommand you to check out the iAS's release notes (http://docs.iplanet.com/docs/manuals/ias/60/sp3/rn_sp3.html#20766) for more infomation.
    Good luck
    Shen Jie
    Developer Technical Support
    Sun Microsystems
    http://sun.com/developers/support

  • Disabling dynamic reloading

    Hi, i'm using iWS 6.0 SP2 on solaris 8 and i don't know how to disable dynamic reloading of classes. I have tried to set the reload-interval parameter to a negative number, to set the class-loader classpath parameter to "", but it still reloads the classes.
    The only thing i can think of is setting the reload-interval to a huge number, but there must be another way.
    Juan

    It's always Microsoft who gets blaimed ;-)
              First, I am almost certain that any OS will not let you copy a file if there
              is an opened file descriptor of the file owned by some other process.
              Second, luckily the class loader code that handles this is pure Java, so it
              takes advantage of garbage collection here: if there is a live reference to
              an object, it's not going to be freed under you.
              Hope this helps.
              -ruslan
              Andy Nuss wrote:
              > Hi,
              >
              > Question concerning dynamic reloading, as regards the property:
              > weblogic.httpd.servlet.reloadCheckSecs=xxx
              >
              > While the NT OS is copying the file, rewriting the class file which was
              > previously there, is the dynamic class loader smart enough to figure out
              > that the bytecodes where in the middle of being copied, hence in an
              > inconsistent state, or does it crash?
              >
              > Thanks,
              > Andy
              

  • Disable servlet autodeploy in nostage mode

    We're running Weblogic 8.1 SP5 on Solaris. The documentation for staging mode <b>nostage</b> includes the following:
    <br><br>
    "With nostage deployments of exploded archive directories, WebLogic Server automatically detects changes to a deployment's JSPs or Servlets and refreshes the deployment. (This behavior can be disabled if necessary.)"
    <br><br>
    Questions:<br>
    1) How does one disable the behavior (Note: We tested and the behavior exists by default in both Production and Development modes)?
    <br>
    2) Is there any way to disable auto-refresh for Servlets but not JSP?

    I believe you should be able to set servlet-reload-check-seconds to -1 and set the JSP reload parameter to something else.
    See:
    http://e-docs.bea.com/wls/docs81/webapp/weblogic_xml.html
    -- Rob
    WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • How to disable class reloading feature

    Hi,
    how can I disable the reloading of servlet classes in oc4j?
    Thanks
    Günther

    no answer?
    Please help me!
    Thanks
    Günther

  • How do I disable the reload on the back button of Firefox and have it display the cached/prior page version?

    Every time I click the "back" button, Firefox reloads the previous page I was on. How do I disable the reload and have Firefox display the cached/prior page version? The whole point of going "back" is to see what we were just looking at.. I don't want a refreshed version of it. Any help would be greatly appreciated! I am running version 3.6.12.

    No problem. It's not a request that's been seen much if at all to be honest. I rely on them myself.
    You can always feel free to provide feedback to Apple though.
    http://www.apple.com/feedback/

  • Dynamic Servlet reload activation in Weblogic 6.0 using web applications

    Dynamic Servlet reload activation in Weblogic 6.0 using web applications
              Add the next lines to your web.xml file
              <context-param>
              <param-name>weblogic.httpd.servlet.reloadCheckSecs</param-name>
              <param-value>0</param-value>
              </context-param>
              <context-param>
              <param-name>weblogic.httpd.servlet.classpath</param-name>
              <param-value>C:/bea/wlserver6.0/config/myServer/applications/MyApp/WEB-INF/serverclasses</param-value>
              </context-param>
              Register your servlet on web.xml file.
              <servlet>
              <servlet-name>Test</servlet-name>
              <servlet-class>Test</servlet-class>
              </servlet>
              <servlet-mapping>
              <servlet-name>Test</servlet-name>
              <url-pattern>/Test/*</url-pattern>
              </servlet-mapping>
              <servlet>
              Create a directory under WEB-INF called "serverclasses"
              copy your servlet(also directories under serverclasses if your class has a package).
              Don't forget to remove from \classes the same servlet class file.
              I hope it could be helpfull for the community.
              Regards
              

    Dynamic Servlet reload activation in Weblogic 6.0 using web applications
              Add the next lines to your web.xml file
              <context-param>
              <param-name>weblogic.httpd.servlet.reloadCheckSecs</param-name>
              <param-value>0</param-value>
              </context-param>
              <context-param>
              <param-name>weblogic.httpd.servlet.classpath</param-name>
              <param-value>C:/bea/wlserver6.0/config/myServer/applications/MyApp/WEB-INF/serverclasses</param-value>
              </context-param>
              Register your servlet on web.xml file.
              <servlet>
              <servlet-name>Test</servlet-name>
              <servlet-class>Test</servlet-class>
              </servlet>
              <servlet-mapping>
              <servlet-name>Test</servlet-name>
              <url-pattern>/Test/*</url-pattern>
              </servlet-mapping>
              <servlet>
              Create a directory under WEB-INF called "serverclasses"
              copy your servlet(also directories under serverclasses if your class has a package).
              Don't forget to remove from \classes the same servlet class file.
              I hope it could be helpfull for the community.
              Regards
              

  • How to disable Refresh,Reload in browser and user should not allow to multiple browser sessions ?

    Dear All,
    How to disable Refresh,Reload in browser and end user should not allow to multiple browser sessions in portal.Where we need to configure the settings or any code in masthead or any other component. My server version is 7.4 - SP5 .Please help us.
    Thanks for advance,
    BR,
    Durga Rao.

    Dear all,
    i am able to logoff the click refresh button on keyboard.I am using this code to log off the user into the portal.
    document.onkeydown = function(e)
      var key;
      if (window.event) key = event.keyCode
      else
      var unicode = e.keyCode ? e.keyCode : e.charCode
      key = unicode
      switch (key)
      { //event.keyCode
      case 116: //F5 button
        LSAPI.sessionPlugin.logoff();
      event.returnValue = false;
      key = 0; //event.keyCode = 0;
      return false;
      case 82: //R button
      if (event.ctrlKey)
    LSAPI.sessionPlugin.logoff();
      event.returnValue = false;
      key = 0; //event.keyCode = 0;
      return false;
      case 91: // ctrl + R Button
    LSAPI.sessionPlugin.logoff();
      event.returnValue= false;
      key=0;
      return false;
    Thanks.
    But i am unable to control the multiple windows opening the browser.So any one can tell me the how to block the new window and new tab/duplicate tab option.
    BR,
    Durga Rao.

  • Servlet reloading doesn't work

    Running WL 5.1 SP6 and can't get servlet reloading to work. Have the
              necessary lines in weblogic.properties:
              weblogic.httpd.servlet.classpath=<my classpath>
              weblogic.httpd.servlet.reloadCheckSecs=1
              The servlets are in a web app so I have the web app's WEB-INF/classes, where
              the servlets reside, in weblogic.httpd.servlet.classpath.
              Possibly this is a problem only with web apps? Anyone else run into this?
              Thanks.
              

    From my understanding, putting the servlet classes in the WEB-INF/classes
              directory eliminates the need to put them into any classpath (servlet, weblogic,
              or otherwise). Put them back into the WEB-INF /classes directory and make sure
              that this directory is not in the weblogic or servlet classpath.
              Hope this helps,
              Robert
              Paul Folbrecht wrote:
              > Ok, that makes sense. But, I tried what you suggested in your mail- moving
              > them to /servletclasses instead of /classes, and putting that directory on
              > the servlet classpath with this line:
              >
              > weblogic.httpd.servlet.classpath=e:/development/Projects/ExampleWebApp/deplo
              > yment/Web-inf/servletclasses
              >
              > I then get a ClassNotFoundException when trying to hit any servlet. Don't
              > know what could be wrong.
              >
              > Mike Reiche <[email protected]> wrote in message
              > news:[email protected]...
              > >
              > > Well, you have to figure something else out or put up with that
              > > behavior.
              > >
              > > As long as the servlet classes are in your WEBLOGICCLASSPATH, they
              > > will not get reloaded. The servlet class loader first tries to
              > > get the servlet class from the 'parent' class loader - and if it
              > > can find it there, it will not load a new one. That is why your
              > > modified servlets do not get reloaded.
              > >
              > > Mike
              > >
              > > "Paul Folbrecht" <[email protected]> wrote:
              > > >I'm afraid I can't agree. Also, I tried it, and it doesn't
              > > >work. Putting
              > > >servlets in WEB-INF/servletclasses results in ClassNotFoundExceptions
              > > >on
              > > >the servlet. The server doesn't know about this directory-
              > > >why should it?
              > > >There is no such directory mentioned anywhere in the J2EE
              > > >webapp spec. I
              > > >see only WEB-INF/classes mentioned.
              > > >
              > > >Also, the servlet classpath is explicity set in weblogic.properties
              > > >as I
              > > >noted below.
              > > >
              > > >In addition,
              > > >Mike Reiche <[email protected]> wrote in message
              > > >news:[email protected]...
              > > >>
              > > >> The servlets should be in something like WEB-INF/servletclasses
              > > >> which is ONLY in weblogic.httpd.servlet.classpath.
              > > >>
              > > >> You say you have them in WEB-INF/classes, which is also
              > > >in
              > > >WEBLOGICCLASSPATH
              > > >> (?) so they won't be reloaded.
              > > >>
              > > >> Mike
              > > >>
              > > >>
              > > >>
              > > >> "Paul Folbrecht" <[email protected]> wrote:
              > > >> >Running WL 5.1 SP6 and can't get servlet reloading
              > > >to
              > > >> >work. Have the
              > > >> >necessary lines in weblogic.properties:
              > > >> >
              > > >> >weblogic.httpd.servlet.classpath=<my classpath>
              > > >> >weblogic.httpd.servlet.reloadCheckSecs=1
              > > >> >
              > > >> >The servlets are in a web app so I have the web app's
              > > >> >WEB-INF/classes, where
              > > >> >the servlets reside, in weblogic.httpd.servlet.classpath.
              > > >> >
              > > >> >Possibly this is a problem only with web apps? Anyone
              > > >> >else run into this?
              > > >> >
              > > >> >Thanks.
              > > >> >
              > > >> >
              > > >> >
              > > >>
              > > >
              > > >
              > >
              

  • Servlet reloading not working with WLS 5.1 sp8

              I downloaded and installed WLS 5.1's sp8 to fix the "java.net.SocketException: Connection aborted by peer: socket write error"
              problem. Although that problem is fixed, I have found that, however, the servlet (automatic) reloading does not
              work anymore. If I remove the sp8 from my Java system classpath and WL classpath (i.e. not using sp8), then
              the servler reloading works fine.
              Does anybody experience similar problem or have I forgot to do something?
              WLS properties/env vars setting:
              - weblogic.httpd.servlet.reloadCheckSecs=0
              - WEBLOGIC_CLASSPATH=%WEBLOGIC_HOME%\lib\weblogic510sp8.jar;...
              - JAVA_CLASSPATH=%WEBLOGIC_HOME%\lib\weblogic510sp8boot.jar;...
              Thanks in advance for any help.
              

              I've experienced the same problem with both sp6 and sp8. In both cases I performed several test, including
              - varied the value of weblogic.httpd.servlet.reloadCheckSecs
              - changes to the package depth the servlet belonged to
              - changes to the string length of the package names the servlet belonged to
              At best, the servlet would reload sometimes. I've moved back to sp5 and the problem has subsided.
              Note: I did not try registering the servlet to see how that would effect the dynamic reloading.
              Hope this helps
              - Dave
              "Michel Dinh" <[email protected]> wrote:
              >
              >I downloaded and installed WLS 5.1's sp8 to fix the "java.net.SocketException: Connection aborted by peer: socket write error"
              >problem. Although that problem is fixed, I have found that, however, the servlet (automatic) reloading does not
              >work anymore. If I remove the sp8 from my Java system classpath and WL classpath (i.e. not using sp8), then
              >the servler reloading works fine.
              >
              >
              >Does anybody experience similar problem or have I forgot to do something?
              >
              >WLS properties/env vars setting:
              >
              >- weblogic.httpd.servlet.reloadCheckSecs=0
              >- WEBLOGIC_CLASSPATH=%WEBLOGIC_HOME%\lib\weblogic510sp8.jar;...
              >- JAVA_CLASSPATH=%WEBLOGIC_HOME%\lib\weblogic510sp8boot.jar;...
              >
              >Thanks in advance for any help.
              

  • How do I disable automatic reload of web pages when forced quit is uaed?

    I ran across a web site that was part of a scam. It pretended to be one of the security programs on my computer and reported that my Computer had malware (it was the malware). The only way out and not activate the scam program was to use the Windows Task Manager to kill Firefox.
    When you do this the next time Firefox is started it tries to reload the last pages visited including the bad web site. How do I disable this feature? Or force Firefox to ask me which pages to load every time.
    Automatic should not be allowed because of these scams. Fortunately I had a work around, I pulled the network cable when I restarted Firefox causing a different failure that could be cleared.

    Set the pref [http://kb.mozillazine.org/browser.sessionstore.max_resumed_crashes browser.sessionstore.max_resumed_crashes] to 0 on the about:config page to get the about:sessionrestore page immediately with the first restart after a crash has occurred or the Task Manager was used to close Firefox.
    That will allow you to deselect the tab(s) that you do not want to reopen, but will allow to reopen the other tabs.
    See:
    * http://kb.mozillazine.org/Session_Restore#Restoring_a_session_after_a_crash
    * http://kb.mozillazine.org/Browser.sessionstore.max_resumed_crashes
    See also:
    * https://wiki.mozilla.org/Session_Restore#Preferences

  • Weblogic servlet reload won't work

    Please help! I am using WLS 5.1 sp6 (NT) and trying to use the auto reload setting for the servlets but weblogic won't refresh the change dynamically. I have set the following entries in the weblogic.properties file:
              weblogic.httpd.servlet.classpath=D:/weblogic/myserver/servletclasses
              weblogic.httpd.servlet.reloadCheckSecs=1
              Thanks in advance.
              Peter
              

              It would be really nice if WL would report that with an error/warning message.
              Mike
              Robert Patrick <[email protected]> wrote:
              >Make sure that this directory is NOT in either the Java CLASSPATH or
              >the weblogic.class.path...
              >
              >"Peter C. Penny" wrote:
              >
              >> Please help! I am using WLS 5.1 sp6 (NT) and trying to use the auto
              >reload setting for the servlets but weblogic won't refresh the change
              >dynamically. I have set the following entries in the weblogic.properties
              >file:
              >>
              >> weblogic.httpd.servlet.classpath=D:/weblogic/myserver/servletclasses
              >> weblogic.httpd.servlet.reloadCheckSecs=1
              >>
              >> Thanks in advance.
              >>
              >> Peter
              >
              

  • Servlet Reloading Problem!

    JSP + Bean is OK!
    But, Servlet + Bean occur a reloading problem.(Reloading does not happen)
    For example,
    1) TestClass.java (Bean)
    public class TestClass {
    private String txt;
    public TestClass() {
    txt = "Test!!"; ---(1)
    public String getTxt() {
    return txt;
    2) Test.java (Servlet)
    public class Test extends HttpServlet {
    public void service(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
    TestClass testClass = new TestClass();
    PrintWriter out = res.getWriter();
    out.println(testClass.getTxt());
    In above examples, though I change txt String(number (1)) Bean reloading does not occur. So old txt String shows.
    In Tomcat, such problem does not happen.
    Is this a problem of OC4J?
    Thanks.
    null

    Well, only servlets are supposed to be reloaded, not their dependent classes.
    If you are using Tomcat 4.x, then there might be an explanation. It seems that Tomcat 4.x will simply reload the entire web app context if it detects that a servlet (not a JSP!) has changed. Just define a servlet context listener to see that.
    Regards,
    Vadym

  • Servlet reload

    hi there,
    how can i reload servlet? i use destroy(), but if i start webpage with servlet again, init() didn`t run. i have to restart tomcat to run init() :(
    thx a lot
    have nice day

    with tomcat:
    http://yourserver:yourport/manager/reload?path=/yourapppath
    Look at Mnager app HOWTO in tomcat doc

  • Need to enable feature of servlet reloading in Tomcat

    Hello
    I wants to enable autoreload feature in tomcat so that i need not to stop tomcat web server again and again
    Thanks

    Hi,
    As the above information i tried to add line <DefaultContext reloadable="true" />. But it is not working for me.
    Here is my server.xml file.
    <?xml version='1.0' encoding='utf-8'?>
    <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements. See the NOTICE file distributed with
    this work for additional information regarding copyright ownership.
    The ASF licenses this file to You under the Apache License, Version 2.0
    (the "License"); you may not use this file except in compliance with
    the License. You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    -->
    <!-- Note: A "Server" is not itself a "Container", so you may not
    define subcomponents such as "Valves" at this level.
    Documentation at /docs/config/server.html
    -->
    <Server port="8005" shutdown="SHUTDOWN">
    <!--APR library loader. Documentation at /docs/apr.html -->
    <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
    <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
    <Listener className="org.apache.catalina.core.JasperListener" />
    <!-- JMX Support for the Tomcat server. Documentation at /docs/non-existent.html -->
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
    <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
    <!-- Global JNDI resources
    Documentation at /docs/jndi-resources-howto.html
    -->
    <GlobalNamingResources>
    <!-- Editable user database that can also be used by
    UserDatabaseRealm to authenticate users
    -->
    <Resource name="UserDatabase" auth="Container"
    type="org.apache.catalina.UserDatabase"
    description="User database that can be updated and saved"
    factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
    pathname="conf/tomcat-users.xml" />
    </GlobalNamingResources>
    <!-- A "Service" is a collection of one or more "Connectors" that share
    a single "Container" Note: A "Service" is not itself a "Container",
    so you may not define subcomponents such as "Valves" at this level.
    Documentation at /docs/config/service.html
    -->
    <Service name="Catalina">
    <!-- Define properties for each web application -->
    <DefaultContext reloadable="true" />
    <!--The connectors can use a shared executor, you can define one or more named thread pools-->
    <!--
    <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
    maxThreads="150" minSpareThreads="4"/>
    -->
    <!-- A "Connector" represents an endpoint by which requests are received
    and responses are returned. Documentation at :
    Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
    Java AJP Connector: /docs/config/ajp.html
    APR (HTTP/AJP) Connector: /docs/apr.html
    Define a non-SSL HTTP/1.1 Connector on port 8080
    -->
    <Connector port="8080" protocol="HTTP/1.1"
    connectionTimeout="20000"
    redirectPort="8443" />
    <!-- A "Connector" using the shared thread pool-->
    <!--
    <Connector executor="tomcatThreadPool"
    port="8080" protocol="HTTP/1.1"
    connectionTimeout="20000"
    redirectPort="8443" />
    -->
    <!-- Define a SSL HTTP/1.1 Connector on port 8443
    This connector uses the JSSE configuration, when using APR, the
    connector should be using the OpenSSL style configuration
    described in the APR documentation -->
    <!--
    <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
    maxThreads="150" scheme="https" secure="true"
    clientAuth="false" sslProtocol="TLS" />
    -->
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
    <!-- An Engine represents the entry point (within Catalina) that processes
    every request. The Engine implementation for Tomcat stand alone
    analyzes the HTTP headers included with the request, and passes them
    on to the appropriate Host (virtual host).
    Documentation at /docs/config/engine.html -->
    <!-- You should set jvmRoute to support load-balancing via AJP ie :
    <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">
    -->
    <Engine name="Catalina" defaultHost="localhost">
    <!--For clustering, please take a look at documentation at:
    /docs/cluster-howto.html (simple how to)
    /docs/config/cluster.html (reference documentation) -->
    <!--
    <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
    -->
    <!-- The request dumper valve dumps useful debugging information about
    the request and response data received and sent by Tomcat.
    Documentation at: /docs/config/valve.html -->
    <!--
    <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
    -->
    <!-- This Realm uses the UserDatabase configured in the global JNDI
    resources under the key "UserDatabase". Any edits
    that are performed against this UserDatabase are immediately
    available for use by the Realm. -->
    <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
    resourceName="UserDatabase"/>
    <!-- Define the default virtual host
    Note: XML Schema validation will not work with Xerces 2.2.
    -->
    <Host name="localhost" appBase="webapps"
    unpackWARs="true" autoDeploy="true"
    xmlValidation="false" xmlNamespaceAware="false">
    <!-- SingleSignOn valve, share authentication between web applications
    Documentation at: /docs/config/valve.html -->
    <!--
    <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
    -->
    <!-- Access log processes all example.
    Documentation at: /docs/config/valve.html -->
    <!--
    <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
    prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
    -->
    </Host>
    </Engine>
    </Service>
    </Server>
    Can anyone tell me what i need to do to enable reloading?
    Thanks,
    Ram.

Maybe you are looking for

  • PDF Portfolio Layouts - How?

    I have Acrobat 9.0.0 and I'm trying to create a PDF Portfolio, but I am unable to change the layout. Every internet search I have found, shows the Layout toolbar automatically appearing, but I don't have that toolbar. I don't if my version doesn't al

  • Weird Lines during Playback??

    I just got a 2.4 MBP with 4 gigs of Ram, and Final Cut Studio 2 Full Version. I shot some footage for a class project with my DVX-100a on the 30p recording setting. I captured the footage and started going through it and noticed these weird lines, I

  • How do I rearrange photos in an album using iOS5?

    I want to rearrange photos in an album. IOS5 advertising says I can do this but I can't discover how. HELP!

  • Change documents in WTY after the Claim is "complete"

    Dear All, In WTY transaction, I am unable to view the change documents (Extras --> Change Documents) after the Claim is flagged off as "Complete" Is there a way to overcome this ? Thanks. Raj

  • Java3D Picking Problem

    Hi, I have problem with picking. I have two shapes 3D (for example) and if there are separately (not hidden) picking is OK. But when I rotate them using myMouseRotate or rotation.rotY(angle) so one of them is hiden, it's always pick me only one of th