CFQUERY Timeout Parameter for SQL2005 Fails

Here's my test:
<cfquery name="test" datasource="dsn" timeout="1">
  select top 20000 *
  from table
</cfquery>
<cfoutput>#cfquery.ExecutionTime#</cfoutput>
I'm getting 3000+ for this value.  This shouldn't be, right?  Because I have the timeout parameter set for a second?  The driver I'm using is the one that's
supplied with CFMX7.02, "Microsoft SQL Server", hooked into a MS SQL Server 2005 Standard.  Why is CF ignoring the timeout parameter?

Hi,
Anyone? I saw many articles in Metalink regarding the tx_timeout parameter - also one which a customer is demanding an explanation and enhancement on the tx_timeout parameter. Come to think of it, when will it work? only for Exchange? (found some hints on this in metalink).
But still, is there no other way to immediately know if the port has opened or not?
I will try the following: http://www.oraclenerd.com/2008/11/javaplsql-port-scanner-ii.html , but still would prefer a PL/SQL solution though.
Many Thanks,
Henry Wu

Similar Messages

  • Display established connection timeout parameter for an ACE

    We are using an ACE Software version A2(3,5) and we try to diagnos a parameter map probleme.
    Is there a way to know what is the timeout parameter applied to an established connexion? The command "show conn address ip netmask mask detail" only show the elapse idle time.
    Thanks

    When one of our top management tries to access a particulat Dash Board in EP system for the first time in the morning
    he gets an error connection to partner timeout after 60 seconds
    He, he, he.... I wonder why thing like this always happen to the big chiefs...
    Anyhow... Does this happen to anyone else?... if not then it could be a name resolution issue... also check the exceptions on the proxy settings of IE.
    Regards
    Juan

  • Timeout-Parameter for XMLA-Interface

    Hello everyone,
    i am searching for a parameter like icm/conn_timeout or icm/keep_alive_timeout which applies to the XMLA-Interface.
    I am sending MDX-Queries via the SAP BI Java SDK against our SAP-Server which sometimes result in "read timeouts".
    Increasing XmlaConnectionConstants.TIMEOUT doesn't help so i need a server-side parameter.
    icm/conn_timeout or icm/keep_alive_timeout (the values are in seconds, not milliseconds, am i right?) don't seem to work either, so there must be another parameter which applies to the XMLA-interface...

    hi
    Check this note 1044258.. it may help.
    in case if it is MDX Query then check the Tags below
    http://help.sap.com/saphelp_nw2004s/helpdata/EN/9f/9b8f3c855f0454e10000000a11405a/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/EN/9f/9b8f3c855f0454e10000000a11405a/frameset.htm
    Hope it helps
    Santosh

  • Inccreasing the timeout  parameter for the Oracle R12 session

    Hi ,
    We have set profile ICX:SESSION TIME OUT to be 45. But it seems the session times out very quickly. How can this time out be increased ?
    WE are on R12.0.4.
    Best regards,
    brinda

    Hi brinda;
    Please check below and see its helpful for your issue,this topic discussed beforei belive you will get some answer(maybe more) in them
    EBS connection time out
    Re: ICX : Session Timeout
    Forms session timeout
    [Link1|http://www.solutionbeacon.com/best7.htm]
    Regard
    Helios

  • JCO timeout parameter?

    Dear all,
    We are trying to change a timeout parameter for JCO connections. We use ESS-MSS on our portal and when a user leave it without using the log off process, the system keep some RFC connections during one hour. We would like to keep those connections during only 30 minutes. Do you know how to proceed? Is there any parameter to change? 
    Please note that according to the note 947376 we know that 6 jco metadata connections are always alive to improve performance. But there are some others (for the users) that we would like to close automaticaly after 30 minutes.
    Many thanks for your help!
    Best regards,
    Olivier

    Hello Guys,
    Thank you very much for your answer. Is there a way to close all JCO connections automaticaly from the abap or java stack or should I set a timeout for each JCO?
    Thanks in advance,
    Olivier

  • DB parameter check for AUTO_MAINT failed

    Can someone help me out.  I am doing the prepare for an Upgrade to ERP 2005 from SAP 4.7.  I am at the General Checks phase 07 of the prepare and it is failing and the CHECKS.LOG shows.  DB parameter check for AUTO_MAINT failed.  I have checked this parameter using db2 get db cfg for <SID> and the param is set to = ON.  I have changed it to OFF just as an attempt but no luck.  Any helpful suggestions would be greatly appreciated.  Thanks

    hi,
    my first advice would be to use the latest SAPup version from SAP service marketplace (build version >24.063) - since i do not know which SAPup version and which DB2 version you are using.
    please keep in mind also point XII/ of OSS note 819876:
    XII/   SAPup 7.00/2, build 24.063 or higher, generates incorrect
    commands for the adjustment of database parameters for DB Version 8
    The CHK_DB6_PAR_INI and CHK_DB6_PAR_PRE phases check the values of the
    selected db(m) cfg parameters. If you need to change these values, the
    commands required to change the parameters are explicitly issued in
    CHECKS.LOG.
    As of SAPup 7.00/2 build 24.063 and higher, incorrect commands may be
    gerenated for DB2 UDB Version 8. Use the following list to change these:
    db(m) parameter     Generated value     Modified value
    DIR_CACHE                0                      NO
    KEEPFENCED            0                      NO
    DFT_MON_BUFPOOL  1                      ON
    AUTO_MAINT              1                      ON
    AUTO_TBL_MAINT       1                      ON
    AUTO_RUNSTATS       1                      ON
    Example:
    Instead of the generated command
    db2 update db cfg for <SAPSID> using AUTO_MAINT 1
    you must enter the following changed command:
    db2 update db cfg for <SAPSID> using AUTO_MAINT ON
    regards, frank

  • Parameter for Current Month and Previous Month

    I'm trying to create a parameter for current month and previous month based on the ex_date, but not sure what i'm doing wrong. 
    where ex_date = @SelectDate
    I created a second dataset below for the values in the parameters.
    SELECT Month(CURRENT_TIMESTAMP) AS 'Month', 'Current Month' as 'Current Month'
    union all
    SELECT Month(CURRENT_TIMESTAMP)-1 AS Month, 'Previous Month' as 'Previous Month'
    Results
    Month Current Month
    3 Current Month
    2 Previous Month
    Once I preview it I get "Conversion failed when converting date and/ or time from character string" I changed the data type to "date/Time" but that did not make a difference. The date is convert (varchar(10), ex_date, 101) so looks like
    11/12/2014. 
    I've also tried expressions like =month(now()) to pull current month with same error so i'm not sure what i'm doing wrong. Any ideas?

    i tired this real simple report
     in the first dataset - my main report query - select name from sysdatabases where month(crdate())=@month
    in the second dataset - select month(getdate()) as Month1
    in the parameters - choose int data type and available values - select the second data set
    in the first data set- add this parameter..( i am assumming you know this, since you have done)
    in the preview you should get the drop down with current month number - 3
    and if you run the report, it will display the database names that were created in march. remember we are no checking year, so will get all that were created in march across the years.
    Hope it Helps!!
    I'm looking to have the dropdown say "Previous Month" and "Current Month" as a option. I know how to get the information in SQL, but not sure how this translates or put into a parameter.
    Current Month
    list_date BETWEEN
    DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()), 0)
    AND
    DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()) + 1, 0)
    Previous Month
    list_date between
    CONVERT(varchar,dateadd(d,-(day(dateadd(m,-1,getdate()-2))),dateadd(m,-1,getdate()-1)),106) /* Last Month */
    and
    CONVERT(varchar,dateadd(d,-(day(getdate())),getdate()),106)

  • ORA-20100: File oRI_INV_.tmp creation for FND_FILE failed.

    Dear All,
    I am getting the following Error while running a concurrent program. Could anyone help me out why this error is coming out:
    Cause: FDPSTP failed due to ORA-20100: File oRI_INV_.tmp creation for FND_FILE failed.
    You will find more information on the cause of the error in request log.
    ORA-06512: at "APPS.FND_FILE", line 410
    ORA-06512
    Many Thanks in advance....

    Please verify the following:
    1) Make sure that APPLPTMP is set to a valid directory as shown above (Verify from the OS by issuing "echo $APPLPTMP" as applmgr user)
    2) Make sure that both the applmgr user and the database user "oracle" have read/write permissions on $APPLPTMP
    3) Make sure that APPLPTMP is the first entry in utl_file_dir (utl_file_dir is set in the init<SID>.ora file). To verify to what "utl_file_dir" is set:
    SQL> connect / as sysdba
    SQL> show parameter UTL_FILE_DIRYou may also check the troubleshooting steps outlined in the following note:
    Note: 261693.1 - Troubleshooting ORA-20100 on Concurrent Processing
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=261693.1

  • Date Format on OWB 11.1.0.7 to use for input parameter for a mapping

    All,
    What is the Date Format on OWB 11.1.0.7 to use for passing in an input parameter for a mapping to execute?
    I have tried '01-01-2010','01-JAN-2010','01.01.2010', 01/01/2010 and I get the following error:
    Error RPE-01003: An infrastructure condition prevented the request from completing.
    Error RPE-01038: Failed to evaluate expression declare l_expression DATE := 01/01/2010;begin :result := wb_rt_conversions.from_date(l_expression);end;. Please modify the expression, redeploy and retry again.
    RA-06550: line 1, column 32:
    PLS-00382: expression is of wrong type
    ORA-06550: line 1, column 24:
    PL/SQL: Item ignored
    ORA-06550: line 1, column 90:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 1, column 51:
    PL/SQL: Statement ignored
    I am using a Mapping Input parameter object and have a START_DATE_IN as a DATE and an END_DATE_IN as a DATE
    Any information you could provide would be greatly appreciated.
    Thanks,
    Shaun

    Hello Shaun,
    The function wb_rt_conversions.from_date is (at least in OWB10.2) overloaded and can with input-types as
    date, timestamp_unconstrained, timestamp_tz_unconstrained, timestamp_ltz_unconstrained or varchar2.
    If it doesn't work with varchar2 I would try Date:
    For example: to_date('2010-01-01','YYYY-MM-DD')
    I also found this thread:
    http://kr.forums.oracle.com/forums/thread.jspa?threadID=608257
    Hoping this helps...
    Guenther

  • Help with flex4unit ant build.xml: Socket timeout waiting for flexunit report

    I'm having trouble setting up ant to build and test my project locally and I'm not sure what the next step is.
    Info:
    Running on XP/Cygwin.
    All of the files that FlexUnit4 references when used in Flash Builder are in my '${basename}/libs' folder (eg FlexUnit4_1.0.swc).
    I've placed the flexunit4 task in my ant/libs folder.
    I'm getting two errors...
    I don't think I've set up the 'socket' stuff right for the tests. It just sits and waits then dies...
    [flexunit] Waiting for client connection ...
    (about a minute later)
    [flexunit] Stopping server ...
    [flexunit] End of test data reached, sending acknowledgement to player ...
    [flexunit] Closing client connection ...
    [flexunit] Closing server on port [1024] ...
    BUILD FAILED
    java.util.concurrent.ExecutionException: Socket timeout waiting for flexunit report
    Plus this is the error I get from the flash player:
    ReferenceError: Error #1065: Variable mx.skins.spark::BorderSkin is not defined.
    I don't know why it's complaining about Borderskin as I think I have included all the flex4 libs I could find. I suspect this second error is causing the first error?
    Any help appreciated. I think I'm just setting it up all wrong.
    Screencap of errors:
    http://twitpic.com/l7ay8
    build.xml:
    http://gist.github.com/20804

    Finally got everything working using the files from the CI Example which what i probably should have done in the first place.
    So a rough guide for anyone just starting out with this:
    Download the Flex 4 'workspace' from the digital primates hudson server . This appears to contain flexunit library and examples in various stages of development.
    I used Flex Builder 4 Beta 2 to set up my Test Suite and Test Cases.
    I then loaded the libs folder from:
    workspace.zip\workspace\project\FlexUnit4SampleCIProject
    into my flex project's libs folder:
    this includes:
    FlexUnit4.swc
    FlexUnit4CIListener.swc
    flexUnit4UIRunner.swc
    flexTasks.jar
    flexUnitTasks.jar
    I didn't need to remove the FlexUnit4 stuff that is 'referenced' automatically by flash builder when you start adding flexunit4 tests/suites.
    Then I used a modified version of the TestRunner.mxml found in:
    workspace.zip\workspace\project\FlexUnit4SampleCIProject\src\test\flex
    The lines to pay attention to are the ones that look like:
    static public function currentRunTestSuite():Array {
        var testsToRun:Array = new Array();
        testsToRun.push(packagename.TestSuiteName);
        testsToRun.push(packagename.TestClassName);
        return testsToRun;
    Just make sure you update this list to include all of the test suites &/or individual tests you want to run.
    I made this a static function and modified the code in the "FlexUnitApplication.mxml" file to use this function so i'd only need to update one list of suites/tests.
    FlexUnitApplication.mxml is generated automatically when you run FlexUnit4 tests in the Flash Builder 4 Beta 2 IDE.
    This is the build.xml file I'm using in the project:
    http://gist.github.com/208211
    Change the name of the project from "Flare" to whatever and adjust the other path settings where required (though you might want to write this from scratch at least once so you understand roughly what is going on).
    The Debug Flash Player must be installed on the server otherwise you'll get a:
    java.util.concurrent.ExecutionException: Socket timeout waiting for flexunit report
    ...while it waits for the non-existant debugger to attach. (This is obvious but I did forget and was a bit bewildered for a moment)
    Need to also ensure the environment variable:FLEX_HOME is set to the location you installed the flex sdk...by editing your .bashrc setting the environment variable the in the Hudson Configuration.
    You'll need to point Hudson at your ant installation and your jdk installation. If you downloaded he sdk, be aware you might need to point it to the jdk folder inside the place you installed the sdk.
    And I think that's all the problems I had. Hope it's useful to someone... if anyone who actually knows what they are doing can point out any potential issues/better ways of doing things, feel free to comment.
    Thanks to Brian (legrosb) and Mike (mlabriola) for their assistance!

  • How to change timeout parameter value in Oracle 10g R2

    Anyone knows how to change timeout parameter value in Oracle 10g Database R2?

    Waheed Azhar wrote:
    actually i am getting ORA-01013 exception which directly relates to the timeout value but i think it's hidden parameter...What makes you think it's a hidden parameter?
    A search of MetaLink for that error turns up a number of hits, most of which a very situational specific. Exactly what are you doing when you get this error? Are you connecting over an ODBC connection? Are you getting it on a connection request? At db shutdown? During a long-running query?

  • Passing Range Parameter for BO Publication for Dynamic Recepient list

    Hello,
    We have a Crystal report on top of BEx and we are passing input values for the parameters using another Crystal Report.
    We are trying to pass a date range from Dynamic Recipient List to date prompt under personalization.
    The format in which we are trying to pass is "05/06/2010 : 09/22/2010" and we are getting the below error in log file:
    Document for recipients {} failed: Internal error.
            Document for recipients {} failed: Cannot Map Multiple Profile Values to a Single Parameter Field: {[ZOC_DATE]} in Report: ABC_VendorFiscal.
            Document for recipients {} failed: Internal error. (FBE60502)
    How do we the pass values to date range?
    Regards,
    Vishal

    I came accross the same problem with BIP 4.0 and CR2011 on BW MDX.
    By searching on the SAP notes I have found this one which is apparently only a workaround:
    1544713
    Kind regards,
    Sylvain

  • Timeout parameter in Mail communication channel?

    Dear All,
    Can someone tell me if there is a option to put a timeout parameter in Mail PI channel like it is in File channel? One of my FTP channel used to stop polling abruptly, but using this parameter I fixed this problem completely. Now facing a same problem with one of the Mail channel.
    Thanks in advance for your response!.
    Best Regards,
    Kumaran

    Dear Ramesh & Bhavanishankar,
    Thanks for your response!.
    My concern is basically about the mail channel that stopped polling the source folder while the status says "Active". Due to this the interface is totally stopped working in PI and it starts working only when I restart the channel in CC monitoring.
    But yes, I have fixed this issue earlier for a diff mail channel by setting a restart every day (work around) using ATP. This really worked. But I cannot do this for every channel in my server.
    Best Regards,
    Kumaran

  • Aperture & Publish for Approval fails with webserver . . .

    I'm trying to get Publish for Approval working with Aperture. We are able to load the webpage on the client's browser, she can select an image, but when she hits "submit," Safari can't open the page "because the server is not responding."
    10.5.4, Aperture 2.1.1, Publish for Approval 1.5. The Apache2 error log:
    Mon Aug 04 13:58:20 2008 warn Init: Session Cache is not configured hint: SSLSessionCache
    Mon Aug 04 13:58:21 2008 notice Digest: generating secret for digest authentication ...
    Mon Aug 04 13:58:21 2008 notice Digest: done
    Mon Aug 04 13:58:21 2008 notice Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7l DAV/2 configured -- resuming normal operations
    Mon Aug 04 13:58:46 2008 notice caught SIGTERM, shutting down
    Mon Aug 04 13:58:46 2008 warn Init: Session Cache is not configured hint: SSLSessionCache
    Mon Aug 04 13:58:46 2008 notice Digest: generating secret for digest authentication ...
    Mon Aug 04 13:58:46 2008 notice Digest: done
    Mon Aug 04 13:58:46 2008 notice Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7l DAV/2 configured -- resuming normal operations
    Mon Aug 04 14:13:20 2008 error http://client 192.168.93.10 File does not exist: /Library/WebServer/Documents/favicon.ico, referer: http://192.168.93.10/1941/index.html
    Mon Aug 04 15:56:17 2008 error http://client 192.168.93.10 client denied by server configuration: /Users/david/Sites/
    Mon Aug 04 16:26:59 2008 error http://client 65.96.217.170 File does not exist: /Library/WebServer/Documents/favicon.ico, referer: http://71.232.115.230/1941/index.html
    Mon Aug 04 16:28:17 2008 error http://client 65.96.217.170 _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://71.232.115.230/1941/40.html
    Mon Aug 04 16:28:59 2008 error http://client 65.96.217.170 _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://71.232.115.230/1941/index.html
    Mon Aug 04 16:33:17 2008 warn http://client 65.96.217.170 Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/40.html
    Mon Aug 04 16:33:17 2008 error http://client 65.96.217.170 Premature end of script headers: Aperture-Submit.acgi, referer: http://71.232.115.230/1941/40.html
    Mon Aug 04 16:33:59 2008 warn http://client 65.96.217.170 Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    Mon Aug 04 16:33:59 2008 error http://client 65.96.217.170 Premature end of script headers: Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    Mon Aug 04 16:38:17 2008 warn http://client 65.96.217.170 Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/40.html
    Mon Aug 04 16:38:59 2008 warn http://client 65.96.217.170 Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    Mon Aug 04 17:16:56 2008 error http://client 65.96.217.170 _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://71.232.115.230/1941/index.html
    Mon Aug 04 17:17:55 2008 error http://client 65.96.217.170 _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://71.232.115.230/1941/02.html
    Mon Aug 04 17:21:56 2008 warn http://client 65.96.217.170 Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    Mon Aug 04 17:21:56 2008 error http://client 65.96.217.170 Premature end of script headers: Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    Mon Aug 04 17:22:55 2008 warn http://client 65.96.217.170 Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/02.html
    Mon Aug 04 17:22:55 2008 error http://client 65.96.217.170 Premature end of script headers: Aperture-Submit.acgi, referer: http://71.232.115.230/1941/02.html
    Mon Aug 04 17:26:56 2008 warn http://client 65.96.217.170 Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    Mon Aug 04 17:27:55 2008 warn http://client 65.96.217.170 Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/02.html
    Mon Aug 04 18:03:28 2008 notice caught SIGTERM, shutting down
    Mon Aug 04 18:04:30 2008 warn Init: Session Cache is not configured hint: SSLSessionCache
    httpd: Could not reliably determine the server's fully qualified domain name, using Russia.local for ServerName
    Mon Aug 04 18:04:31 2008 notice Digest: generating secret for digest authentication ...
    Mon Aug 04 18:04:31 2008 notice Digest: done
    Mon Aug 04 18:04:31 2008 notice Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7l DAV/2 configured -- resuming normal operations
    Mon Aug 04 18:47:55 2008 error http://client 192.168.93.10 _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://192.168.93.10/1941/index.html
    Mon Aug 04 18:52:55 2008 warn http://client 192.168.93.10 Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://192.168.93.10/1941/index.html
    Mon Aug 04 18:52:55 2008 error http://client 192.168.93.10 Premature end of script headers: Aperture-Submit.acgi, referer: http://192.168.93.10/1941/index.html
    Mon Aug 04 18:57:55 2008 warn http://client 192.168.93.10 Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://192.168.93.10/1941/index.html
    We've opened ports 80 and 443 on the firewall, and tried to approve and submit locally, with the same results.
    If anyone has any ideas on how to get this to work, it would be great. We have a lot to submit, and the client really would like to do it on line.
    Thanks,
    David

    Thanks for your input guys.
    We discovered that we originally had used Publish for Approval 1.1, and subsequently have changed to version 1.5, which no longer uses the third party app.
    Unfortunately, we still have the same problem, the client's browser stops loading when he or she hit's the "submit" button.
    ---> Could the installation of the 1.1 and third party app have left some preferences that need to be deleted or settings that need to be reset?
    ---> The error message on the client's web browser now states that the "server unexpectedly dropped the connection." Trying again later is not successful.
    The error logs for Apache2 from the most recent attempt are different than with the 1.1 version of the software:
    [Tue Aug 05 11:56:50 2008] [error] [client 76.24.22.217] File does not exist: /Library/WebServer/Documents/favicon.ico, referer: http://71.232.115.230/1941/index.html
    [Tue Aug 05 11:57:50 2008] [error] [client 76.24.22.217] File does not exist: /Library/WebServer/Documents/1941/images/blank.gif, referer: http://71.232.115.230/1941/12.html
    [Tue Aug 05 11:58:18 2008] [error] [client 76.24.22.217] _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://71.232.115.230/1941/12.html
    [Tue Aug 05 12:03:18 2008] [warn] [client 76.24.22.217] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/12.html
    [Tue Aug 05 12:03:18 2008] [error] [client 76.24.22.217] Premature end of script headers: Aperture-Submit.acgi, referer: http://71.232.115.230/1941/12.html
    [Tue Aug 05 12:08:18 2008] [warn] [client 76.24.22.217] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/12.html
    I don't know much about this, I just want my client to be able to approve the images through the Aperture interface.
    Thanks again, I really appreciate the help.
    David

  • "Publish for Approval" fails on submit

    I'm trying to get Publish for Approval working with Aperture. We are able to load the webpage on the client's browser, she can select an image, but when she hits "submit," Safari can't open the page "because the server is not responding."
    10.5.4, Aperture 2.1.1, Publish for Approval 1.5. The Apache2 error log:
    [Mon Aug 04 13:58:20 2008] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
    [Mon Aug 04 13:58:21 2008] [notice] Digest: generating secret for digest authentication ...
    [Mon Aug 04 13:58:21 2008] [notice] Digest: done
    [Mon Aug 04 13:58:21 2008] [notice] Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7l DAV/2 configured -- resuming normal operations
    [Mon Aug 04 13:58:46 2008] [notice] caught SIGTERM, shutting down
    [Mon Aug 04 13:58:46 2008] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
    [Mon Aug 04 13:58:46 2008] [notice] Digest: generating secret for digest authentication ...
    [Mon Aug 04 13:58:46 2008] [notice] Digest: done
    [Mon Aug 04 13:58:46 2008] [notice] Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7l DAV/2 configured -- resuming normal operations
    [Mon Aug 04 14:13:20 2008] [error] [client 192.168.93.10] File does not exist: /Library/WebServer/Documents/favicon.ico, referer: http://192.168.93.10/1941/index.html
    [Mon Aug 04 15:56:17 2008] [error] [client 192.168.93.10] client denied by server configuration: /Users/david/Sites/
    [Mon Aug 04 16:26:59 2008] [error] [client 65.96.217.170] File does not exist: /Library/WebServer/Documents/favicon.ico, referer: http://71.232.115.230/1941/index.html
    [Mon Aug 04 16:28:17 2008] [error] [client 65.96.217.170] _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://71.232.115.230/1941/40.html
    [Mon Aug 04 16:28:59 2008] [error] [client 65.96.217.170] _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://71.232.115.230/1941/index.html
    [Mon Aug 04 16:33:17 2008] [warn] [client 65.96.217.170] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/40.html
    [Mon Aug 04 16:33:17 2008] [error] [client 65.96.217.170] Premature end of script headers: Aperture-Submit.acgi, referer: http://71.232.115.230/1941/40.html
    [Mon Aug 04 16:33:59 2008] [warn] [client 65.96.217.170] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    [Mon Aug 04 16:33:59 2008] [error] [client 65.96.217.170] Premature end of script headers: Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    [Mon Aug 04 16:38:17 2008] [warn] [client 65.96.217.170] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/40.html
    [Mon Aug 04 16:38:59 2008] [warn] [client 65.96.217.170] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    [Mon Aug 04 17:16:56 2008] [error] [client 65.96.217.170] _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://71.232.115.230/1941/index.html
    [Mon Aug 04 17:17:55 2008] [error] [client 65.96.217.170] _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://71.232.115.230/1941/02.html
    [Mon Aug 04 17:21:56 2008] [warn] [client 65.96.217.170] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    [Mon Aug 04 17:21:56 2008] [error] [client 65.96.217.170] Premature end of script headers: Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    [Mon Aug 04 17:22:55 2008] [warn] [client 65.96.217.170] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/02.html
    [Mon Aug 04 17:22:55 2008] [error] [client 65.96.217.170] Premature end of script headers: Aperture-Submit.acgi, referer: http://71.232.115.230/1941/02.html
    [Mon Aug 04 17:26:56 2008] [warn] [client 65.96.217.170] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/index.html
    [Mon Aug 04 17:27:55 2008] [warn] [client 65.96.217.170] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://71.232.115.230/1941/02.html
    [Mon Aug 04 18:03:28 2008] [notice] caught SIGTERM, shutting down
    [Mon Aug 04 18:04:30 2008] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
    httpd: Could not reliably determine the server's fully qualified domain name, using Russia.local for ServerName
    [Mon Aug 04 18:04:31 2008] [notice] Digest: generating secret for digest authentication ...
    [Mon Aug 04 18:04:31 2008] [notice] Digest: done
    [Mon Aug 04 18:04:31 2008] [notice] Apache/2.2.8 (Unix) mod_ssl/2.2.8 OpenSSL/0.9.7l DAV/2 configured -- resuming normal operations
    [Mon Aug 04 18:47:55 2008] [error] [client 192.168.93.10] _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL., referer: http://192.168.93.10/1941/index.html
    [Mon Aug 04 18:52:55 2008] [warn] [client 192.168.93.10] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://192.168.93.10/1941/index.html
    [Mon Aug 04 18:52:55 2008] [error] [client 192.168.93.10] Premature end of script headers: Aperture-Submit.acgi, referer: http://192.168.93.10/1941/index.html
    [Mon Aug 04 18:57:55 2008] [warn] [client 192.168.93.10] Timeout waiting for output from CGI script /Library/WebServer/CGI-Executables/Aperture-Submit.acgi, referer: http://192.168.93.10/1941/index.html
    We've opened ports 80 and 443 on the firewall, and tried to approve and submit locally, with the same results.
    If anyone has any ideas on how to get this to work, it would be great. We have a lot to submit, and the client really would like to do it on line.
    Thanks,
    David

    It looks like your webserver is not set up correctly. You might get better responses in the Networking and the Web forum - this is the Leopard Automator forum.

Maybe you are looking for

  • Keeps asking for my email password

    Apple Mail has started to ask for my password. I've typed in my password many times. I have checked the box to remember the password in my keychain. It still asks for my password over and over again. I have two accounts with Apple Mail, one works per

  • Rlim_fd_max Kernel Parameter on Solaris 9

    I am trying to install Oracle Application Server 10g Release 2 on Solaris 9. The installation errors out on the "Select Configuration Options" screen with the following error: "Oracle Application Server 10g Web Cache requires the Kernel Parameter rli

  • I cannot update apps iphone will not accept password

    I have a apple id and when I try to update apps on iphone it will not accept password keep asking to reset it same problem with icloud cannot log in will not accept pw I tried creating a new id but same problem

  • Bridge Filter Pane Missing Options

    Hey Thrill seekers, I just noticed that My filter window in bridge is showing ONLY Labels and Keywords.  When I click the upper right of the filter window, Ratings is also checked but it doesn't appear in the filter list.  I must have found one of th

  • Request api

    Hi All, I needed to get the modified value of attribute from request using api ...I have the request ID i have the attribute modified but how do i get the value...Does anyone know the api that can be used Thank you.