Tag library 'not found' in jsp page. why?

I'm having a big problem with jsp/tag libraries using oc4j. One
particular
tag library is not being 'found' for some mysterious reason. The
particulars follow:
kwTags.jar is the jar file containing the tag classes. It definitely
exists in WEB-INF/lib directory.
tld def. in web.xml:
<taglib>
<taglib-uri>/kw</taglib-uri>
<taglib-location>/WEB-INF/tlds/kwTagLib.tld</taglib-location>
</taglib>
The tld file definitely exists in the /WEB-INF/tlds directory.
The definition of the tag lib at the top of the kwTagLib.tld follows:
<taglib>
<tlib-version>1.0</tlib-version>
<jsp-version>1.2</jsp-version>
<short-name>kw</short-name>
<uri>/kw</uri>
<display-name>kwTagLib</display-name>
<small-icon></small-icon>
<large-icon></large-icon>
<description></description>
The tag reference in jsp page is:
<%@ taglib uri="/WEB-INF/tlds/kwTagLib.tld" prefix="kw" %>
The development environment is Eclipse Workbench 5.1.0 and Eclipse
v.3.2.1
JDK is: j2sdk1.4.2_04
All other tag libs (Struts v.1.3.5) are found and work correctly. This
is the only tag library that
a problem.
Error Message follows:
java.lang.NullPointerException at
oracle.jsp.parse.JspDirectiveTaglib.validateAttributes(JspDirectiveTaglib.java:183)
at
oracle.jsp.parse.JspParseTagDirective.validateTagAttributes(JspParseTagDirective.java:180)
at oracle.jsp.parse.JspParseTag.parse(JspParseTag.java:921)
at
oracle.jsp.parse.JspParseTagDirective.parse(JspParseTagDirective.java:326)
at oracle.jsp.parse.JspParseTag.parseNextTag(JspParseTag.java:705)
at oracle.jsp.parse.JspParseTagFile.parse(JspParseTagFile.java:184)
at oracle.jsp.parse.OracleJsp2Java.transform(OracleJsp2Java.java:154)
at
oracle.jsp.runtimev2.JspPageCompiler.attemptCompilePage(JspPageCompiler.java:428)
at
oracle.jsp.runtimev2.JspPageCompiler.compilePage(JspPageCompiler.java:284)
at
oracle.jsp.runtimev2.JspPageInfo.compileAndLoad(JspPageInfo.java:483)
at
oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:542)
at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:305)
at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
at
com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
at
com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:251)
at
org.apache.struts.chain.commands.servlet.PerformForward.handleAsForward(PerformForward.java:99)
at
org.apache.struts.chain.commands.servlet.PerformForward.perform(PerformForward.java:82)
at
org.apache.struts.chain.commands.AbstractPerformForward.execute(AbstractPerformForward.java:51)
at
org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:48)
at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
at
org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:304)
at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:190)
at
org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:280)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1858)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:459)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
at
org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:738)
at
com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:649)
at
com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
at
com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
at
com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
at
com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
at
com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
at java.lang.Thread.run(Thread.java:534)

java.lang.NullPointerException at
oracle.jsp.parse.JspDirectiveTaglib.validateAttributes(JspDirectiveTaglib.java:183)
at oracle.jsp.parse.JspParseTagDirective.validateTagAttributes(JspParseTagDirective.java:180)That NullPointerException does not sound right. What is your oc4j version?
By the way, your declaration of taglib in web.xml can be deleted if you are not using that taglib-uri "/kw" in your jsp.

Similar Messages

  • Bean not found by JSP page

    Hi! All
    I am using a bean in my jsp page. When I open the jsp page, I get an error that "Class SQLBean.DbBean not found". Please help. I have my bean class compiled and saved under C:\tomcat\webapps\examples\WEB-INF\classes
    Here is the bean class:
    package SQLBean;
    import java.sql.*;
    import java.io.*;
    public class DbBean {
    String dbURL = "jdbc:db2:sample";
    String dbDriver = "jdbc:odbc:akhil.mdb";
    private Connection dbCon;
    public Class DbBean(){
    super();
    public boolean connect(String user, String password) throws ClassNotFoundException,SQLException{
    System.out.print("hey");
    Class.forName(dbDriver);
    dbCon = DriverManager.getConnection(dbURL, user, password);
    return true;
    public void close() throws SQLException{
    dbCon.close();
    public ResultSet execSQL(String sql) throws SQLException{
    Statement s = dbCon.createStatement();
    ResultSet r = s.executeQuery(sql);
    return (r == null) ? null : r;
    public int updateSQL(String sql) throws SQLException{
    Statement s = dbCon.createStatement();
    int r = s.executeUpdate(sql);
    return (r == 0) ? 0 : r;
    Here is the jsp page:
    <HTML>
    <HEAD><TITLE>DataBase Search</TITLE></HEAD>
    <BODY>
    <%@ page language="Java" import="java.sql.*" %>
    <jsp:useBean id="db" scope="request" class="SQLBean.DbBean" />
    <jsp:setProperty name="db" property="*" />
    <%!
    ResultSet rs = null ;
    ResultSetMetaData rsmd = null ;
    int numColumns ;
    int i;
    %>
    <center>
    <h2> Results from here</h2>
    <hr>
    <br><br>
    <%
    out.print("Here");
    db.connect("atayal", "arduous");
    try {
    out.print("HI");
    rs = db.execSQL("select * from contacts");
    }catch(SQLException e) {
    throw new ServletException("Your query is not working", e);
    %>
    <%
    while(rs.next()) {
    %>
    <%= rs.getString("email") %>
    <BR>
    <%
    %>
    <BR>
    <%
    db.close();
    %>
    Done
    </body>
    </HTML>
    Thanks in advance

    Thank you for your valuable feedback duffymo. Could
    you explain a little what you mean by "Putting .class
    files in the Tomcat examples directory is a really bad
    idea in the long run". Also, could you direct me to
    some source where I can find more information on
    creating WAR files keeping in mind that I am a
    beginner.
    Thanks.But putting your web apps into WAR files, you can have quite a few different web apps running on the tomcat server as compared to if u place your files into the default webapp folder, u can only have 1 web app running.
    For creating WAR file, the easiest way is to use an IDE like JBuilder.

  • Javabean class not found by jsp page

    I have created one bean which has setFunctionId(String) and getFunctionId() methods. I put the class files at /weblogic/myserver/serverclasses directory. While I am accessing the .jsp page it is telling "Thu Aug 03 15:46:16 EDT 2000:<E> <ServletContext-General> Servlet failed with Ex
              ception
              java.lang.NoSuchMethodError: myjsp.TestBean: method setFunctionId(Ljava/lang/Str
              ing;)V not found
              at jsp_servlet._testasfs._jspService(_testasfs.java:90)
              at weblogic.servlet.jsp.JspBase.service(Compiled Code)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled C
              ode)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled C
              ode)
              at weblogic.servlet.internal.ServletContextManager.invokeServlet(Compile
              d Code)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
              at weblogic.kernel.ExecuteThread.run(Compiled Code)"
              Would appreciate your help..
              

    Thank you for your valuable feedback duffymo. Could
    you explain a little what you mean by "Putting .class
    files in the Tomcat examples directory is a really bad
    idea in the long run". Also, could you direct me to
    some source where I can find more information on
    creating WAR files keeping in mind that I am a
    beginner.
    Thanks.But putting your web apps into WAR files, you can have quite a few different web apps running on the tomcat server as compared to if u place your files into the default webapp folder, u can only have 1 web app running.
    For creating WAR file, the easiest way is to use an IDE like JBuilder.

  • JSP Tag Library not being parsed

    I have a tag library that has its tld, the corresponding class file, but
              if I put it in defaultWebApp (under Portal 7) it doesn't parse. If I put
              it under a sampleportal it can't parse the deployment descriptor. Is this
              a problem inside my .tld? All this stuff worked in WLS6.1sp2/Portal4.
              weblogic.servlet.jsp.JspException: (line 4): Could not parse deployment
              descriptor: java.io.IOException: cannot resolve 'pstream' into a valid tag
              library
              at weblogic.servlet.jsp.JspLexer.jspException(JspLexer.java:872)
              at
              weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE_BODY(JspLexer.java:50
              16)
              at
              weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE(JspLexer.java:4840)
              at weblogic.servlet.jsp.JspLexer.mDIRECTIVE(JspLexer.java:4686)
              at
              weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(JspLexer.java:2192)
              at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1978)
              at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java:1851)
              at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:1117)
              at weblogic.servlet.jsp.JspParser.doit(JspParser.java:90)
              at weblogic.servlet.jsp.JspParser.parse(JspParser.java:212)
              at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:119)
              Thanks,
              Steve
              

              Steve,
              The solution is simple. Just correct the path for the .tld file in your web.xml
              file. the path should be off the Web application root.
              Hope this helps
              Parag
              [email protected] wrote:
              >I have a tag library that has its tld, the corresponding class file,
              >but
              >if I put it in defaultWebApp (under Portal 7) it doesn't parse. If I
              >put
              >it under a sampleportal it can't parse the deployment descriptor. Is
              >this
              >a problem inside my .tld? All this stuff worked in WLS6.1sp2/Portal4.
              >
              >
              >weblogic.servlet.jsp.JspException: (line 4): Could not parse deployment
              >
              >descriptor: java.io.IOException: cannot resolve 'pstream' into a valid
              >tag
              >library
              > at weblogic.servlet.jsp.JspLexer.jspException(JspLexer.java:872)
              > at
              >weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE_BODY(JspLexer.java:50
              >16)
              > at
              >weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE(JspLexer.java:4840)
              > at weblogic.servlet.jsp.JspLexer.mDIRECTIVE(JspLexer.java:4686)
              > at
              >weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(JspLexer.java:2192)
              > at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1978)
              > at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java:1851)
              > at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:1117)
              > at weblogic.servlet.jsp.JspParser.doit(JspParser.java:90)
              > at weblogic.servlet.jsp.JspParser.parse(JspParser.java:212)
              > at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:119)
              >
              >
              >Thanks,
              >Steve
              

  • BLOB image not shows in JSP page!!

    Hi Dear all,
    I had tried to configure how to show BLOB image to jsp page . The code are works fine and servlet works ok but image can not show only. can you help me that what need to be added. Please help me.
    Can any experts help me? BLOB image not shows in JSP page. I am using ADF11g/DB 10gR2.
    My as Code follows:
    _1. Servlet Config_
        <servlet>
            <servlet-name>images</servlet-name>
            <servlet-class>his.model.ClsImage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>images</servlet-name>
            <url-pattern>/render_images</url-pattern>
        </servlet-mapping>
      3. class code
    package his.model;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Map;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class ClsImage extends HttpServlet
      //private static final Log LOG = LogFactory.getLog(ImageServlet.class);
      private static final Log LOG = LogFactory.getLog(ClsImage.class);
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        System.out.println("GET---From servlet============= !!!");
        String appModuleName = "his.model.ModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleName");
        String appModuleConfig = "TempModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleConfig");
        String voQuery ="select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = 'P1000000000006'" ;// 'P1000000000006' this.getServletConfig().getInitParameter("ImageViewObjectQuery");
        String mimeType = "jpg";//this.getServletConfig().getInitParameter("gif");
        //?IMAGE_NO='P1000000000006'
        //TODO: throw exception if mandatory parameter not set
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
          ViewObject vo =  am.createViewObjectFromQueryStmt("TempView2", voQuery);
        Map paramMap = request.getParameterMap();
        Iterator paramValues = paramMap.values().iterator();
        int i=0;
        while (paramValues.hasNext())
          // Only one value for a parameter is expected.
          // TODO: If more then 1 parameter is supplied make sure the value is bound to the right bind  
          // variable in the query! Maybe use named variables instead.
          String[] paramValue = (String[])paramValues.next();
          vo.setWhereClauseParam(i, paramValue[0]);
          i++;
       System.out.println("before run============= !!!");
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        System.out.println("after run============= !!!");
        Row product = vo.first();
        //System.out.println("============"+(BlobDomain)product.getAttribute(0));
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null)
          System.out.println("onside product============= !!!");
           // We assume the Blob to be the first a field
           image = (BlobDomain) product.getAttribute(0);
           //System.out.println("onside  run product============= !!!"+image.toString() +"======="+image );
           // Check if there are more fields returned. If so, the second one
           // is considered to hold the mime type
           if ( product.getAttributeCount()> 1 )
              mimeType = (String)product.getAttribute(1);       
        else
          //LOG.warn("No row found to get image from !!!");
          LOG.warn("No row found to get image from !!!");
          return;
        System.out.println("Set Image============= !!!");
        // Set the content-type. Only images are taken into account
        response.setContentType("image/"+ mimeType+ "; charset=windows-1252");
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[4096];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
          //System.out.println("Set Image============= loop!!!"+(is.read(buffer)));
        os.close();
        // Remove the temporary viewobject
        vo.remove();
        // Release the appModule
        Configuration.releaseRootApplicationModule(am, false);
    } 3 . Jsp Tag
    <af:image source="/render_images" shortDesc="Item"/>  Thanks.
    zakir
    ====
    Edited by: Zakir Hossain on Apr 23, 2009 11:19 AM

    Hi here is solution,
    later I will put a project for this solution, right now I am really busy with ADF implementation.
    core changes is to solve my problem:
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        }All code as below:
    Servlet Code*
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response) throws ServletException,
                                                             IOException {
        String appModuleName =
          "his.model.ModuleAssetMgt";
        String appModuleConfig =
          "TempModuleAssetMgt";
      String imgno = request.getParameter("imgno");
        if (imgno == null || imgno.equals(""))
          return;
        String voQuery =
          "select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = '" + imgno + "'";
        String mimeType = "gif";
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName,
                                                    appModuleConfig);
        am.clearVOCaches("TempView2", true);
        ViewObject vo = null;
        String s;
          vo = am.createViewObjectFromQueryStmt("TempView2", voQuery);
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        Row product = vo.first();
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null) {
          // We assume the Blob to be the first a field
          image = (BlobDomain)product.getAttribute(0);
          // Check if there are more fields returned. If so, the second one
          // is considered to hold the mime type
          if (product.getAttributeCount() > 1) {
            mimeType = (String)product.getAttribute(1);
        } else {
          LOG.warn("No row found to get image from !!!");
          return;
        // Set the content-type. Only images are taken into account
        response.setContentType("image/" + mimeType);
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        is.close();
        os.close();
        // Release the appModule
    Configuration.releaseRootApplicationModule(am, true);
    }Jsp Tag
    <h:graphicImage url="/render_images?imgno=#{bindings.ImageNo.inputValue}"
                                                        height="168" width="224"/>

  • IPhoto Library Not Found after Upgrade to Leopard

    I was running the newest iPhoto under Tiger and I just upgraded to Leopard. I tried to open iPhoto and a message said, "iPhoto library not found." It was there before I upgraded from Tiger. I mostly use Adobe Bridge so I didn't have much in iPhoto but I'm curious to see why the library disappeared and whether it can be restored. I looked all around on the hard disk and didn't see the iPhoto library anywhere. Thanks.

    Yes, it must have been upgrade and install because I followed the defaults. The iPhoto library was in the Pictures folder in Tiger and I never moved it. After the upgrade to Leopard, it was gone--it is no longer in my Pictures folder, nor does it seem to be anywhere else. I didn't touch it--the upgrade made it disappear. Why did that happen? What can be done about it? Thanks very much.

  • Name tag "embed" not found

    I have a problem on
    http://www.enforcementsecurityservices.com
    When validating CSS, no errors are found.
    When validating HTML, 7 errors are found, all on line 58: no
    attribute for src, quality, pluginspage, type, width, height,
    embed.
    Also, when validating the page, this message shows: The name
    tag "embed" not found in current active versions. XHTML 1.0
    transitional.
    The problem is the slideshow that was created in Flash and
    inserted in Dreamweaver. I used Player 9, Action Script 3.0
    What do I need to do to correct this? Thank you!

    "HelpSandra" <[email protected]> wrote in
    message
    news:go6j65$nlr$[email protected]..
    >I have a problem on
    http://www.enforcementsecurityservices.com
    >
    > When validating CSS, no errors are found.
    >
    > When validating HTML, 7 errors are found, all on line
    58: no attribute for
    > src, quality, pluginspage, type, width, height, embed.
    >
    > Also, when validating the page, this message shows: The
    name tag "embed"
    > not
    > found in current active versions. XHTML 1.0
    transitional.
    >
    > The problem is the slideshow that was created in Flash
    and inserted in
    > Dreamweaver. I used Player 9, Action Script 3.0
    >
    > What do I need to do to correct this? Thank you!
    Check this link
    http://code.google.com/p/swfobject/
    You can also look for the "nested object method"
    Thierry | Adobe Community Expert | Articles and Tutorials ::
    http://www.TJKDesign.com/go/?0
    Spry Widgets |
    http://labs.adobe.com/technologies/spry/samples/
    [click on
    "Widgets"]
    Spry Menu Bar samples |
    http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html

  • Element not found, appslocallogin.jsp

    hi,
    anyone able to resove this ?
    using IE 7
    when try to logon,
    the page not navigate to next page,
    show
    "Error on page"
    at bottom left corner
    element not found
    appslocallogin.jsp
    no issue on IE 6, and some other IE 7.
    so far we only have one user facing the issue.
    thanks

    Hi,
    Please mention the application release and the OS.
    Has this ever worked? If yes, what changes have been done recently?
    Can you find any errors in Apache log files (error_log* and access_log*)?
    Please make sure you have a certified combination of application release, OS, and you have all the patches applied which work with IE7 as per the following documents.
    Note: 285218.1 - Recommended Browsers for Oracle E-Business Suite 11i
    Note: 389422.1 - Recommended Browsers for Oracle E-Business Suite Release 12
    Regards,
    Hussein

  • GNU fortran90 doesn't work now.  I get the error message:gfortran: warning: couldn't understand kern.osversion '14.0.0 ld: library not found for -lcrt1.o collect2: error: ld returned 1 exit status

    GNU fortran 90 no longer works.
    I get the error message:
    gfortran: warning: couldn’t understand kern.osversion ‘14.0.0
    ld: library not found for -lcrt1.o
    collect2: error: ld returned 1 exit status

    GNU fortran 90 no longer works.
    I get the error message:
    gfortran: warning: couldn’t understand kern.osversion ‘14.0.0
    ld: library not found for -lcrt1.o
    collect2: error: ld returned 1 exit status

  • Library not Found: /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit

    Hello all,
    I am working with a MacBook purchased in 2009, OSX 10.6.8, processor: 2.13 GHz Intel Core 2 Duo, Memory: 2 GB 800 MHz DDR2 SDRAM.
    I recently downloaded and tried to install a game I had previously successfully installed from Gamehouse.com. The download goes fine, when I open the .dmg file the correct window pops up with an icon to double-click to start installation. At that point I receive an error message (see below). I contacted Gamehouse and ran through a number of solutions they gave me, including uninstalling and removing all traces of this or any other game from my computer (including .plist files), installing any available updates (iTunes finally got that update I've been postponing for months...), and dragging the installer icon into various different locations before opening. All to no avail.
    It appears to me the issue is this line in the error message: "Library not Found: /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit"
    I checked the Frameworks folder and there is nothing there called StoreKit.framework, so that seems to make sense. It isn't anywhere else in the computer either. After a quick google I found this problem pops up now and then - there is one other question on the same issue in this forum, but I have no idea if the solution given there works, as the original poster never came back. Their suggestion was to try reinstalling Just OSX from the boot disc. I haven't attempted this yet - I thought I'd see if I can get any input before going that route.
    Thank you for any advice. Here is the full error report:
    Process:         Delicious - Emily's Wonder Wedding [349]
    Path:            /Applications/Delicious - Emily's Wonder Wedding Premium Edition.app/Contents/MacOS/Delicious - Emily's Wonder Wedding
    Identifier:      com.mrgoodlivng.delicious8.mac
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [91]
    Date/Time:       2014-08-10 14:33:56.929 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          201860 sec
    Crashes Since Last Report:           18
    Per-App Crashes Since Last Report:   21
    Anonymous UUID:                      750B56F7-4793-44CA-847D-5A35F9F8DABC
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
      Referenced from: /Applications/Delicious - Emily's Wonder Wedding Premium Edition.app/Contents/MacOS/Delicious - Emily's Wonder Wedding
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <749D24EE-54BD-D74B-D305-C13F5E6C95D8> /usr/lib/dyld
    Model: MacBook5,2, BootROM MB52.0088.B06, 2 processors, Intel Core 2 Duo, 2.13 GHz, 2 GB, SMC 1.38f5
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHZ2160BH FFS G1, 149.05 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS22N
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0229, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2

    That file is a OS X system file, you'll have to overwrite OS X with a new copy to restore it.
    First things first
    Emergency backup procedure
    Drag and drop copy your users file folders (music, pictures, documents etc) to a regular external powered drive as soon as possible.
    Do not use, setup or trust only TimeMachine at this troubled time as it will copy corrupted data and we need just your users files safe just in case. TimeMachine cannot be used with a Windows PC.
    Unmount and Disconnect all external drives once the backup process is completed.
    Note:
    If you have any over 4GB sized files, those won't copy to a standard formatted FAT32/MSDOS drive from the factory, if you need to save these 4GB+ files use another blank/empty drive and use Disk Utility to format it 1 Partition, Option: GUID,  Format: OS X Extended Journaled (or the standard default one for older Mac's).
    Mac's cannot copy to nor format a NTFS  drive. ExFAT format to be used with a Windows machine must be right click formatted by Windows, not OS X (does it wrong) XP machines can install a free exFAT update from Microsoft. Vista-Win 8 can format exFAT.
    Formatting a drive will erase all data on it.
    Once your files are safely copied off the machine, next run through this list of fixes, I suspect #8 Reinstall Just OS X + Software Updating fully should restore the broken/missing file.
    ..Step by Step to fix your Mac
    Overwriting OS X with a new copy does not delete most programs or users files, but you backup your users files regardless as it might be something more than we currently know at this time.

  • Firefox is loading pages very slowly, most of times saying server not found. Same pages loaded quickly in ie9. Previously FF used to load pages fast. FF version 8.0.1, windows vista & windows XP.

    firefox is loading pages very slowly, most of times saying server not found. Same pages loaded quickly in ie9. Previously FF used to load pages fast.
    FF version 8.0.1, windows vista & windows XP.
    Please help
    Generally we dont get any reply to the questions asked here!

    65kid wrote:https://bbs.archlinux.org/viewtopic.php?id=162327
    Thank you for the link, but I am not sure how this is going to help me: I am not booting straight to an X session, but prefer to log into TTY1 and have my login shell handle everything from there.
    Here is the relevant part of my .zprofile:
    if (( UID )); then
    [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec systemd --user
    fi
    As far as I understand, your method works if I enable the [email protected] template when actually booting straight to X.

  • Transport library not found: dt_socket

    I'm a JBoss newbie trying to use to start jboss 4.0.3 on Fedora Core 4 with java 1.5.0_05 in debug mode. Following the instructions found here: http://java.sys-con.com/read/44918.htm, I modified the the jboss startup script run.sh by adding the line
    JAVA_OPTS="$JAVA_OPTS -Xdebug -Xrunjdwp:server=y,transport=dt_socket;address=4142,suspend=n"right before the exisitng line
    JAVA_OPTS="$JAVA_OPTS -Dprogram.name=$PROGNAME"I get the following error from the jboss console
    =========================================================================
      JBoss Bootstrap Environment
      JBOSS_HOME: /usr/lib/jboss-4.0.3SP1
      JAVA: /usr/lib/jvm/java-1.5.0-sun/bin/java
      JAVA_OPTS: -server -Xms128m -Xmx128m -Xdebug -Xrunjdwp:server=y,transport=dt_socket;address=4142,suspend=n -Dprogram.name=run-debug.sh
      CLASSPATH: /usr/lib/jboss-4.0.3SP1/bin/run.jar:/usr/lib/jvm/java-1.5.0-sun/lib/tools.jar
    =========================================================================
    ERROR: transport library not found: dt_socket;address=4142 ["transport.c",L138]
    ERROR: JDWP Transport dt_socket;address=4142 failed to initialize, TRANSPORT_LOAD(509) ["debugInit.c",L500]
    JDWP exit error JVMTI_ERROR_INTERNAL(113): No transports initializedFATAL ERROR in native method: JDWP No transports initialized, jvmtiError=JVMTI_ERROR_INTERNAL(113)I have tested that the debugger works on it's own by trying to debug a hello world app:
    java -Djava.compiler=NONE -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,address=8000 hello and then attaching to it with jdb -attach localhost:8000.
    Is this classpath issue?

    It looks like you have a semicolon between the name of the transport library and the address option - that should fix it :-)

  • Call Library Function Node 'Wrapper.C​reate': Library not found or failed to load. using windows 7 64 bits

    Dear all
    I try to interface my spectrometer (NIRquest from ocean optics) using labview on my 64 bits cumputer using windows 7.
    I have absolutely no problem to run the spectrometer with the program dedicated to the spectrometer (called Spetrasuite).
    I've installed "OmniDriverSPAM-1.66-win64-development-installer.e​xe" and everything went right.
    When I select a VI in LabView (e.g."wrapper_create.vi") from the wrapper.llb, LabView returns an error :
    "Call Library Function Node 'Wrapper.Create': Library not found or failed to load."
    I chek the call library function, but everyting seems to be right :
    I use LabView 8.6.1 and my others *.vi are running perfectly...
    Do you have any idea from where does the problem comes ?
    Thank you very much

    Hello Flanguy,
    In addition to smercurio_fc's feedback I can confirm that LabVIEW 8.6.1 doesn't exist in 64-bit version.
    Officially, LabVIEW 8.6.1 doesn't support Windows 7 either.
    The minimal version of LabVIEW you would need to both support Windows 7 and exist in 64-bit version is LabVIEW 2009 64-bit or any 64-bit versions which are more recent.
    In the two links (1 & 2) you can find more background information.
    Kind Regards,
    Wouter
    National Instruments Belgium

  • Call Library Function Node: library not found or failed to load

    Hello,
    I had a VI that could not find some of the dll functions it needed.  It works on one machine and not on another.  So foolishly I copied the dll in question from the working machine and pasted it over the one on the non-working machine. 
    Now all my math functions are broken on the machine I copied the dll too.  The error is "Call Library Function Node: library not found or failed to load"
    And if I try to relink in the VI I get "Error loading C:\National Instruments\LabVIEW 8.2\resource\lvanlys.dll" A dynamic link library (DLL) initialization routine failed."
    I tried a repair labview and that did not help.
    I tried uninstall and reinstall labview and that did not help!
    Please help me fix this!
    Version 8.2
    dll: C:\National Instruments\LabVIEW 8.2\resource\lvanlys.dll
    Jim

    What library did you first copy?
    Also lvanlys.dll depends on the Intel Math Kernel Library that gets installed in a different location "C:\Program Files\National Instruments\Shared\MKL".
    This Intel Math Kernel Library again depends on the Visual C runtime libraries. Most likely you replaced one of those runtime libraries somehow and now the Math Kernel Library (MKL) fails to initialize which causes thelvanlys.dll to fail its load.
    Without a good view on your system and what other NI software you have installed it is very hard to recommend a good way of proceeding. There are various versions of the MKL used by various versions of NI products and just deleting the entire MKL folder might get you into trouble with other NI tools.
    Deinstalling everything from NI, deleting the entire National Instruments folder and then reinstalling what you need would be the most safe proceeding.
    And next time don't just copy some Visual C runtime libraries between machines. Their dependencies are complicated at the least and simply not graspable by us mere mortals. Use the according C runtime installer for the version you need as that installer will take care of installing the right versions of C runtime components and registering everything proberly so you do not usually run into problems with other applications using different versions of the C runtime.
    Message Edited by rolfk on 03-01-2010 10:26 AM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Photo Library Not Found

    I was trying to free up some space on my internal HD yesterday; I did trash what I thought were just contents from the iPhoto library. Today I get a message "Photo Library Not Found" when I attempt to open iPhoto.
    In reading past posts here, there is a reference to "standard recovery procedure."
    Can someone tell me what that is or what thread I might look at that will tell me the best way to proceed here?
    I sure hate to think I've lost all my photos.
    Thanks
    Lee

    Lee
    You will get Time Machine with 10.5, but you can also purchase excellent back up apps like Chronosync, DejaVu without using 10.5. Also, if you purchase another external HD you can run your iPhoto (and your iTunes) from there, so freeing up space on your internal.
    1. Quit iPhoto
    2. Copy the iPhoto Library Folder as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

Maybe you are looking for

  • Ipod nano..error message 124..

    My ipod keeps getting booted out when i use itunes. It only shows up as removable drive on 'my computer'. It also does not sync my complete library despite having all of the music ticked to sync. I've tried all of the troubleshooting options HELP>>>I

  • Can i use exfat format for my external western digital harddrive so that i can use in both windows and mac?

    can i use exfat format for my external western digital harddrive so that i can use in both windows and mac? thanks in advance. <Email Edited by Host>

  • Restricting IP's with OWSM?

    Hi guys. Just started looking at OWSM, cause we're deploying web services by the dozen and I want to get it all into a centrally managed environment before its too late :) Question: Is it possible with OWSM to restrict the ip's that are allowed to ca

  • Add-ons manager doesn't load

    I am at wits end... I have tried every solution to get the add-ons manager to load and nothing has worked. If you might know of a solution please let me know. I am running Firefox 11, Windows 7 and I have checked for and updated a plug-in. I even cli

  • Language Change English to Chiness

    Hi, i have change language of my application From English to Chiness and Hindi. now when i run application then that show me ?? etc i have Follow that Link http://darekj.blogspot.com/2006/06/translation-in-apex-mini-how-to.html how to resolve that pr