Error in implementation of RequestDispatcher for use of filters ?

          Hi,
          I am using the new features of the servlet API 2.3 to do dynamic filtering. I
          use the RequestDispatcher object to include content that I pass via HttpServletRequestWrapper
          and HttpServletResponseWrapper, doing the following :
          RequestDispatcher dispatcher =getRequestDispatcher( servletPath ); dispatcher.include(requestWrapper,
          responseWrapper);
          The requestWrapper and responseWrapper are implementation of the wrapper object
          that redefine some calls. This works fine with Orion Server as well as Tomcat
          4.0 beta, but somehow I can't get this to work under WebLogic 6.1 beta. It works
          for some calls, but somehow the getWriter and getOutputStream calls out of the
          responseWrapper objects are never called. Please note I am also dispatching to
          JSP pages in some cases and would like the generated code to call my wrapper object
          instead of those furnished by the server.
          Thank you, Serge Huber. CTO MyComponents Inc.
          

          Serge, I am using Weblogic 6.1 SP2, and the problem you mention still exists.
          What release was BEA referring to when they said "next" relase in the previous
          post?
          Scott
          "Serge Huber" <[email protected]> wrote:
          >
          >
          >Hi,
          >
          >Glad I could be of help :) I am very happy to hear that this issue is
          >already
          >corrected. Do you have any information as to when the next release will
          >be ?
          >
          >Thank you,
          > Serge Huber
          > CTO MyComponents Inc.
          >
          >Srinagesh Susarla <[email protected]> wrote:
          >><!doctype html public "-//w3c//dtd html 4.0 transitional//en">
          >><html>
          >>Serge,
          >><br>Thanks for pointing this out. Indeed there was a bug in the implementation
          >>of wrappers.  The issue was filed and has been resolved.
          >><br>You'll see these changes in the upcoming release.
          >><br>thanks again.
          >><br>Nagesh
          >><p>Serge Huber wrote:
          >><blockquote TYPE=CITE>Sure,
          >><p>I have included in attachement a WAR file containing both compiled
          >>and
          >>source
          >><br>code of a sample use of what I call dynamic filtering (filtering
          >>done
          >>with RequestDispatcher
          >><br>instead of filter configuration files). Under Tomcat 4.0, this returns
          >>HTML that
          >><br>is valid, such as :
          >><p><html>
          >><br><head><title>HelloWorldServlet</title></head>
          >><br><body>
          >><br><p>
          >><br><table>
          >><br>    <tr>
          >><br>        <td>
          >><br>           
          >>Hello World from a JSP file
          >><br>        </td>
          >><br>    </tr>
          >><br></table></p></body></html>
          >><p>while under BEA WebLogic 6.1 beta I get the following result :
          >><p><table>
          >><br>    <tr>
          >><br>        <td>
          >><br>           
          >>Hello World from a JSP file
          >><br>        </td>
          >><br>    </tr>
          >><br></table><html>
          >><br><head><title>HelloWorldServlet</title></head>
          >><br><body>
          >><br><p></p></body></html>
          >><p>This behaviour typically happens (in my experience with servlet 2.3
          >>implementations)
          >><br>when the wrapper objects are not called in the case of a include
          >>or
          >>a forward
          >><br>call. Typically here either the getWriter or the getOutputStream
          >>objects
          >>should
          >><br>be called to output the JSP. I haven't tested the behaviour with
          >>servlets
          >>but
          >><br>I suppose it is quite similar.
          >><p>Please let me know if you need more details about the attached sample...
          >><p>Best greetings,
          >><br>   Serge Huber.
          >><br>   CTO MyComponents Inc.
          >><p>Srinagesh Susarla <[email protected]> wrote:
          >><br>><!doctype html public "-//w3c//dtd html 4.0 transitional//en">
          >><br>><html>
          >><br>>can u provide us with a sample! (responsewrapper! /requestwrapper)
          >><br>><br>thanks
          >><br>><br>-nagesh
          >><br>><p>Serge Huber wrote:
          >><br>><blockquote TYPE=CITE>Hi,
          >><br>><p>I posted the original message quite a while ago and have yet
          >>to know
          >><br>>if anybody
          >><br>><br>accept, rejects, or even has an answer for this problem.
          >>Also,
          >>if
          >><br>>additional
          >><br>>information
          >><br>><br>is required I'd be glad to furnish it, but no news at all
          >>is
          >>a bit
          >><br>>surprising.
          >><br>><p>Thanks,
          >><br>><br>  Serge Huber
          >><br>><br>  CTO MyComponents Inc.
          >><br>><p>"Serge Huber" <[email protected]> wrote:
          >><br>><br>>
          >><br>><br>>
          >><br>><br>>Hi,
          >><br>><br>>
          >><br>><br>>I am using the new features of the servlet API 2.3 to do
          >>dynamic
          >><br>>filtering.
          >><br>><br>>I
          >><br>><br>>use the RequestDispatcher object to include content that
          >>I
          >>pass
          >><br>>via
          >><br>>HttpServletRequestWrapper
          >><br>><br>>and HttpServletResponseWrapper, doing the following :
          >><br>><br>>
          >><br>><br>>RequestDispatcher dispatcher =getRequestDispatcher( servletPath
          >><br>>);
          >><br>>dispatcher.include(requestWrapper,
          >><br>><br>>responseWrapper);
          >><br>><br>>
          >><br>><br>>The requestWrapper and responseWrapper are implementation
          >>of the
          >><br>>wrapper
          >><br>><br>>object
          >><br>><br>>that redefine some calls. This works fine with Orion Server
          >>as well
          >><br>>as
          >><br>><br>>Tomcat
          >><br>><br>>4.0 beta, but somehow I can't get this to work under WebLogic
          >>6.1
          >><br>>beta.
          >><br>><br>>It works
          >><br>><br>>for some calls, but somehow the getWriter and getOutputStream
          >>calls
          >><br>>out
          >><br>><br>>of the
          >><br>><br>>responseWrapper objects are never called. Please note I
          >>am
          >>also
          >><br>>dispatching
          >><br>><br>>to
          >><br>><br>>JSP pages in some cases and would like the generated code
          >>to call
          >><br>>my
          >><br>><br>>wrapper object
          >><br>><br>>instead of those furnished by the server.
          >><br>><br>>
          >><br>><br>>Thank you, Serge Huber. CTO MyComponents Inc.
          >><br>><br>></blockquote>
          >><br>></html>
          >><br>>
          >><p>  ------------------------------------------------------------------------
          >><br>                           
          >>Name: helloworldjavaone.war
          >><br>   helloworldjavaone.war    Type: Hypertext
          >>Markup Language (text/html)
          >><br>                       
          >>Encoding: base64</blockquote>
          >></html>
          >>
          >
          

Similar Messages

  • When I try to install Adobe Acrobat XI Pro, I get an error message, "Key not valid for use in specified state".  What is this?

    When I try to install Adobe Acrobat XI Pro, I get an error message, "Key not valid for use in specified state".  What is this?

    See if this post by turingtest2 fixes it : key not valid for use in specified state

  • Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for use in specified state

    we have developed packages to do the followings
    Extract data from DB2 Source and put it in MS Sql Server 2008 database (Lets Say DatabaseA).From MS Sql Server 2008 (DatabaseA)
    we will process the data and place it in another database MS Sql Server 2008 (DatabaseB)
    We have created packages in BIDS..We created datasource connection in Datasource folder in BIDS..Which has DB2 Connection and both Ms Sql Server connection (Windows authentication-Let
    say its pointing to the server -ServerA which has DatabaseA and DatabaseB).The datasource connections will be used in packages during development.
    For deployment we have created Package Configuration which will have both DB2 Connection and MS SqlServer connection in the config
    We deployed the packages in different MS SqlServer by changing the connectionstring in the config for DB2 and MS SqlServer...
    While runing the package we are getting the following error message
    Code: 0xC0016016     Source:       Description: Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for
    use in specified state.". You may not be authorized to access this information. This error occurs when there is a cryptographic error. Verify that the correct key is available.
    ilikemicrosoft

    Hi Surendiran,
    This is because the package has been created by somebody else and the package is being deployed under sombody else's account. e.g. If you are the creator then the package is encryption set according to your account and the package setup in SQL server is
    under a different user account.
    This happens because the package protection level is set to EncryptSensitiveWithUserKey which encrypts
    sensitive information using creator's account name.
    As a solution:
    Either you have to set up the package in SQL server under your account (which some infrastructures do not allow).
    OR
    Set the package property Protection Level to "DontSaveSensitive" and add a configuration file
    to the package and set the initial values for all the variables and all the connection manager in that configuration file (which might be tedious of-course).
    OR
    The third options (which I like do) is to open the package file and delete the password encryption entries from the package. Do note that this is not supported by designer and every time you make changes to the connection managers these encryption entries come
    back.
    Hope this helps. 
    Please mark the post as answered if it answers your question

  • Can't download iTunes, error message "Key not valild for use in specified state"

    I can't download iTunes, keep getting error message "Key not valid for use in specified state"  I uninstalled and tried reinstalling but same issue.

    For "Key not valid for use in specified state" errors try moving the folder RSA from C:\Users\<User>\AppData\Roaming\Microsoft\Crypto\RSA to say C:\<User>\RSA (just in case there should be a need to restore it) then try installing again. This folder appears to act as a cache and should be rebuilt automatically as required.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • WebDynpro error while implementing business package for hr administrator

    Hi,
       I am implementing Business package for Hr administrative services in EP 7.0. When I click the iview Start processess I get the following dynpro error. Please do help me as to how should I trace back the problem.   com.sap.tc.webdynpro.services.exceptions.TypeNotFoundException: type com.sap.pa.asr.procst.model.procst.types.Asr_Withoutee could not be loaded: com.sap.dictionary.runtime.DdException: Type com.sap.pa.asr.procst.model.procst.types.Asr_Withoutee does not exist
         at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getSimpleType(DataTypeBroker.java:250)
         at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getDataType(DataTypeBroker.java:213)
         at com.sap.tc.webdynpro.progmodel.context.DataAttributeInfo.init(DataAttributeInfo.java:318)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.initUnmappedAttributes(NodeInfo.java:670)
         at com.sap.tc.webdynpro.progmodel.context.DataNodeInfo.doInit(DataNodeInfo.java:233)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:654)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:657)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:657)
         at com.sap.tc.webdynpro.progmodel.context.Context.init(Context.java:40)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:199)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:429)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:932)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.createComponent(ClientComponent.java:176)
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.createComponentInternal(ComponentUsage.java:142)
         at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.createComponent(ComponentUsage.java:134)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$ComponentUsageManager.createBLCComponentUsage(FPMComponent.java:840)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:1020)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:979)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.attachComponentToUsage(FPMComponent.java:1230)
         at com.sap.pa.asr.procst.vac.vinit.VInitComp.onInit(VInitComp.java:200)
         at com.sap.pa.asr.procst.vac.vinit.wdp.InternalVInitComp.onInit(InternalVInitComp.java:153)
         at com.sap.pa.asr.procst.vac.vinit.VInitCompInterface.onInit(VInitCompInterface.java:161)
         at com.sap.pa.asr.procst.vac.vinit.wdp.InternalVInitCompInterface.onInit(InternalVInitCompInterface.java:144)
         at com.sap.pa.asr.procst.vac.vinit.wdp.InternalVInitCompInterface$External.onInit(InternalVInitCompInterface.java:220)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:614)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:474)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:218)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:429)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:357)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:670)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:267)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:726)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:662)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:228)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:808)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:227)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1240)
         at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:340)
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:538)
         at com.sap.portal.pb.PageBuilder.wdDoInit(PageBuilder.java:177)
         at com.sap.portal.pb.wdp.InternalPageBuilder.wdDoInit(InternalPageBuilder.java:150)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:429)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:357)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:670)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:267)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:706)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:660)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:228)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:152)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:56)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:47)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.dictionary.runtime.DdException: Type com.sap.pa.asr.procst.model.procst.types.Asr_Withoutee does not exist
         at com.sap.dictionary.types.mdi.util.ProviderUtil.createAbapTypeXmlMap(ProviderUtil.java:400)
         at com.sap.dictionary.runtime.mdi.DataProvider.createSimpleTypeFromAbapType(DataProvider.java:586)
         at com.sap.dictionary.runtime.mdi.DataProvider.getDataType(DataProvider.java:286)
         at com.sap.dictionary.runtime.DdDictionary.getDataType(DdDictionary.java:95)
         at com.sap.dictionary.runtime.DdBroker.getDataType(DdBroker.java:164)
         at com.sap.dictionary.runtime.DdBroker.getSimpleType(DdBroker.java:170)
         at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getSimpleType(DataTypeBroker.java:242)
         ... 75 more
    Please do let me know if anybody could help.
    Regards,
    Ramesh

    Maybe the user used for RFC connection either does not exist or is not granted access to the model data.
    Best Regards,
    Martin

  • I am getting an error message "key not valid for use in specified state"

    I am trying to install adobe photoshop elements 12  I just bought and when it says install I click the button and up pops " key not valid for use in specified state" any body know what to do.

    Hi,
    You can try to mov the contents of "C:\Users\%USERNAME%\AppData\Roaming\Microsoft\Crypto\RSA" to another location.
    Try to run the installation again and check if it works.
    Additional information:
    ERROR: "key not valid for use in specified state" when updating to Lightroom 5.6 in Win8.1
    key not valid for use in specified state | Apple Support Communities

  • Consistent Error Message:  Key not valid for use in specified state

    For several years I have been trying to use iTunes.  Without success, I decided to try to reinstall the program and now I am getting the above error message.

    It seems we may have a more targeted solution. Based on posts in the thread  key not valid for use in specified state I've just added the following to the user tip.
    For "Key not valid for use in specified state" errors try moving the folder RSA from C:\Users\<User>\AppData\Roaming\Microsoft\Crypto\RSA to say C:\RSA (just in case there should be a need to restore it) then try installing again. This folder appears to act as a cache and should be rebuilt automatically as required.
    tt2

  • While trying to download update 11.4 for i tunes i received an error message "key not valid for use in specified state" what does that mean ? anyone please help ?

    while downloading update version 11.4 an error message appeared "key not valid for use in specified state " help ?

    See if this post by turingtest2 fixes it : key not valid for use in specified state

  • JDBC Error: This driver is locked for use with embedded applications

    Hi Experts,
    My sender adapter is throwing the below error:
    Error during database connection to the database URL 'jdbc:nwmss:sqlserver://<host>:<port>;databaseName=<dbname>' using the JDBC driver 'com.sap.nwmss.jdbc.sqlserver.SQLServerDriver': 'java.sql.SQLException: [NWMss][SQLServer JDBC Driver]This driver is locked for use with embedded applications.'
    What could be the problem? How can I resolve it?

    download the latest version of SQL driver from MS site and re deploy it on PI

  • Device Error-target device not suitable for use at 96% DVD Burn, Anybody?

    Hi There:
    W7,i5 1.5TB New!  I've MPEG & AVI converted the 10 hour edited timeline and seen the same error.  I like the menus & trying to complete burn.  Any suggestions?  Thanks, Ben!

    You're not really working with a 10-hour timeline, are you? You can only fit about 60-70 minutes of video on a standard DVD -- maybe twice that on a dual layer disc.
    In any event, the best way to find out what's going wrong and when is to use the troubleshooting steps in the FAQs to the right of the forum.
    http://forums.adobe.com/thread/415318?tstart=0
    If you'll post the results for each step in as much detail as possible, we can help you figure out what's going wrong and how to fix it.
    BTW, you're not combining MPEGs and AVIs in the same project, are you?
    You definitely want to convert those MPEGs first to AVIs so that only DV-AVIs are going into a project and that project. It will certainly save you a lot of heartache (as well as having to deal with strange interlacing issues) later.

  • Errors trying to compile PHP for use with MySQL

    I have installed and am using the GNU based tools from the Sunfreeware site to compile PHP. I already have Apache, MySQL, and Oracle compiled and working properly. Below is my configure string for my PHP build:
    ./configure --prefix=/usr/local/php5 \
    --with-config-file-scan-dir=/usr/local/php5/php.d \
    --with-apxs2=/var/apps/apache/bin/apxs \
    --with-ldap \
    --with-mysql=/var/apps/mysql \
    --with-mysqli=/var/apps/mysql/bin/mysql_config \
    --with-xsl=/usr/local/include/libxslt \
    --with-ncurses \
    --enable-xslt \
    --with-xslt-sablot \
    --with-bz2=/usr \
    --with-gd \
    --with-gdbm=/usr/local/lib \
    --with-openssl \
    --with-imap=/usr/local/imap-2006e \
    --with-imap-ssl \
    --with-freetype-dir=/usr/local/include/freetype2/freetype/freetype.h \
    --with-expat-dir \
    --with-tiff-dir \
    --with-zlib \
    --with-jpeg-dir=/usr/local/include/jpeglib.h \
    --with-png-dir=/usr/include/libpng12/png.h \
    --with-mcrypt \
    --with-curl \
    --with-curlwrappers \
    --with-gettext \
    --disable-short-tags \
    --disable-debug \
    --enable-calendar \
    --enable-ctype \
    --enable-discard-path \
    --enable-exif \
    --enable-ftp \
    --enable-memory-limit \
    --enable-sysvem \
    --enable-sysvshm \
    --enable-gd-native-ttf \
    --enable-soap \
    --enable-shmop \
    --enable-sockets \
    --enable-xslt \
    --enable-mbstring \
    --with-sqlite=shared \
    --with-pdo-sqlite=shared \
    --with-pdo-mysql=shared,/var/apps/mysql \
    --enable-pdo=shared \
    --enable-bcmath \
    --with-oci8=sharedI have ld, make, and various tools linked to /usr/local/bin/<toolname>. The configure string completes with no issue and the make runs for about 30 minutes before it stops with the following warnings/errors:
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libssl.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libssl.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    /usr/ccs/bin/ld: warning: libcrypto.so.0.9.8, needed by /usr/local/lib/libldap.so, may conflict with libcrypto.so.0.9.7
    <snip>....
    /var/apps/php-5.2.5/ext/mysqli/mysqli_nonapi.c:209: undefined reference to `mysql_sqlstate'
    /var/apps/php-5.2.5/ext/mysqli/mysqli_nonapi.c:200: undefined reference to `mysql_set_server_option'
    /var/apps/php-5.2.5/ext/mysqli/mysqli_nonapi.c:212: undefined reference to `mysql_set_server_option'
    ext/mysqli/.libs/mysqli_nonapi.o: In function `zif_mysqli_query':
    /var/apps/php-5.2.5/ext/mysqli/mysqli_nonapi.c:251: undefined reference to `mysql_set_server_option'
    ext/mysqli/.libs/mysqli_nonapi.o: In function `zif_mysqli_get_warnings':
    /var/apps/php-5.2.5/ext/mysqli/mysqli_nonapi.c:298: undefined reference to `mysql_warning_count'
    ext/mysqli/.libs/mysqli_nonapi.o: In function `zif_mysqli_stmt_get_warnings'
    /var/apps/php-5.2.5/ext/mysqli/mysqli_warning.c:195: undefined reference to `mysql_warning_count'
    collect2: ld returned 1 exit status
    make: *** [sapi/cli/php] Error 1:
    There are many, many more "undefined reference" messages all mysql related.
    Here is my environment and crle output:
    LD_LIBRARY_PATH=/usr/local/ssl/lib:/usr/local/lib:/usr/local/BerkeleyDB.4.2/lib:/var/apps/mysql/lib/mysql
    PATH=/usr/local/bin:/usr/bin:/usr/sbin:/usr/local/sbin:/opt/sfw/bin:/usr/local/ssl/bin:/usr/ucb:/usr/ccs/bin:/opt/VRTS/bin:/etc:/opt/EMCpower/bin:/opt/EMCpower/bin/sparcv9:/etc/emc/bin:/opt/VRTSagents/ha/bin:/usr/local/include:/usr/include:/usr/platform/`uname -i`/sbin:/var/apps/mysql/bin:/var/apps/mysql/include/mysql:/opt/RICHPse/bin:/usr/local/php5/bin:/opt/sfw/sbin
    crle output
    Configuration file [version 4]: /var/ld/ld.config
    Default Library Path (ELF): /lib:/usr/lib:/usr/local/lib
    Trusted Directories (ELF): /lib/secure:/usr/lib/secure (system default)
    Any ideas as to how I can get around the MySQL errors, etc. would be appreciated.

    Here are the requirments for 10.5.8:
    Mac computer with an Intel, PowerPC G5, or PowerPC G4 (867MHz or faster) processor
    512MB of memory
    DVD drive for installation
    9GB of available disk space
    You have to purchase the upgrade from Apple for $129. You ned to call and order ti since it is not listed in their on-line store. You can also try eBay or Craig's List. 

  • Error Message "Key not valid for use in specified state."

    Since July after my Firefox update, I have been getting the above error message whenever I attempt to update a software program. This is an message when I attempt Java or iTunes. I was suggested to look at my RSA file in the computer and it seems like the majority files in that file are "Old Firefox Data" files.

    The Old Firefox Data files are generated each time you reset Firefox. This is done from the about:support page, the Firefox menu or if you start Firefox in Safe Mode and select to restart/reset.
    The error, when searched for seems to apply to a Windows security update. I have not seen this is Firefox before.

  • ERROR: "key not valid for use in specified state" when updating to Lightroom 5.6 in Win8.1

    While doing a routine update from Lightroom 5.5 to v5.6 in Win 8.1, the installation halted at the start of the installation with the vague error message, "key not valid for use in specified state".  Although v5.5 was working just fine, the install routine deleted the v5.5 application files.  I rolled back to the previous system restore point (set just prior to the install) and recovered the executable files.  However, now the 5.5 files won't open the default catalog, none of the backups, or even create a new catalog.
    As v5.x was purchased as an update to v4.x, I've tried to reinstall the original Lightroom v4.x app from the factory disk.  I get the same error.
    Suggestions?
    Thanks. Dan

    I have a similar problem to Dan. while doing a routine upgrade from Lightroom 5.5 to 5.6 I got the
    : "key not valid for use in specified state"
    error and now Lightroom has completely disappeared. I've tried to uninstall, but there is nothing to uninstall. Going back to try to install the original 5.4 just results in the same error.
    A problem may have been that I closed Lightroom when the upgrade started to download. It then re-opened again when the install was halfway through., I assumed that was an error and closed it. just after that the error first appeared in the installer.
    I still had an older version of lightroom 4 installed. I've uninstalled it, and that didn't make any difference.
    I've also tried removing anything in the registry left over from the old installs and that didn't help either.
    Any suggestions?
    CHeers, Angus

  • Key not valid for use in specified state - installation error

    I am trying to install Adobe Reader XI on a Windows 7 computer at work and I get this error message:  "key not valid for use in specified state."  What is going on and how do I fix the problem so that i can install Adobe Reader?

    This worked:
    Solution 2: Re-create the Crypto folder.
    Close Acrobat. 
    In Windows Explorer, do one of the following:
    On Windows XP, navigate to C:\Documents and Settings\[your user name]\Application Data\Microsoft.
    On Windows Vista, navigate to C:\Users\[your user name]\AppData\Roaming\Microsoft.
    Note: These paths include hidden folders. To make hidden folders visible, see "Windows Tip - Show hidden files and folders" (TechNote kb402324). 
    Rename the Crypto folder as Crypto Old. 
    Open Acrobat. The Crypto folder will be re-created automatically. 
    Error: "Creation of this signature could not be completed. Platform Exception" when you sign a PDF (Acrobat 8, 9 on Wind…
    Then deleted wse_andromenda files in control panel programs, run regedit

  • ERROR: Key not valid for use in specified state

    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Key not valid for use in specified state.

    This is an old document but it does list several solutions that may be applicable: Error 1603: A fatal error occurred during installation

Maybe you are looking for