Re: Running Struts on weblogic - more info

Below is a response that was snipped from the struts-user mail list. Yet
          another case of BEA dis-information! When will you guys finally admit that you
          don't totally support the JSP1.1/Servlet2.2 specification. SOS. (Same old
          S..t)
          The responses below are from Craig McClanahan who is one of the guys in involved
          in struts. I believe he is responsible for the effort, but don't quote me on
          that!
          WebLogic wrote:
          > You should be able to get past this point with service pack 5. One of the
          > problems with struts is that some of
          > the pages take advantage of non-standard behaviour in Tomcat, however. For
          > example, in the bean-cookie.jsp
          > test they attempt to set a property on a bean that was never useBeaned.
          > Section 2.13.2, JSP 1.1 spec:
          >
          ---------------------------- Begin Quote
          The "bean-cookie.jsp" actually uses <jsp:getProperty>, not <jsp:setProperty>.
          In this particular case the relevant spec language is Section 2.13.3:
          "An <jsp:getProperty> action places the value of a Bean instance
          property, converted to a String, into the implicit out object, from
          which you can display the value as output. The Bean instance
          must be defined as indicated in the name attribute before this point
          in the page (usually via a useBean action).
          Note the word "usually" -- the reason it is here is because custom tags can be
          defining elements as well, as long as they use the corresponding TagExtraInfo
          class and, in the tag, call pageContext.setAttribute() appropriately. In this
          page, the call
          <bean:cookie id="sess" name="JSESSIONID"/>
          is the defining element that looks up the cookie named "JSESSIONID" (more on
          that
          name below) and exposes it as a JSP bean. This tag precedes the use of the bean
          in statements like this:
          <jsp:getProperty name="sess" property="domain"/>
          which looks up the "domain" property of the cookie (i.e. it calls getDomain())
          and
          writes that to the output stream.
          Thus, this page conforms to the JSP 1.1 spec requirements.
          ---------------------------- End Quote
          >
          > The name of a Bean instance defined by a <jsp:useBean> element or some other
          > element. The Bean instance must contain the property you want to set. The
          > defining element (in JSP 1.1 only a <jsp:useBean> element) must appear
          > before the <jsp:setProperty> element in the same file.
          >
          ---------------------------- Begin Quote
          Note the phrase "or some other element" -- again, custom beans can be defining
          elements, so this page would be valid even if it had been using
          <jsp:setProperty>
          instead. It is interesting to note that the corresponding paragraph in the JSP
          1.2 draft specification (Section 4.2.2.1, p. 63) has been clarified to indicate
          this:
          "The name of a Bean instance defined by a <jsp:useBean>
          or some other element. The Bean instance must contain the
          property you want to set. The defining element must appear
          before the <jsp:setProperty> element in the same file.
          so the confusing parenthetical comment about <jsp:useBean> has been removed.
          Even
          if it's a little inconsistent in 1.1, the intent is clear -- custom tags can be
          defining elements for JSP-accessible beans. That is the whole point of the
          TagExtraInfo functionality.
          ---------------------------- End Quote
          > They also hard-code the Tomcat session identifier into the tests. If you
          > want them to work either change the weblogic cookie name to JSESSIONID or
          > change the references to JSESSIONID to WebLogicSession.
          >
          ---------------------------- Begin Quote
          Servlet API Specification, Version 2.2, Section 7.1.2, p. 35:
          "Session tracking through HTTP cookies is the most used
          session tracking mechanism and is required to be supported
          by all servlet containers. The container sends a cookie to the
          client. The client will then return the cookie on each subsequent
          request to the server unambiguously associating the request
          with a session. The name of the session tracking cookie must
          be JSESSIONID.
          Prior to 2.2, the servlet container could use whatever cookie name it wanted.
          However, for 2.2 onwards, the cookie name is fixed for all containers.
          There may well be spec compliance issues with Struts that need to be fixed (such
          as the current question over whether body content can be accessed in the
          doEndTag() method of a custom tag). However, on these two issues, Struts
          complies
          with the specification.
          ---------------------------- End Quote
          Sam, it interesting that OTHER application servers can support struts. It's
          probably just a case that you don't handle the specification very well. Is this
          also why your server has not passed the J2EE compatibility tests? Oh, I'm sure
          that you guys will complain about SUN and licensing. I understand your
          complaints and I agree, but that doesn't have to do with specification
          compliance! ;^)
          BTW, everyone, there is a serious ClassCastException that should be fixed in
          service pack 6. This particular exception illustrates that BEA Weblogic 5.1 sp5
          does not support web applications properly. I created an web application under
          Tomcat3.1 and moved it to Weblogic5.1sp5. I was receiving ClassCastExceptions
          when I was trying to access an object that was passed in my JSP request and
          display it on a JSP page. I'm grateful that one of the support people finally
          fixed the problem. However, this was only a temporary patch. I'm told the
          "official patch" will be included with sp6.
          Let's hope that some day BEA Weblogic will be compliant. BTW, why is it you are
          charging so much. Oh it must be for the great support! ;-)
          If you BEA Weblogic users would like some addition links to application servers
          that support JSP1.1/Servlet2.2 specification better than Weblogic, here are two.
          http://www.orionserver.com (This is actually a full J2EE class application
          server. It has not passed the compatibility test, but they do a hell of a
          better job than BEA Weblogic. BTW, it's much cheaper too.)
          http://www.caucho.com/ (This is an open source effort. They are only in beta
          with EJB support and they are using Servlets and XML to implement the EJB
          specification. There is a charge for commercial use. Many people are using
          this engine to do the JSP/Servlets and Weblogic to do EJBs. Wonder what will
          happen when they provide EJB support?)
          You know I thought this news group was to help solve problems with Weblogic. It
          has turned into a newsgroup that tries to hide problems and respond with
          dis-information. However, this is just my opinion, just as Sam expressed his
          opinion about struts. That's assuming Sam's email was an opinion, I just
          figured it was since he did not know the JSP1.1/Servlet2.2 specification. Sorry
          if I was wrong.
          Steve
          > Sam
          >
          > "kevinx" <[email protected]> wrote in message
          > news:[email protected]...
          > > "kevinx" <[email protected]> wrote:
          > > >
          > > >I'm trying to get the Struts examples from Apache Group
          > (http://jakarta.apache.org/struts) to run on Weblogic server but getting no
          > where. The examples run perfectly on Tomcat 3.1.
          > > >
          > > >Has anyone successfully ported struts on Weblogic? Any hint is
          > appreciated.
          > > >
          > > >Thanks
          > > >Kevin
          > >
          Steven D. Wilkinson, [email protected]
          President, Elkhorn Creek Software, Inc.
          Co-author: Professional JSP, Wrox Press Inc.; ISBN: 1861003625
          Silent author: Developing Java Servlets, Sams; ISBN: 0672316005
          

Has anyone had any luck getting struts to run with later service packs? I've got SP6 installed and now get the following when trying to run the struts-example app:javax.servlet.jsp.JspException: Missing resources attribute org.apache.struts.action.MESSAGE at org.apache.struts.taglib.MessageTag.doStartTag(MessageTag.java:360)
          

Similar Messages

  • Running Struts on Weblogic

    Hi,
    I've just started to explore Struts, and am trying to set up a very simple example with one simple Action, one Form Bean using the validate() method to manually validate inputs.
    I've gotten the example working in Tomcat. However when I tried to run the same example on Weblogic, I ran into some problems with the message resources for the validation.
    On Tomcat, if I trigger a validation error, I got this message on my form page:
    Wrong Login NameHowever when I tried the same code on Weblogic, I got this instead.
    ???en_US.errors.wrongLoginName???The error key in my .properties file is errors.wrongLoginName. So it seems like Weblogic prefixes the key with the locale before it tries to look for the key. Any ideas how to stop Weblogic from doing that? Or are there better ways to code my application so that it works without modifications on both Tomcat and Weblogic?
    Also anyone familiar with what I may need to take note of when developing Struts application for Weblogic?
    I'm sorry if this is not exactly the right forum to post this, but I can't find a more appropriate one to post this. Anyone knows of any good Struts forum that I can join?
    Thanks in advance for any replies!

    Hi all,
    Just found out what's wrong with this. Apparently the weblogic deploy script that I was using (I'm developing on Eclipse, and am using Ant deploy scripts to deploy to Tomcat and Weblogic) had some problems. It didn't deploy the .properties files.
    Sorry, my bad :-(
    I would still however hope to get some advice on the Struts forums and also if there are any known issues anyone has encountered when running Struts with Weblogic.

  • Error File missing when try to run iTunes on windows. No more info. Uninstalled following support instructions and reinstalled - same message while reinstalling.

    Error "File missing" when try to run iTunes on windows. No more info. Uninstalled following support instructions and reinstalled - same message while reinstalling.

    Hi there slklug43,
    You may find the troubleshooting steps in the article below helpful.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    -Griff W. 

  • Can not run Struts-Faces in weblogic.. Any suggestions

    Hi,
    I had downloaded the struts-faces application from apache and was trying to run with tomcat, it is working fine but when I am trying to run it with weblogic 8.1 it gives this error,
    Parsing of JSP File '/index.jsp' failed:
    /index.jsp(5): Error in using tag library uri='http://struts.apache.org/tags-faces' prefix='s': The Tag class 'org.apache.struts.faces.taglib.CommandLinkTag' has no setter method corresponding to TLD declared attribute 'actionListener', (JSP 1.1 spec, 5.4.1)
    probably occurred due to an error in /index.jsp line 5:
    <%@ taglib prefix="s" uri="http://struts.apache.org/tags-faces" %>
    Anybody has the same problem? Any help is appreciated.
    Thanks,
    Sushant

    Hi,
    You have to add these 2 lines in your JSP.
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    By the way, weblogic8.1 (SP2) doesn't support JSF. You need to have a patch for that. But Weblogic8.1(SP3) supports.
    -Nir

  • "X items could not be synced. See Itunes for more info" but Itunes AOK

    I am having problems syncing my iPhone to itunes. Itunes runs through the syncing process and at the end my phone says "X Items could not be synced. See Itunes for more info".  When I look at Itunes I can't find any evidence that something went wrong.  Is there an error log or something I can look up to find out what is going wrong?
    thanks!

    Found another thread with a few possible solutions. The one that worked for me was to delete the ipod photo cache in the "Pictures" folder. Here's the thread: https://discussions.apple.com/thread/3390697

  • How do I find out my keychain password? Need more info fast about this

    My computer started to get really slow, so I looked what I could do to make it faster again. After searching I found that the safari content was high and that I should delete it to make it less laggy and slow. Long story short I ended up deleting my saved passwords on safari...Looking into more info, I found out that I needed to get to Keychain Access. I got to Keychain access, found all the passwords.
    My question..
    •How do I get them out of Keychain?
    •If I end up needing my password for Keychain, how do I find that out? I have the like start up CD, but I dont remember ever making a password.
    •And if I do retreive my Keychain Password some how, will that delete everything stored in Keychain? I would have just tried it, but its a lot of passwords I CAN NOT lose...
    Please help :/
    Thanks!

    Never mind the screenshot.
    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you boot, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Why is "more info" greyed out in the About This Mac window?

    RE:  MacBook Air running OS X 10.6.8
    The More Info... is greyed out in the About This Mac window... how can I ungrey it to get info?

    Reinstall OS X without erasing the drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.

  • Jakarta Struts in Weblogic?

    Hi All,
              I am trying to get Struts up and running inside of a version 5.1 weblogic
              container. It seems that I am close, because some of the tags work (like
              the link tag). However, any tag that depends on the presence of a resource
              bundle (such as the message tag) fails with the following stack trace:
              Wed Nov 29 10:54:07 PST 2000:<E> <ServletContext-struts-example> Servlet
              failed
              with Exception
              javax.servlet.ServletException: runtime failure in custom tag 'message'
              at jsp_servlet._index._jspService(_index.java:89)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :105)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :123)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:742)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:686)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:247)
              at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:361)
              at
              weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
              Code)
              Wed Nov 29 10:54:08 PST 2000:<E> <ServletContext-struts-example> root cause
              of ServletException
              java.lang.NullPointerException:
              at
              weblogic.servlet.jsp.PageContextImpl.getAttribute(PageContextImpl.java:156)
              at
              org.apache.struts.taglib.MessageTag.doStartTag(MessageTag.java:358)
              at jsp_servlet._index._jspService(_index.java:81)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :105)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :123)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:742)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:686)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:247)
              at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:361)
              at
              weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
              Code)
              I looked at the source code for MessageTag.java and it fails at the point
              where it is trying to get a "bundle" object (instance of MessageResources)
              out of the PageContext application scope.
              // Acquire the resources object containing our messages
              MessageResources resources = (MessageResources)
              pageContext.getAttribute(bundle, PageContext.APPLICATION_SCOPE);
              If I'm not mistaken, the MessageResources object should contain name/value
              pairs from ApplicationResources.properties. I have that file in its default
              location
              (/WEB-INF/classes/org/apache/struts/example/ApplicationResources.properties)
              . I have not seen any FileNotFoundException's so I think it is finding it
              OK. However, the MessageResources object is either not getting created, or
              is not making it into the application scope. Is there something I need to
              configure in weblogic.properties to insure that the application is
              initializing properly?
              By the way, this is the "struts-example" application that came with the
              struts binary distribution. It works fine under my tomcat installation but
              we use weblogic in production.
              Any suggestions would be helpful.
              Thanks,
              Jeff
              

              So this gets the example working but how do i begin to use it in my application?
              I created a simple web application. - copy index.jsp from example
              Modifed it.
              Created a simple web.xml
              Now when i try to run it i get
              Thu Dec 14 15:25:06 GMT 2000:<E> <WebAppServletContext-mkb> Root cause of Servle
              tException
              javax.servlet.ServletException: runtime failure in custom tag 'message'
              at jsp_servlet._index._jspService(_index.java:133)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:123)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              textImpl.java:761)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              textImpl.java:708)
              at weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
              ContextManager.java:252)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
              a:346)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:246)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:135)
              which seams to be back where i started - unless I'm expected to use the public-html for keeping my site?
              Any help please.
              P.S. does WL6.0 have this problem with struts!
              "Gregory Bush" <[email protected]> wrote:
              >
              >Like everyone else, I had a hell of a time getting the Struts framework to work in Weblogic, but I'm committed to using it and I'm stuck with the Weblogic servlet engine (for now), so I kept with it until I got the demo app working nicely.
              >
              >Don't even bother attempting this unless you are familiar with Weblogic configuration.
              >
              >Here's how it can be done:
              >
              >1) Re-install Weblogic 5.1 in a clean directory and enable JSP support by uncommenting the JSP-related tags in the weblogic.properties file, and change the weblogic.system.listenPort to 80.
              >
              >2) Install service pack 6. Early versions of Weblogic 5.1 are packed with Servlet bugs, and you will get nowhere with them.
              >
              >3) Empty the public_html and serverclasses directories. You might as well clean out clientclasses and servletclasses and any straggling files in myserver while you are at it.
              >
              >4) Un-jar the struts-example.war file into a temporary directory. Weblogic claims to fully support Servlet 2.2 and .war files, etc., but as anyone who has actually tried to use them has found out, that support is so spotty one wonders how they ever get J2EE certification in the first place. WE WILL DEPLOY USING THE weblogic.properties FILE, NOT A web.xml FILE!
              >
              >5) Take the JSPs from the exploded .war file and copy them to your public_html directory.
              >
              >6) Create a WEB-INF directory under your public_html directory and copy action.xml, database.xml and *.tld from the example application's WEB-INF directory into it. DON'T COPY web.xml OR THE DIRECTORIES.
              >
              >7) Copy the org folder from the sample application's WEB-INF/classes directory into your serverclasses directory.
              >
              >8) Un-jar the example app's WEB-INF/lib/struts.jar file into your serverclasses directory and delete the META-INF directory it creates.
              >
              >9) From your Tomcat installation's lib directory, get jaxp.jar and parser.jar and un-jar them into your serverclasses directory, deleting the META-INF directories. If you haven't installed Tomcat, you can get these JARs from Sun.
              >
              >10) Add the following lines to your weblogic.properties file (up to the ****):
              >
              ># Register the DatabaseServlet
              >weblogic.httpd.register.db=org.apache.struts.example.DatabaseServlet
              >weblogic.httpd.initArgs.db=\
              > debug=2
              >
              ># Register our Struts ActionServlet
              >weblogic.httpd.register.*.do=org.apache.struts.action.ActionServlet
              >weblogic.httpd.initArgs.*.do=\
              > application=org.apache.struts.example.ApplicationResources,\
              > config=/WEB-INF/action.xml,\
              > debug=2,\
              > detail=2
              >
              ># Start these servlets when the app server starts
              >weblogic.system.startupClass.StartDatabaseServlet=\
              >     weblogic.servlet.utils.ServletStartup
              >weblogic.system.startupArgs.StartDatabaseServlet=\
              >     servlet=db
              >
              >weblogic.system.startupClass.StartActionServlet=\
              >     weblogic.servlet.utils.ServletStartup
              >weblogic.system.startupArgs.StartActionServlet=\
              >     servlet=*.do
              >
              >****
              >
              >You should now be able to start Weblogic, connect to http://localhost, see the main page and explore the sample application.
              >
              >Note that the database servlet is now exposed to the world as /db, so I wouldn't use that kind of connection pool access in a real application.
              >
              >Also, you wouldn't have to un-jar the library files if you put them on your Weblogic classpath, but that can be painful.
              >
              >Now that you have a clean demo app running, you can integrate your existing application back into the clean installation. It's much easier doing it this way than trying it the other direction.
              >
              

  • Looking for a little more info on Playstation 3 on Apple 20" display

    Sorry to ask for more info on this. I did find some other threads, but looking for a bit more direction.
    First, let me say I have a bunch of old tube TV's and am looking to purchase a Playstation 3. Using Playstation 3 on a tube TV seems kind of stupid, especially when I have a great LCD monitor sitting right on my desktop.
    I looked at solution from Elgato. However they said they are not making any more units and when it sells out it is gone. So I am a little weary of purchasing something that may no longer be supported. Their solution does provide video capture and DVR capabilities as well, which I could also use.
    Other then that, I am wondering if there are any other solutions that people could recommend. I do plan on buying a LCD or Plasma TV in the near future, but until then, I would like to purchase a Playstation 3. Just looking for any advice of any kind from others. Thanks.

    I have the same 20 inch Apple Display. If you have the newer DVI right?
    if so HDMI to DVI will not work well EyeTV from Elgato is still in the Mac store near me I have the 200 FireWire you want the 250 USB2 to do live. I have had the 200 FW for three years it is great.
    Having said that I did buy The Mitsubishi LCD LT-46231 : 46"
    1080p LCD Flat Panel HDTV ($4,600)
    I love it for computer use it was made for it. The HDTV is so good with cable and better with Blue-Ray which your PS3 has!
    http://www.mitsubishi-tv.com/j/i/18326/TelevisionDetails/LT46231.html?cid=377
    I would if you don't want to spend allot on a 1080p LCD (being more then 2k) The Mitsubishi LT-37131 LCD Flat Panel HDTV ($1,699) . Sony & Samsung both are the same LCD. Mitsubishi is better then Samsung/Sony allot better when used with a computer (it is the only new LCD maker that has a VGA & DVI port just for Computers)
    Both of the Mitsubishi Link's you will like as one is a money saver.
    http://www.mitsubishi-tv.com/j/i/18326/LT37131.html?cid=390
    http://www.mitsubishi-tv.com/j/i/18310/Promotions.html
    I also got a Pioneer Elite® Model PRO-FHD1 for TV only I will not run XBox or My computer though it. The link below show's why I got this to my mother need a new TV to so see the link 2 for 1
    http://www.pioneerelectronics.com/pna/v3/pg/top/cat/article/0,,2076310069651396920404,00.html
    Sorry to go on I hope it help's
    Thomas
    PowerMac G5 Quad 2.5Ghz, Dule2.0 G5, Mac Pro 3Ghz 6GB's PowerBook G4 12in 1.5Ghz   Mac OS X (10.4.8)   PowerMac G4 duel 1.25Ghz, iSight, iPod5, AppleDisplays 3 23in DVI GeForce 6800GT
    PowerMac G5 Quad 2.5Ghz, Dule2.0 G5, Mac Pro 3Ghz 6GB's PowerBook G4 12in 1.5Ghz   Mac OS X (10.4.8)   PowerMac G4 duel 1.25Ghz, iSight, iPod5, AppleDisplays 3 23in DVI GeForce 6800GT
    PowerMac G5 Quad 2.5Ghz, Dule2.0 G5, Mac Pro 3Ghz 6GB's PowerBook G4 12in 1.5Ghz   Mac OS X (10.4.8)   PowerMac G4 duel 1.25Ghz, iSight, iPod5, AppleDisplays 3 23in DVI GeForce 6800GT

  • Finder more info dialog bug

    More info in finder inspector window bug, it's not showing anything. but sometimes it's shows correct info.

    XSemperIdem5 wrote:
    When you select a document (whatever it may be) and click on "More Info" you can scroll down and see the section "Sharing & Permissions" How many (by default) should appear on the list that is shown below? There is the administrator and "Everyone". Is that it?
    No, there are many, but it depends on the file you are looking at.
    If you right-click, for example, Extensions.mkext in the System Library you will see listed
    system
    wheel
    everyone.
    These are special users and groups that are important for the proper running of BSD.
    There are also
    daemon
    admin
    staff
    sys
    procmod
    and numerous others.
    The GUI is like the wave on an ocean - most of the real stuff is hidden below the surface, but is very worth exploring. Over 90% of Leopard lies "under the hood."
    Message was edited by: L.Rowan

  • After 10.6.7 supplemental update, the "More Info" button is grayed out

    I performed the Supplemental Updater for the late 2010 Mac Book Air, and now the "More Info: Button on the About This Mac window stays grayed out. That can't be correct, but I don't see how to fix it.

    No there is no "Systems Information" app in the Utilities Folder in the Applications Folder on the MacBook Air, and although "System Profiler" does appear in the Apple Menu when selected while option-clicking, nothing happens and no profile contents window appears. Is there a way to restore the Systems Information app? Can I copy it over from my main desktop running 10.6.7 or is there a version specific for the MacBook Air?

  • Get More Info for NetConnection.Connect.Failed Error?

    I have a single server that runs IIS and FMS, both on port 80.  The server has two internal IPs assigned to it, one for IIS and the other for FMS.  I also have two static public IPs.  My router maps one public IP to IIS' internal IP and likewise for FMS.
    IIS works fine.  Using an online port scanner, I was able to determine that port 80 is responsive for both public IPs.  Before I had configured my Adapter.xml and fms.ini, only IIS' public IP was responsive.  This seems to indicate that FMS is fine.
    However, when my ActionScript creates a NetConnection and calls connect(), my netStatus callback takes about half a minute to be invoked, and I get "NetConnection.Connect.Failed".  Which is not very informative.  Is there a way to get more info about the cause of the error?  Also does anyone have suggestions for how to debug this issue?

    Hi,
    Thanks for trying out FMS..
    I can guide you with few checkpoints to first see where the problem might be.
    1. Go to the FMS installation directory and check for the logs folder. See all the logs (according to date) and find if the port bindings are all successful. This might tell us whether FMS actually has started or not.
    2. FMS works on port 1935 for RTMP streaming. It also gets bundled with apache (listening on 8134) but one of the fms processes also takes hold of 80 for its tunneling streaming as well as redirecting to apache. So either you remove this entry from fms.ini or change it to reflect to some other port. ADAPTER.HOSTPORT is the variable to look for.
    3. How are you making sure that FMS is working/not working ?
    4. Please turn off your firewall or other secutiry for testing purposes to see if you are able to hit the FMS .
    Let us know if any of the above are helpful in getting some more information.
    Thank you !

  • More info

    When I open the 'About this Mac' box Im unable to open 'more info' as it is not highlighted.
    The last time this happened I needed a new hard drive!
    Im also having problems with itunes which Im discussing on the itunes thread.

    When programs won't launch, it is usually time for Disk Utility to Repair AND Repair Permissions. You cannot Repair "live" in the running System, but any problems uncovered by Verify can be repaired by booting to the Installer DVD and choosing Disk Utility from the Utilities menu.

  • When I open about this mac - more info and I switch through the tabs (display,memory,storage,support,service) it lags (fps drops, animation looks choppy not smooth). Why does this happen? (over 300 gb free,same programs installed,free desk-downloads)

    When I open about this mac -> more info and I switch through the tabs (display,memory,storage,support,service) it lags (fps drops, animation looks choppy not smooth) even though all the mac (programs , interface ) works smooth . Why does this happen? (over 300 gb free,same programs installed,free desktop-downloads -no garbage there- everything neat and tidy.) Need some help. Only there it the animations goes like 2 fps and is not smooth. I do not understand why because the programs are the same so its the usage. Nothing is changed, yet i experience this little issue for a couple of days.

    OK, I'm confused. When I do About this Mac > More Info in OS10.9, I don't see any animation other than the window resizing. Is that the animation you are describing?
    Which if any of the following apply to your computer:
    1) Are you running any anti-virus/internet security applications?
    2) Are you running any "cleaning/tune-up/optimizations" applications?
    3) Any peer-to-peer or torrent downloading software?
    4) Any third-party disk backup software that came bundled with an external hard drive?
    5) Any online backup scheme other than iCloud (Carbonite; GoogleDrive; MS One Drive)?
    6) Did your financial institution ask you to install Trusteer EndPoint Protection (also known as Trusteer Rapport)?

  • ORA-00205: error in identifying controlfile, check alert log for more info

    Hello All,
    I am performing my first Collab Suite install in quite some time and I have successfully installed Collaboration Suite on Linux Red Hat AS 4. I first performed an infrastructure installation for the Collab Suite database which completed with no errors, however, it appears that no control files were created in my $ORACLE_HOME/dbs directory during installation. I am also unable to specify their exact location in the initSID.ora file as I am unable to find them in any other directory on my server. The database starts despite the control file error, as you can see from the second SQL*Plus prompt. However, I am unsure how to create the control files or correct this error. Any assistance would be greatly appreciated!
    SQL*Plus: Release 10.1.0.4.2 - Production on Wed Mar 21 09:51:49 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> connect SYS as SYSDBA
    Enter password:
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 100663296 bytes
    Fixed Size 778024 bytes
    Variable Size 99623128 bytes
    Database Buffers 0 bytes
    Redo Buffers 262144 bytes
    ORA-00205: error in identifying controlfile, check alert log for more info
    ======================================================================
    SQL*Plus: Release 10.1.0.4.2 - Production on Wed Mar 21 11:18:57 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> connect SYS as SYSDBA
    Enter password:
    Connected.
    SQL> startup nomount
    ORA-01081: cannot start already-running ORACLE - shut it down first
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.4.2 - Production
    With the Partitioning, OLAP and Data Mining options

    Control files are database-specific, since they contain information describing the database (location of data files, etc.) You can't copy them from one database to another.
    Do you have a backup?

Maybe you are looking for

  • Sql monthly report

    Hello. I have a problem that it may be trivial for you but gave me a lot of headaches. I got 4 tables. This is the code for all of them: CREATE TABLE customers      name           VARCHAR2(40) NOT NULL PRIMARY KEY,      address      VARCHAR2(40) NOT

  • Nokia Lumia 920 - Not connecting on MAC OSX 10.6.8

    Hello everybody, I have this problem that alot of people are encounting but it seems having no solutions yet. I bought my Nokia Lumia 920 a couple days ago, made all the updates alvaible but still I can't connect my phone to my MacBook Pro.  The funn

  • Talent search: advanced search multiple selection

    Dear Guru's We have setup the TREX and are using the advanced search for talent management. Everything is working fine except if we use the multiple selection option for a field. We have definied our own search field to search for (a range of) salary

  • IMac shuts down after burning DVDs.

    Brand new aluminum iMac 20" with Tiger 10.4.11 installed. We've found that after burning a DVD(-R) the iMac just shuts off - bizarre. Any ideas why this is happening? Fix?

  • Iview for surveys

    Hello experts, can anyone kindly let me know the <b>iview</b> required to display and create Surveys in the Portal (portal version 7) so that it can be added into the workset. Thanks in advance.