Submit timeout

I have a submit button in my PDF form where I submit the PDF file to a PHP webpage. It works fine if the PDF is about 700K in size, but now I have a PDF that is 1.5 Meg and when I submit it, it now returns back a 'Timeout' error.
Is there any way to extend the timeout period so that it can upload properly?

Hi, I'm having a similar issue, SOAP request through JS in a PDF calling a WebSphere deployed web Service. The Web service takes approx 2 minutes to complete, and completes successfully, but the client times out with the message 'A network connection couldn't be created.' after 30 seconds. There are no server side errors (in any WAS log file), the timeout is nowhere near the limit in soap.client.props, and this is the same message I get after a couple of seconds if I plug out the network cable and try the WS, so I'm certain it is client side.
does anyone know where this default timeout can be set in Adobe Acrobat settings?

Similar Messages

  • Can't submit my podcast - "timeout connecting to feed"

    Hi -
    For the last week I have tried to submit my new podcast to the iTunes Store. Every time I do this, I get the following error message:
    We experienced a timeout connecting to this feed at this time. Read timed out.
    I've added this feed to every other podcast directory with no problems, I can subscribe to the feed in iTunes (doin' the Advanced > Subscribe to Podcast dance), so I know the feed works. What's wrong with iTunes?
    Steve

    I just waited for a couple of weeks and everything seemed to work out... Patience is a virtue.

  • Can't submit Feedburner podcast to the iTunes Directory, possibly timeout

    I'm trying to submit my I'm trying to submit my feedburner podcast to the iTunes Directory.
    Here's the error message I'm getting.
    Our connection was interrupted to this feed possibly due to a timeout. The host did not accept the connection within the timeout of 10000 ms.
    Help!!
    Here's the error message I'm getting.
    Our connection was interrupted to this feed possibly due to a timeout. The host did not accept the connection within the timeout of 10000 ms.
    Help!!

    It's working now!

  • Branch "On Submit: After Processing" timeout problem.

    I have a page that allows users to upload a csv file. After selecting the file and clicking the 'Load' button, a Procedure is kicked off. When the file is small, there is no problem- the Procedure completes, and my Branch takes the user to the next page. However, when a large batch is uploaded, the browser timesout with the following error (IE7):
    "Internet Explorer cannot display the webpage"
    How can I correct this? For now, I would be happy to simply have the page stay in place while the file loads (this can take up to 15 minutes for large files). Ultimately, I would like to have the screen 'grey out' and display a flash like 'loading' message/animation. That way, the user won't be tempted to hit the "Load" button again.
    Any help would be greatly appreciated! I've spent WAY too much time trying to fix this problem and the boss is getting anxious! ;-)
    APEX 3.1 with DB 10g.
    Thanks in advance!
    Alex

    Just to add to my last-
    I tried changing my HTTP Server httpd.conf settings to a higher 'timeout' setting. However, no matter what number I use, it always timesout at 5 minutes (which is 300 seconds - the default value for HTTP Server timeouts).
    This makes me think I'm missing an HTTP setting someplace - or - APEX is somehow overriding the setting - or - my setting changes are not taking (I did restart the HTTP Server after the changes).
    Any Apache server guru's out there who might know what's up?
    Thanks again,
    Alex

  • InfoPath 2010 form parsing error with 3600 execution timeout value in SharePoint 2010

    Hi,
    I have a list in SharePoint 2010 with 100 columns where 25 of them are calculated columns. This list is designed by InfoPath 2010 with two secondary data connections to pull a few data from another two lists. There are 25 set value rules with the submit
    button in InfoPath from. At present, the list is containing around 1000 items.
    The problem is, when I published the InfoPath form it throws an error:
    The SOAP message cannot be parsed.
    In fact, the execution timeout is set to 3600 in config file. When I delete items from the list and keep it around 700 the InfoPath form publish then.
    Could somebody tell me why this problem and what is the possible solution.
    Thanks in advance.

    Hi pointtoshare,
    According to your description, my understanding is that you got an error when you published InfoPath form.
    Please modify the web.config file like :
    <location path="_layouts/UploadEx.aspx">
         <system.web>
           <httpRuntime maxRequestLength="51200" executionTimeout="300" />
         </system.web>
       </location>
    And modify the <securityPolicy> section like :
    The web.config file is in C:\inetpub\wwwroot\wss\VirtualDirectories\spwebappname.
    There is another reason for this issue, please take a look at :
    http://www.heyweb.net/2011/07/infopath-the-soap-message-cannot-be-parsed/
    Here are some similar posts for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/ea8da113-fe9a-4878-9994-c1f24cc85c37/soap-error-when-publishing-infopath-form-to-sharepoint?forum=sharepointcustomizationprevious
    http://sharepointshah.blogspot.in/2012/11/soap-message-cannot-be-parsed-error.html
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Visa Read Timeout Occurs with multiple Reentrant VI Calls

    I have written a test application in Labview (6.1) which will be used to test (burn-in) up to 15 serial instruments through a 16 Port USB->RS232 Hub. Here's how it works:
    When the App loads, I am transmitting a Connect command to each of 15 com ports (one-at-a-time) using VISA. If I receive the proper response from the unit on that port, I add the port to an array and continue on to the next system. Once I've found all systems on the hub, I wire my array of active Visa references to a for loop in which I open up to 15 reentrant VIs which will run in the background in parallel. Each of these reentrant VIs (all are idential with the exception of the Visa Resource they use) running in the background are sending commands to the the respective instrument and receiving a response. One Function in particular "Get Unit Status" is important and the response determines whether or not the instrument is functioning correctly. Here's the problem -- In my Main Loop, I am continuously acquiring indicator values from each of the reentrant VIs that are running in the background. After a period of time (not consistent) I will lose communication with a port (the symptom is no response from the unit). I've looked closely at the COMM engine I created and found that the Visa Write function is completing without error, then when I perform a Visa Read I immediately get the "Timeout occured before operation completed" error (please keep in mind that this occurs after 100-5000 successful attempts at writing/reading). Eventually another port will drop out, followed by another. This seems to stop occurring and the remaining systems run to completion without a problem.
    Some background on what how I'm setting up my Visa Sessions...
    When I originally scan for systems (before I load and run the Reentrant VIs)
    - Init Visa Port
    - 19200, 8, N, 1
    - Use Termination = True
    - Timeout = 400mS (I've tried larger values already) 400mS should be plenty
    - Termination Char=13 (/r)
    - Open Visa Session
    - Visa Write "CONN18/r" (the command required to connect to my instrument)
    - Visa Read with 1 for requrested byte count to read 1 byte at-a-time, concatenating the results until /r is received (or 1000mS timeout occurs -- this is not a VISA timeout) I've also tried 16 for requested byte count and just waiting for Visa to timeout -- both methods work.
    Once all 16 ports are scanned I Close ALL of the ports using the Visa Close Function.
    It is important to know at this time that I "AM" using proper wiring flow to ensure open occurs before write, write occurs before read, etc.
    I'm assuming at this time that all of my Visa sessions are closed.
    On to the Reentrant VIs:
    Inside each reentrant VI I first Initialize all of my variables and Init/Open a 'New'? Visa session using the same parameters mentioned above.
    Then I enter the "Run" case structure where all of the communication begins.
    I am using the same Communications Engine to operate the instrument as before (the only difference being that all of the VIs in the comm engine are now reentrant and operate at higher priorities) I have actually saved two different versions of the engine (one for the reentrant calls and one for when I first scan for systems from my Main GUI).
    When I init the reentrant VI, I am placing the Duplicate Visa Resource output of my Visa Open Function on a shift register. When I enter the Run case, it takes the Resource from the register on the left, wires through any Comm Engine Vis then back out to the shift register on the right and keeps going for a 12-hour period or until "Get Unit Status" has returned 60 naughty results.
    On my Main GUI I am continuously (every 500mS) I am Getting certain Indicator Values from each reentrant VI AND I am also setting some control Values on each reentrant VI. There is no VISA interaction between each Reentrant VI, and the Main GUI.
    As I said earlier, up to 15 systems will run for a time, then one will stop responding, followed by another, and another until a few remaining systems will run to completion.
    Any advice as to why I'm encountering the timeouts with the VISA read fucntion as I have metioned would be appreciated. I managed to find one suggestion which uses the Bytes at Port function to ensure there is data at the port before doing a Read otherwise, skip the read and retry the whole operation -- I haven't tried this yet.
    Sorry for the wordiness of my question. If anyone would like some screen shots of portions of my code (I can't submit the actual code because some of it is confidential) I'd be happy to post them.
    Doug.

    Hi Doug,
    The first thing I would recommend is the solution you have already found, to check and see if there is data at the port before attempting a read. I would be interested to see if this will solve the problem. Does there seem to be any trend to which ports have this timeout error? How many ports does it cut down to before operation seems to continue as expected? Does this number vary, or is it always the same number of ports? I think the best thing to do will be to identify constant attributes of how the error is occurring so that we can narrow it down and see what is going on.
    John M

  • Submit buttons don't work in HTML view.

    I have a form with Submit by e-mail button. If it is saved as PDF file everything works fine.
    But via web (either with HTML or with PDF profile) no emails are sent, and also it redirects me to this url:
    http://192.168.1.82:8080/lc/bin/xfaforms/submitaction which contains XML with form data.
    Here is the URL i use to open my form:
    http://192.168.1.82:8080/lc/content/xfaforms/profiles/default.html?contentRoot=repository% 3A%2F%2F%2FApplications%2FTest%2F1.0&template=buttons.xdp
    Also, there are some errors in server.log:
    2014-01-27 15:05:29,463 WARN  [com.adobe.service.J2EEConnectionFactoryManagerPeerImpl] (192.168.1.82 [1391079927332] GET /lc/content/xfaforms/profiles/default.html HTTP/1.1) Service: XMLFormService resource: ProcessResource@201d2a6(name=XMLForm.exe,pid=2596) could not schedule an interrupt for transaction: TransactionImple < ac, BasicAction: -3f57fe65:f5f7:52ea2baa:4233 status: ActionStatus.RUNNING > because excessive time was spent waiting in queue. Supplied timeout: 0s, Wait adjustment: 0s, Effective timeout: 0s.
    2014-01-27 15:06:10,329 WARN  [com.adobe.service.J2EEConnectionFactoryManagerPeerImpl] (192.168.1.82 [1391079970221] POST /lc/bin/xfaforms/submitaction HTTP/1.1) Service: XMLFormService resource: ProcessResource@201d2a6(name=XMLForm.exe,pid=2596) could not schedule an interrupt for transaction: TransactionImple < ac, BasicAction: -3f57fe65:f5f7:52ea2baa:4336 status: ActionStatus.RUNNING > because excessive time was spent waiting in queue. Supplied timeout: 0s, Wait adjustment: 0s, Effective timeout: 0s.

    As of today, Mobile Form doesn't support submission by email out of the box. But you can use submit service proxy to send out email rather than normal HTTP POST. You can browse through my blog post to get the detail on how to configure this.

  • Apex Version 4.2: Why doesn't the session timeout parameter settings work?

    Prior to an upgrade to Apex Version 4.2.0.00.27, we ran Apex Version 4.1 in our environment. This is on a platform using Oracle Database Enterprise Edition 11g R2 on Windows Server 2008. The session timeout parameters (set for a single application using "Shared Components" -> "Security Attributes") were set to the following:
    Maximum Session Time: 1 day
    Maximum Session Idle Time: 8 hours
    This worked with no problems in Apex 4.1; our user would leave a data entry form open for several hours, complete the data entry then submit the page. Now, with the upgrade to Apex 4.2, doing the same thing causes the system to redirect to the login page and aborting any edits or new data entered into the form previously.
    I have tried to set both session parameters to ZERO (0) which is what the documentation explains is the equivallent to "no timeout" but that didn't work as well.
    I have reset the session control parameters to what they were before the upgrade and my session times out before the time values I set. (on the version 4.2 upgraded instance).
    Why was the session timeout parameters I set ignored by the system? Can anyone else out there confirm/repeat the problem I observed?

    Hi Richard,
    You probable have it ok, but the time should be in seconds.
    Kees

  • Implementing session timeout in JSP - - Urgent help !

    Hi
    I have a requirement where I need to write a session timeout functionality in a JSP such that the page is redirected to a different page if there is no activity for 5 min.
    I tried the following :
    1.On the onload of my JSP, i created a new session from the current request using the following code snippet :
              HttpSession pSession = request.getSession(true);
              pSession.setAttribute("loggedin","true");
              pSession.setMaxInactiveInterval(10);
    2. Then on any action performed on the JSP, i called the collowing JS function before invoking the server side code.
    /** function to check the user session **/
    function fnChkSession()
         alert('Inside check session');
         <%
              try
                   System.out.println("The value of the session var loggedin : "+pSession.getAttribute("loggedin").toString());
                   System.out.println(" getMaxInactiveInterval() value is : "+pSession.getMaxInactiveInterval());
              catch (Exception e)
                   System.out.println("** Inside the fnChkSession exception catch block **");
              if (pSession.getValue("loggedin") == null)
         %>
              alert('Session has expired');
              document.forms[0].submit();
         <% } %>
    But when I execute this code ,even after 10 secs my session seems to be alive.I can retrieve the session attribute after 10s.
    I also tried setting the session-timeout value in the web.xml. It didnt work.
    Can anyone pls help me on how to proceed further on this.
    Thanks
    Arun B

    You are confusing java with javascript.
    These two things are not the same.
    The lifecycle goes something like this
    1 - Request is made to server
    2 - Java/JSP runs java code, produces HTML page
    3 - java stops running
    4 - html is sent to browser, and javascript starts running.
    You cannot call java code from browser events (such as onload, onclick, onchange...) The only way to run java code again is to submit a request (normally by submitting a form, or clicking a link. )
    If you want a javascript solution, in IE, use the window.setTimeout() method to execute some javascript code after a certain period of time.
    A more generic approach would be to use the refresh header. Set the timeout for the refresh header to be 300 seconds. If the user stays on the same page for more than 5 minutes, it will redirect to the new page.
    Hope this helps,
    evnafets

  • CF11 : cflogin doesn't "stuck" after session/login timeout

    Hi,
    Since migrating from CFMX7 to CF11 we are experiencing some weird failure with cflogin (using session or cookie storage).
    Basically when we log-in on the application after a session/client timeout the first login doesn't last for longer than the login submit request.
    The second login however is OK
    I made a very simple application.cfc/index.cfm with short timeouts to check this:
    <cfcomponent
    output="false"
    hint="I define the application settings and event handlers.">
            <!--- Define the application settings. --->
            <cfset this.name = hash( getCurrentTemplatePath() ) />
            <cfset this.applicationTimeout = createTimeSpan( 0, 0, 10, 0 ) />
            <cfset this.sessionTimeout = createTimeSpan( 0, 0, 0, 10 ) />
            <!--- Set up the application. --->
            <cfset THIS.SessionManagement = true />
            <cfset THIS.ClientManagement = true />
            <cfset THIS.SetClientCookies = true />
            <cfset THIS.loginStorage = "Session" />
            <cfset THIS.clientStorage = "sidys" />
            <!--- Define the request settings. --->
            <cfsetting showdebugoutput="false" />
            <cffunction
                    name="OnRequestStart"
                    access="public"
                    returntype="boolean"
                    output="true"
                    hint="Fires at first part of page processing.">
                    <!--- Define arguments. --->
                    <cfargument
                    name="TargetPage"
                    type="string"
                    required="true"
                    />
                    <cfset SetLocale("fr_FR") />
                    <cfif IsDefined("Form.logout") or IsDefined("URL.logout")>
                            <cflogout />
                    </cfif>
                    <cflogin idletimeout="20">
                            <cfdump var="#Session#">
                            <cfinclude template="form.inc" />
    <cfif not isDefined("cflogin") or (cflogin.name IS "" OR cflogin.password IS "")>
            <cfoutput>
                    <form method="post">
                    <b>login :</b>
                    <input type="text" name="j_username" size="24" class="champ" />
                    <b>passwordnbsp;:</b>
                    <input type="password" name="j_password" size="15" class="champ" />
                    <input type="submit" value="Login" class="button" name="submit" />
                    </form>
            </cfoutput>
            <cfabort>
    <cfelse>
            <cflock timeout="10" scope="Session" type="exclusive">
                    <cfloginuser name="#cflogin.name#" Password="#cflogin.password#" roles="role">
                    <cfset Session.id=cflogin.name />
            </cflock>
    </cfif>
                    </cflogin>
                    <cfdump var="#Session#">
                    <cfif GetAuthUser() NEQ "">
                            <cfoutput>
                                    <form method="Post">
                                    <input type="submit" Name="Logout" value="Logout">
                                    </form>
                            </cfoutput>
                    </cfif>
                     <cfreturn true />
            </cffunction>
    </cfcomponent>

    I created a directory and copied your code to it. The exception was that I set THIS.ClientManagement to false and commented out the lines <cfset THIS.clientStorage = "sidys" /> and <cfinclude template="form.inc" />.
    The code worked as expected. The files I used in the test are shown below.
    index.cfm
    We are in index.cfm<br>
    <cfdump var="#session#">
    Application.cfc
    <cfcomponent>
    <!--- Define the application settings. --->
    <cfset this.name = hash(getCurrentTemplatePath()) />
    <cfset this.applicationTimeout = createTimeSpan( 1, 0, 0, 0 ) />
    <cfset this.sessionTimeout = createTimeSpan( 0, 0, 0, 10 ) />
    <!--- Set up the application. --->
    <cfset THIS.SessionManagement = true />
    <cfset THIS.ClientManagement = false />
    <cfset THIS.SetClientCookies = true />
    <cfset THIS.loginStorage = "Session" />
    <!--- <cfset THIS.clientStorage = "sidys" /> --->
    <!--- Define the request settings. --->
    <cfsetting showdebugoutput="false" />
    <cffunction
                    name="OnRequestStart"
                    access="public"
                    returntype="boolean"
                    output="true"
                    hint="Fires at first part of page processing.">
                    <!--- Define arguments. --->
                    <cfargument
                    name="TargetPage"
                    type="string"
                    required="true"
                    />
                    <cfset SetLocale("fr_FR") />
                    <cfif IsDefined("Form.logout") or IsDefined("URL.logout")>
                            <cflogout />
                    </cfif>
                       <cflogin idletimeout="10">
                      <!--- <cfinclude template="form.inc" /> --->
                       <cfif isDefined("cflogin.name") AND cflogin.name IS NOT "" AND cflogin.password IS NOT "">
                             <!--- login form submitted, with username and password filled in --->
                             <cfloginuser name="#cflogin.name#" Password="#cflogin.password#" roles="role">
                             <cfset Session.id=cflogin.name />
                      <cfelseif getAuthUser() IS "">
                              <!--- User not yet logged in --->
                              <cfinclude template="loginForm.cfm">
                              <cfabort>
                     </cfif>
                    </cflogin>
            <cfif getAuthUser() NEQ "">
                <cfinclude template="logoutForm.cfm">
                <!--- <cfabort> --->
            </cfif>
        <cfreturn true />
        </cffunction>
    </cfcomponent>
    loginform.cfm
    <div>
    <form method="post">
    <b>login :</b>
    <input type="text" name="j_username" size="24" class="champ" />
    <b>password :</b>
    <input type="password" name="j_password" size="15" class="champ" />
    <input type="submit" value="Login" class="button" name="submit" />
    </form>
    </div>
    logoutform.cfm
    <div>
    <form method="Post">
    <input type="submit" Name="Logout" value="Logout">
    </form>
    </div>
    You will observe that, like you, I set the session and cflogin timeout to a low test value, 10 seconds. When I first opened the URL to index.cfm in the browser, the login form was duly displayed. I entered a name and password and submitted the form.
    I got the index.cfm page again. That time it had the logout button and a dump of the session scope. The dump contained an id (my username), confirming that login was still active. When I re-requested index.cfm, repeatedly in the browser, within around 4 or 5 seconds, its contents remained unchanged.  I then waited for about 15 to 20 seconds, for the login and session to time out.
    I then repeated the procedure of logging in and re-requesting index.cfm every 4 or 5 seconds. I got the same result: its contents remained unchanged. That is the expected behaviour of cflogin and session.

  • Terminination Page Hangs and cpu spikes when hit submit

    Hi ,
        Could you please help me trouble shooting on the below issues.
                  Req :
                        Convert "Termination Reason"(message Choice to Message LOV) on TerminiationPG so that Additional Description can be show to the manager before selecting the Reason.
                 Sol :
                         Created an External LOV With new AM, CO.Created a new Message LOV with Personilization  and Extended to the LOV which i created, I was able to navigate to next page(Review) and when i hit
                        Submit it hangs
    Thanks

    Salman,
    There is an Apache timeout directive that you can increase, which should solve both problems. It looks like after the timeout the request is being retried, which may be the result of a different Apache directive. The access and error logs should show you some useful information about these cases. Some other reader might offer what those directives are, I'm not sure.
    That you are seeing the page processes complete even though the HTTP request times out is not strange. Once the server-side code is invoked, the request timeout cannot stop it.
    Scott

  • Unable Submit Form Value to Action when running struts-portlet in OracleAS

    Hi,I have develop a portlet using struts & pdk, after that deploy it by OC4J and register the
    provider at Oracle Application Server 10g 10.1.2.2.
    However the formbean value is unable passing to action after clicking submit button,this problem
    doesn't comeout when i run my code as stand alone application.
    here is my application code:
    1. Action Class:
    public class ZoneAction
      extends DispatchAction
      public ActionForward display(ActionMapping mapping, ActionForm form,
                                   HttpServletRequest request,
                                   HttpServletResponse response)
        throws IOException, ServletException
        ZoneHibernate zh = new ZoneHibernate();
        List list = zh.retrieveAllZone();
        ZoneForms zf = new ZoneForms();
        ZoneForm blankForm = new ZoneForm();
        list.add(blankForm);
        zf.setZoneForms(list);
        request.setAttribute("zoneForms", zf);
        return mapping.findForward("success");
    2.Provider.xml:
    <provider class="oracle.portal.provider.v2.DefaultProviderDefinition">
       <session>true</session>
       <passAllUrlParams>true</passAllUrlParams>
       <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition">
          <id>1</id>
          <name>irmsPortlet</name>
          <title>iRMS Portlet</title>
          <description></description>
          <timeout>40</timeout>
          <showEditToPublic>false</showEditToPublic>
          <hasAbout>false</hasAbout>
          <showEdit>false</showEdit>
          <hasHelp>false</hasHelp>
          <showEditDefault>false</showEditDefault>
          <showDetails>false</showDetails>
          <renderer class="oracle.portal.provider.v2.render.RenderManager">
             <renderContainer>true</renderContainer>
             <renderCustomize>true</renderCustomize>
             <autoRedirect>true</autoRedirect>
             <contentType>text/html</contentType>
             <showPage class="oracle.portal.provider.v2.render.http.StrutsRenderer">
             <defaultAction>/jsp/zone_maintenance.jsp</defaultAction>
             </showPage>
          </renderer>
       </portlet>
    </provider>
    3. Action Mapping in struts-cofig.xml:
      <action-mappings>
        <action path="/ZoneMaintenance"
                type="my.com.irms.action.ZoneAction"
                name="zoneForms"
                scope="request"
                parameter="action"
                input="/jsp/zone_maintenance.jsp">
          <forward name="success" path="/jsp/zone_maintenance.jsp"/>
        </action>
      </action-mappings>
    4.jsp:
    <pdk-html:form action="/ZoneMaintenance.do">
    -div id="action"-<pdk-html:hidden name="zoneForms" property="action"/>-/div-
    <logic:notEmpty name="zoneForms" property="zoneForms">
    <table border="1">
    <thead>
                <tr>
                    <th><bean:message key="zone.zone"/></th>
                    <th><bean:message key="zone.disc"/></th>
               </tr>
    </thead>
    <tbody>
    <logic:iterate id="zone" name="zoneForms" property="zoneForms" indexId="i">
                <tr id="tr${i}">   
                    <td>
                      <pdk-html:hidden name="zoneForms"
                                      property="zoneForms[${i}].rowStatus" value=""/>
                      <pdk-html:hidden name="zoneForms" property="zoneForms[${i}].id"/>
                      <input type="checkbox" onclick="update()">
                    </td>
                    <td><pdk-html:text name="zoneForms"
                                           property="zoneForms[${i}].zone" size="10"       
                                           onchange="rowDataChanged('tb1',${i})"/></td>
                    <td><pdk-html:text name="zoneForms"
                                           property="zoneForms[${i}].disc" size="30" 
                                           onchange="rowDataChanged('tb1',${i})"/></td>
                </tr>
    </logic:iterate>
    </tbody>
    </table>
    <input type="button" value="Submit" onclick="submitForm('save')"/>
    </logic:notEmpty>
    <input type="button" value="Display" onclick="submitForm('display')"/>
    </pdk-html:form>
    5.javascript for submitForm():
      function submitForm(param)
            document.getElementById("action")
           .getElementsByTagName("input")[0].value = param;
            document.forms[0].submit();
    6.web.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app>
      <description>Empty web.xml file for Web Application</description>
      <servlet>
        <servlet-name>action</servlet-name>
        <servlet-class>
              org.apache.struts.action.ActionServlet
        </servlet-class>
        <init-param>
          <param-name>config</param-name>
          <param-value>
               /WEB-INF/struts-config.xml
          </param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet>
        <description>Extended Portal
                     SOAP  Server</description>
        <servlet-name>SOAPServlet</servlet-name>
        <servlet-class>
               oracle.webdb.provider.v2.adapter.SOAPServlet
        </servlet-class>
        <init-param>
          <param-name>resourceServletMapping</param-name>
          <param-value>/pdkresource</param-value>
        </init-param>
      </servlet>
      <servlet>
        <description>Image resource server</description>
        <servlet-name>ResourceServlet</servlet-name>
        <servlet-class>
             oracle.webdb.provider.v2.adapter.ResourceServlet
        </servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>action</servlet-name>
        <url-pattern>*.do</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>SOAPServlet</servlet-name>
        <url-pattern>/providers</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>SOAPServlet</servlet-name>
        <url-pattern>/providers/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>ResourceServlet</servlet-name>
        <url-pattern>/pdkresource/*</url-pattern>
      </servlet-mapping>
      <session-config>
        <session-timeout>35</session-timeout>
      </session-config>
      <mime-mapping>
        <extension>html</extension>
        <mime-type>text/html</mime-type>
      </mime-mapping>
      <mime-mapping>
        <extension>txt</extension>
        <mime-type>text/plain</mime-type>
      </mime-mapping>
    </web-app>
    Can anyone help me? thanks.

    It is probably easier to do with with a standard tag than the <html:button> tag, as it means you can nest the
    <input type="button" name="more" value="more" onclick="setID(<bean:write name="bloodbankList" property="id"/>)"/>or maybe like this:
    <bean:define id="bbId" name="bloodbankList" property="id"/>
    <html:button property="More" value="More" style="color: #00007D; text-transform: uppercase; letter-spacing: 2pt; background-color: #6B719C; border: 2 solid #00007D"   onclick="<%= "setID(" + id + ");" %>" />Cheers,
    evnafets

  • How to avoid a timeout for a long-running query

    Hello,
    in my application I insert some rows in a temporary table on submit in a PL/SQL block on the page 1. Then I read these rows from the table on the page 2. Unfortunately the insert takes too long time, because I also have to make some other SELECTs etc in that block. That's why the application hits the Apache timeout for mod_plsql and HTTP error between pages 1 and 2.
    I have found some threads about this topic in this forum. There are some suggestions with meta refresh tag etc. I understand, that I have to implement some kind of processing page between the pages 1 and 2 to show a waiting message etc. But I could not find any ready "cook book" for such implementation.
    Could you please help me?
    Thanks in advance
    Andrej
    P.S. This application don't use AJAX code, so I would prefer a solution without AJAX.

    Hello Chris,
    I am not sure, how to implement this approach. So I would start on the page 1 a job (dbms_scheduler or dbms_job), which would create a temporary table in the background. The application should branch to the page 3 with a message "Please wait...". I have to poll the results of the job and branch to the page 2, when the job is ready and I can select from the created temporary table. So far I like this way very much.
    Could you please give me more details about the page 3 (polling page)? I have the following questions now:
    1. I assume I have to set the meta refresh tag on this page. But in which PL/SQL block can I poll for the running job (on load process?).
    2. How can I branch from this page to another page? If I only use refresh tag, how can I branch to another page only on the special condition (ready flag)?
    Thanks in advance
    Andrej

  • ASM timeout parameters?

    Oracle: 11.2.0.3 non-RAC (Oracle Restart grid home)
    OS: RHEL Server 5.8
    Can timeout parameters be set for an ASM instance or for any downstream database instances dependent on an ASM instance? Our storage and sysadmins ran a test (failing over a controller). The Oracle database instance detected a problem reaching +FLASHREC on the NetApp device (it was trying to access a control file evidently). Approximately one second later the database instance decided to terminate itself. The ASM instance remained up. But subsequent checking with ASMCD showed no ASM Diskgroup available using an LS command. After bouncing the ASM instance all was well--the diskgroups reappeared and we were able to restart our database instance. A second seems a bit unforgiving. Can any timeout-related parameters be set on the ASM or ASM-client instance to provide more wiggle room during a controller failover?
    Some errors we encountered from the database instance alert log. Further below are errors from the ASM instance's alert log
    Wed Mar 14 04:00:55 2012
    Archived Log entry 89 added for thread 1 sequence 142 ID 0xbb0a69f4 dest 1:
    Wed Mar 14 17:51:06 2012
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 120864
    Additional information: -1
    WARNING: Read Failed. group:2 disk:0 AU:59 offset:16384 size:16384
    Wed Mar 14 17:51:06 2012
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>arc2399.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 120864
    Additional information: -1
    WARNING: failed to read mirror side 1 of virtual extent 0 logical extent 0 of file 256 in group [2.2142222202] from disk FLASHREC_0000 allocation unit 59 reason error; if possible, will try another mirror side
    WARNING: Read Failed. group:2 disk:0 AU:59 offset:16384 size:16384
    WARNING: failed to read mirror side 1 of virtual extent 0 logical extent 0 of file 256 in group [2.2142222202] from disk FLASHREC_0000 allocation unit 59 reason error; if possible, will try another mirror side
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>arc2399.trc:
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-27061: waiting for async I/Os failed
    Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 16384
    WARNING: Write Failed. group:2 disk:0 AU:59 offset:49152 size:16384
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-15080: synchronous I/O operation to a disk failed
    WARNING: failed to write mirror side 1 of virtual extent 0 logical extent 0 of file 256 in group 2 on disk 0 allocation unit 59
    Wed Mar 14 17:51:06 2012
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>m00023737.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 120864
    Additional information: -1
    WARNING: Read Failed. group:2 disk:0 AU:59 offset:16384 size:16384
    WARNING: failed to read mirror side 1 of virtual extent 0 logical extent 0 of file 256 in group [2.2142222202] from disk FLASHREC_0000 allocation unit 59 reason error; if possible, will try another mirror side
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>m00023737.trc:
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-00206: error in writing (block 3, # blocks 1) of control file
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    ORA-15081: failed to submit an I/O operation to a disk
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-00221: error on write to control file
    ORA-00206: error in writing (block 3, # blocks 1) of control file
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    ORA-15081: failed to submit an I/O operation to a disk
    CKPT (ospid: 310): terminating the instance due to error 221
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>m00023737.trc:
    ORA-00204: error in reading (block 1, # blocks 1) of control file
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    Wed Mar 14 17:51:07 2012
    License high water mark = 8
    Instance terminated by CKPT, pid = 310
    USER (ospid: 24054): terminating the instance
    Instance terminated by USER, pid = 24054
    Some errors we encountered from the ASM instance alert log
    Mon Mar 12 14:56:18 2012
    NOTE: ASMB process exiting due to lack of ASM file activity for 305 seconds
    Wed Mar 14 17:51:06 2012
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_gmon_27396.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 4088
    Additional information: -1
    WARNING: Write Failed. group:1 disk:0 AU:1 offset:1044480 size:4096
    WARNING: Hbeat write to PST disk 0.3916384140 (DATAFILE_0000) in group 1 failed.
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_gmon_27396.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 4088
    Additional information: -1
    WARNING: Write Failed. group:2 disk:0 AU:1 offset:1044480 size:4096
    WARNING: Hbeat write to PST disk 0.3916384141 (FLASHREC_0000) in group 2 failed.
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_gmon_27396.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 4088
    Additional information: -1
    WARNING: Write Failed. group:3 disk:0 AU:1 offset:1044480 size:4096
    WARNING: Hbeat write to PST disk 0.3916384142 (TEMPFILE_0000) in group 3 failed.
    Wed Mar 14 17:51:06 2012
    NOTE: process b000+asm (23739) initiating offline of disk 0.3916384140 (DATAFILE_0000) with mask 0x7e in group 1
    WARNING: Disk 0 (DATAFILE_0000) in group 1 in mode 0x7f is now being taken offline on ASM inst 1
    NOTE: initiating PST update: grp = 1, dsk = 0/0xe96f478c, mask = 0x6a, op = clear
    Wed Mar 14 17:51:06 2012
    NOTE: process b001+asm (23753) initiating offline of disk 0.3916384141 (FLASHREC_0000) with mask 0x7e in group 2
    WARNING: Disk 0 (FLASHREC_0000) in group 2 in mode 0x7f is now being taken offline on ASM inst 1
    NOTE: initiating PST update: grp = 2, dsk = 0/0xe96f478d, mask = 0x6a, op = clear
    GMON updating disk modes for group 1 at 13 for pid 20, osid 23739
    ERROR: no read quorum in group: required 1, found 0 disks
    Wed Mar 14 17:51:06 2012
    NOTE: process b002+asm (23791) initiating offline of disk 0.3916384142 (TEMPFILE_0000) with mask 0x7e in group 3
    WARNING: Disk 0 (TEMPFILE_0000) in group 3 in mode 0x7f is now being taken offline on ASM inst 1
    NOTE: initiating PST update: grp = 3, dsk = 0/0xe96f478e, mask = 0x6a, op = clear
    GMON updating disk modes for group 2 at 14 for pid 23, osid 23753
    ERROR: no read quorum in group: required 1, found 0 disks
    Wed Mar 14 17:51:06 2012
    NOTE: cache dismounting (not clean) group 1/0x7FAFB779 (DATAFILE)
    NOTE: messaging CKPT to quiesce pins Unix process pid: 23826, image: oracle@dot-oraprd04 (B003)
    Wed Mar 14 17:51:06 2012
    NOTE: halting all I/Os to diskgroup 1 (DATAFILE)
    Wed Mar 14 17:51:06 2012
    NOTE: LGWR doing non-clean dismount of group 1 (DATAFILE)
    NOTE: LGWR sync ABA=6.6196 last written ABA 6.6196
    NOTE: cache dismounted group 1/0x7FAFB779 (DATAFILE)
    SQL> alter diskgroup DATAFILE dismount force /* ASM SERVER */
    Wed Mar 14 17:51:06 2012
    NOTE: cache dismounting (not clean) group 2/0x7FAFB77A (FLASHREC)
    NOTE: messaging CKPT to quiesce pins Unix process pid: 23836, image: oracle@dot-oraprd04 (B004)
    NOTE: halting all I/Os to diskgroup 2 (FLASHREC)
    NOTE: LGWR doing non-clean dismount of group 2 (FLASHREC)
    NOTE: LGWR sync ABA=5.1120 last written ABA 5.1120
    GMON updating disk modes for group 3 at 15 for pid 25, osid 23791
    ERROR: no read quorum in group: required 1, found 0 disks
    NOTE: cache dismounted group 2/0x7FAFB77A (FLASHREC)
    SQL> alter diskgroup FLASHREC dismount force /* ASM SERVER */
    Wed Mar 14 17:51:06 2012
    NOTE: cache dismounting (not clean) group 3/0x7FAFB77B (TEMPFILE)
    NOTE: messaging CKPT to quiesce pins Unix process pid: 23838, image: oracle@dot-oraprd04 (B005)
    NOTE: halting all I/Os to diskgroup 3 (TEMPFILE)
    NOTE: LGWR doing non-clean dismount of group 3 (TEMPFILE)
    NOTE: LGWR sync ABA=6.11 last written ABA 6.11
    NOTE: cache dismounted group 3/0x7FAFB77B (TEMPFILE)
    SQL> alter diskgroup TEMPFILE dismount force /* ASM SERVER */
    WARNING: Offline of disk 0 (TEMPFILE_0000) in group 3 and mode 0x7f failed on ASM inst 1
    WARNING: Offline of disk 0 (DATAFILE_0000) in group 1 and mode 0x7f failed on ASM inst 1
    WARNING: Offline of disk 0 (FLASHREC_0000) in group 2 and mode 0x7f failed on ASM inst 1
    Wed Mar 14 17:51:07 2012
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    Wed Mar 14 17:51:07 2012
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    Wed Mar 14 17:51:07 2012
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ASM Health Checker found 1 new failures
    ASM Health Checker found 1 new failures
    ASM Health Checker found 1 new failures
    Wed Mar 14 17:51:07 2012
    NOTE: ASM client <instance name here>:<instance name here> disconnected unexpectedly.
    NOTE: check client alert log.
    NOTE: Trace records dumped in trace file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_ora_322.trc
    Wed Mar 14 17:51:07 2012
    NOTE: cache deleting context for group FLASHREC 2/0x7fafb77a
    NOTE: cache deleting context for group TEMPFILE 3/0x7fafb77b
    NOTE: cache deleting context for group DATAFILE 1/0x7fafb779
    GMON dismounting group 2 at 16 for pid 27, osid 23836
    GMON dismounting group 1 at 17 for pid 26, osid 23826
    NOTE: Disk in mode 0x8 marked for de-assignment
    GMON dismounting group 3 at 18 for pid 28, osid 23838
    NOTE: Disk in mode 0x8 marked for de-assignment
    NOTE: Disk in mode 0x8 marked for de-assignment
    SUCCESS: diskgroup FLASHREC was dismounted
    SUCCESS: alter diskgroup FLASHREC dismount force /* ASM SERVER */
    SUCCESS: diskgroup DATAFILE was dismounted
    SUCCESS: alter diskgroup DATAFILE dismount force /* ASM SERVER */
    SUCCESS: diskgroup TEMPFILE was dismounted
    SUCCESS: alter diskgroup TEMPFILE dismount force /* ASM SERVER */
    ERROR: PST-initiated MANDATORY DISMOUNT of group TEMPFILE
    ERROR: PST-initiated MANDATORY DISMOUNT of group FLASHREC
    ERROR: PST-initiated MANDATORY DISMOUNT of group DATAFILE
    Wed Mar 14 17:51:07 2012
    NOTE: diskgroup resource ora.FLASHREC.dg is offline
    NOTE: diskgroup resource ora.DATAFILE.dg is offline
    NOTE: diskgroup resource ora.TEMPFILE.dg is offline
    Wed Mar 14 17:51:08 2012
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_ora_24250.trc:
    ORA-17503: ksfdopn:2 Failed to open file +DATAFILE/<instance name here>/spfile<instance name here>.ora
    ORA-15001: diskgroup "DATAFILE" does not exist or is not mounted
    Wed Mar 14 17:51:08 2012
    SQL> ALTER DISKGROUP FLASHREC MOUNT /* asm agent *//* {0:5:72} */
    NOTE: cache registered group FLASHREC number=1 incarn=0xfa7fb7ea
    SQL> ALTER DISKGROUP FLASHREC MOUNT /* asm agent *//* {0:5:72} */
    NOTE: cache registered group FLASHREC number=1 incarn=0xfa7fb7ea
    NOTE: cache began mount (first) of group FLASHREC number=1 incarn=0xfa7fb7ea
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_ora_27411.trc:
    ORA-27061: waiting for async I/Os failed
    Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 4096
    WARNING: Read Failed. group:0 disk:1 AU:0 offset:0 size:4096
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_ora_27411.trc:
    ORA-27061: waiting for async I/Os failed
    Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 4096
    WARNING: Read Failed. group:0 disk:0 AU:0 offset:0 size:4096
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_ora_27411.trc:
    ORA-27061: waiting for async I/Os failed
    Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 4096
    WARNING: Read Failed. group:0 disk:2 AU:0 offset:0 size:4096
    ERROR: no read quorum in group: required 2, found 0 disks
    NOTE: cache dismounting (clean) group 1/0xFA7FB7EA (FLASHREC)
    NOTE: messaging CKPT to quiesce pins Unix process pid: 27411, image: oracle@dot-oraprd04 (TNS V1-V3)
    NOTE: dbwr not being msg'd to dismount
    NOTE: lgwr not being msg'd to dismount
    NOTE: cache dismounted group 1/0xFA7FB7EA (FLASHREC)
    NOTE: cache ending mount (fail) of group FLASHREC number=1 incarn=0xfa7fb7ea
    NOTE: cache deleting context for group FLASHREC 1/0xfa7fb7ea
    Wed Mar 14 17:51:08 2012
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    GMON dismounting group 1 at 20 for pid 18, osid 27411
    ERROR: diskgroup FLASHREC was not mounted
    ORA-15032: not all alterations performed
    ORA-15017: diskgroup "FLASHREC" cannot be mounted
    ORA-15063: ASM discovered an insufficient number of disks for diskgroup "FLASHREC"
    ORA-15080: synchronous I/O operation to a disk failed
    ORA-15080: synchronous I/O operation to a disk failed
    ORA-15080: synchronous I/O operation to a disk failed
    ERROR: ALTER DISKGROUP FLASHREC MOUNT /* asm agent *//* {0:5:72} */
    ASM Health Checker found 1 new failures

    Thanks Dan. The server had been built recently but not yet released. Testing was uncoordinated but no permanent harm was done. Great group of people and NetApp is new to them. Glad they are testing things like controller failover. But it sounds like ASM may be a victim and not the culprit. If ASM remains suspect during continued failover testing I'll consider opening an SR like you suggested.

  • "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

  • Canvas Output to Broadcast via mini-DVI to Composite Video?

    Hello, I would like to send the output of my NTSC Canvas to my NTSC broadcast monitor via it's Composite input. I run FCP 6.0.3 on OS 10.5.3 and I was hoping I could make this connection via Apple's mini-DVI to Composite adapter. I seem to be all set

  • Burning a video from Final Cut Pro using iDVD

    When I export and save my video from Final Cut Pro to a folder (export->Using Quick Time Conversion). When I do that there are several different videos that are saved in my folder (ie-Kelly Michelle; Kelly Michelle-av1; Kelly Michelle-av2; Kelly Mich

  • IMac and Macbook can't see each other via Airp

    Except sometimes. Using Leopard on both new machines, I can share Internet connections and printers fine. The problem is in trying to mount volumes or share files. I create a network on the iMac, connect to it on the Macbook, and use the appropriate

  • No Personal Technical Support from Apple for iTunes on a new 64bit systems.

    HP Pavilion DV 9000 64 Bit   Windows Vista   Brand New HP Pavilion DV 9000 64 Bit   Windows Vista   Brand New When I attempt to import the well organized Music folder located on my from C drive only 6 out 10 gigs are copied. Even worse, many of the i

  • Delivered Quantity in Scheduling agreement ?

    Hi, I have to read out the delivered quantities (Transaction VA33) of the schedule lines which are under the position. I already have the data from the table VBEP, but I don't have the delivered quantities (VSMNG) in this table. How can I read this i