Jnlp interpreted by the client or the webserver ?

Hello there,
I just want to clear this up - Is the .jnlp file sent to the client (where web start will inspect it) or by the webserver ?
So, when the jnlp file is made to point to a particular applet etc., will the webserver look at the jnlp and forward the applet (based on the location tag), or will the client be passed the jnlp (where it will inspect the location) and load the applet.
I would like web start to pick up a jar stored locally on the client, but no sure whether this is possible using a "localhost" location.
Thanks,
Michael Dodsworth.

The jnlp is read by the client. You can load a jnlp off a filesystem, the server doesn't need to be involved unless you want it to automatically the hostname.

Similar Messages

  • "evdre encountered a problem retrieving data from the webserver"

    Hi
    We are using a big report which takes very long time to expand and sometimes we get the error message "evdre encountered a problem retrieving data from the webserver" when expanding the report, but not very often for most of our users. But we have one user who gets this error message almost every second time he expands the report. This user have a computer with same capacity as the rest of us, can there be some setting on the computer or in the client installtion the cause this problem?
    We are using BPC 5.1 SP 5
    /Fredrik

    Hi,
    This error occurs usually if we have huge data in combination of our dimensions.
    Even, if the selection of your memberset is not apt to the combination of the data present in the back end, you may encounter a data retrival error.
    regards
    sashank

  • Interpretation of the use of threads with Sessions in the JMS Specification

    Hello,
    I’ve been interacting with two JMS Providers which do a different interpretation of the JMS Specification with the use of different threads for accessing to a session and session’s related objects.
    The question is:
    When a client is consuming messages asynchronously, is it possible to access session’s related objects from a thread different to the one dedicated to the asynchronous consumption, on (thread of control)?
    -     Never?
    -     Yes, but the client should provide explicit synchronization.?
    Our execution scenario is:
    1.- Messages are consumed asynchronously from a dedicated thread.
    2.- From other thread, messages consumed are acknowledged.
    In the JMS specification there is, at least, two parts where this issue is treated:
    1.- The first one (4.4.1 - page 60):
    +“There are no restrictions on the number of threads that can use a Session object or those it creates. The restriction is that the resources of a Session should not be used concurrently by multiple threads. It is up to the user to insure that this concurrency restriction is met. The simplest way to do this is to use one thread. In the case of asynchronous delivery, use one thread for setup in stopped mode and then start asynchronous delivery. In more complex cases the user must provide explicit synchronization.”+
    This extract, makes me think that it is possible the access from different threads, but If I do that, I should provide explicit synchronization.
    2.- The second one (4.4.6 – page 62,63)
    +"Once a connection has been started, any session with a registered message listener(s) is dedicated to the thread of control that delivers messages to it. It is erroneous for client code to use this session or any of its constituent objects from another thread of control. The only exception to this is the use of the session or connection close method"?+
    This extract, could be interpreted as that the concurrent access is never allowed in the described situation.

    I think the key words are in 4.4.6 (and also the javadoc for Session): "Once a connection has been started, any session with a registered message listener(s) is dedicated to the thread of control that delivers messages to it".
    My interpretation of this is that you when you register a message listener and call connection.start(), the thread which delivers messages to the listener should be thought of as "using the resources of the session" (as mentioned in 4.4.1) continuously until the connection is stopped (or until the session or connection is closed). it doesn't matter whether the session is executing onMessage() or not.
    Given this, both 4.4.1 and 4.4.6 say the same thing: that once you have registered and started a message listener, the only thing you can do to the session from another thread is to close it.
    I agree the spec could be clearer. In particular the words "In more complex cases the user must provide explicit synchronization" in 4.4.6 should be clarified to state what this actually means rather than give a hint.
    Please note that work has just started on updating the JMS specification, so now is a great time to report areas of the JMS spec which would benefit from clarification. If you'd like this to be considered for clarification, please report it in the official JSR 343 issue tracker at http://jms-spec.java.net
    Nigel

  • Does JNLP Sync up the software from the code base only at the startup?

    Does JNLP Sync up the software from the code base only at the startup?
    There appears a Source sync every time i startup the jnlp app from shortcut.
    The users of JNLP application may enable the Internet mid of the application session and fail to get the updates.
    If this case repeats for a period of time, there is a good chance of the app user being denied the code update.
    Is this case holds true. Does JNLP syncs with the code base only at the startup.
    Please explain..
    Thanks In Advance

    Are you using versions (only 'Easy solution 2' works without)?*
    No I am not using versions
    Are you thinking of a background update or an on-demand update?*
    background
    Have you got all-permissions?
    yes
    Have you tried writing a small DownloadServiceListener and calling*
    DownloadService.loadResource(myURLtojnlp, null, myDownloadServiceListener)*
    Does anything happen?*
    No. But, no problems trying it.
    Easy solution 1*
    If using versions and if you want an on-demand update you can launch and wait*
    Runtime.getRuntime.exec("javaws -wait myURLtojnlp");*
    and then you exit (need all-permissions to call exec, can try showDocument() otherwise).*
    You should just have some way to know if the jnlp has changed (you could open an URLConnection and see if LastModified is after application start time).*
    I am not using versions.
    Easy solution 2:*
    If you're just afraid of losing update, you can call BasicService.isOffline at application start, if true you set a timer that checks every 5 minutes, if you go online you call*
    Runtime.getRuntime.exec("javaws -import myURLtojnlp");*
    and you'll have resources updated, so they'll be good for next start (need all-permissions to call exec).*
    You can call it with -wait and ask the user if he wants to restart the application*
    Harder solution (here comes the bunch of code with DownloadService):*
    you open an url connection to codebase, retrieve jnlp, parse it, for each resource you see if it's cached, if not:*
    Solution 1: you tell the user you found updates and ask him to restart (or automatically restart after he pressed ok, with exec or showDocument).*
    Solution 2: you download the resource (so that you'll have it even if user doesn't restart the app).You'd better do this in a separate Thread or have an interactive DowloadServiceListener cause service waits for download to end.*
    I ll try the timer execution. Have to see weather web start puts up a downloading progress window on top of the application. I belive the DownloadService listener will be silent. I ll implement it and get back to you.
    Thanks for your kind guidence.
    I think your scenario is very difficult to happen, but I guess you must have your good reasons to ask.*
    This scenario happens to my users as they switch on the client when the start their machine and runs for the whole morning. They switch on the internet for other purposes and shuts it down in an hour. Minimal chance of connecting the internet before the startup.
    I get update towards the server through a similar timer based mechanism. I ll implement the code updates in the same mechanism.
    Thanks.

  • The latest changes to the function to "Upload to FTP host" has rendered this useless - no point using a program like Muse if I can not easily and automatically upload the work to the webserver!

    The latest changes to the function to "Upload to FTP Host" has rendered this useless - no point using a program like Muse if I can not easily and automatically upload the work to the webserver!  I use BlueHost webhosting that has a primary domain and I have several domains with that account (as sub-domains or folders on this server) - with past versions of Muse when uploading pages it simply opened an alert window to tell me (what I already know) that the website I was uploading does not point to the primary domain BUT NOW Muse tries to create a new separate folder in the root directory of the primary domain - completely ignoring the directory path I am giving it - useless!  Why make these senseless changes to the program - and so often - very frustrating it is like amateur ware!.

    Hi Stephen,
    There are some issues with the upload to ftp via Muse, which the engineering team is aware of and those will be fixed in a future build of Muse. At this point the work around would be to export the html from Muse and then upload via some third party ftp client like filezilla.
    I will recommend that you keep an eye on our release notes page to get more updates on it - Release notes | Adobe Muse CC
    - Abhishek Maurya

  • Mac os x server admin site set up... anybody got any experience with this... I am unable to access a site that I placed in the webserver root...

    I placed a folder in the suggested Document folder in the WebServer. Set up everything as suggested, left the port number as should be...
    located the webfolder... still cannot access the site...
    Any help is much appreciated... if need be I will supply further info re the matter...
    Thanks to all
    Night_Hawk

    ..Step by Step to fix your Mac
    Erase, formatting, OS X installs on Mac's
    http://www.everymac.com/ultimate-mac-lookup/
    http://mactracker.ca/
    https://support.apple.com/kb/HT1237
    https://support.apple.com/kb/HT2213

  • How to install the webgate on the webserver

    Hi all,
    I hve the OAM instillation in a machine1 and the application in the machine2
    In machine2 i need to install oly the webgate on the webserver?
    How to install oly the webgate on the application webserver?
    Is there any doctuments to do it?
    Hve any body worked on this?
    Plz help me.
    Thanks in advance...
    Edited by: user10648177 on Dec 30, 2008 10:39 PM

    I thk u r not able to understand my ques:
    I wil say u clearly
    1.I have done my OAM instillation in machine1
    2.In machine2 i have my marketing application running on tomcat.
    I need to install the webgate on tomcat in(machine2) which my marketing is running and i have to use my Machine1 access server for this.
    I know by creating access server instance for webgate in machine2 we can access the webgate,but how to install the webgate on my marketing application in machine2.
    Thanks in advance.

  • JDBC socketRead freezes the webserver

    Hi,
    today a webserver freezes, with more than 42 blocked threads, to inspect the problem i get a thread dump, from running instance, and the problematic thread is:
    "http-80-19" daemon prio=10 tid=0x0000002af8bbe000 nid=0x72fc runnable [0x000000004f45f000..0x000000004f460b30]
       java.lang.Thread.State: RUNNABLE
            at java.net.SocketInputStream.socketRead0(Native Method)
            at java.net.SocketInputStream.read(SocketInputStream.java:129)
            at com.sap.dbtech.rte.comm.BasicSocketComm.receiveConnect(BasicSocketComm.java:707)
            at com.sap.dbtech.rte.comm.BasicSocketComm.dbConnectExchange(BasicSocketComm.java:789)
            at com.sap.dbtech.rte.comm.BasicSocketComm.connectDB(BasicSocketComm.java:233)
            at com.sap.dbtech.rte.comm.SocketComm$1.open(SocketComm.java:38)
            at com.sap.dbtech.jdbc.DriverSapDB.openConnection(DriverSapDB.java:966)
            at com.sap.dbtech.jdbc.DriverSapDB.openByURL(DriverSapDB.java:891)
            at com.sap.dbtech.jdbc.DriverSapDB.connect(DriverSapDB.java:208)
            - locked <0x0000002aa4978bc0> (a com.sap.dbtech.jdbc.DriverSapDB)
            at org.apache.tomcat.dbcp.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38)
            at org.apache.tomcat.dbcp.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:294)
            - locked <0x0000002aa515d318> (a org.apache.tomcat.dbcp.dbcp.PoolableConnectionFactory)
            at org.apache.tomcat.dbcp.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:974)
            at org.apache.tomcat.dbcp.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:96)
            at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)
    analysis of the thread dump, show us that is a problem when open new connections, and freezes on java.net.SocketInputStream.socketRead0, i checked the system and have space for more sessions, then its not a case of TASK LIMIT, follow is a sample of one thread waiting the above.
    "http-80-18" daemon prio=10 tid=0x0000002af7f74000 nid=0x72fb waiting for monitor entry [0x000000004ef5e000..0x000000004ef5fdb0]
       java.lang.Thread.State: BLOCKED (on object monitor)
            at org.apache.tomcat.dbcp.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:294)
            - waiting to lock <0x0000002aa515d318> (a org.apache.tomcat.dbcp.dbcp.PoolableConnectionFactory)
            at org.apache.tomcat.dbcp.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:974)
            at org.apache.tomcat.dbcp.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:96)
            at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)
    after 2 minutes, the problematic thread reach the end, and the webserver unfreeze, and come back processing requests.
    The MaxDB and JDBC version is 7.6.03.07
    note this problem dont occurs every time, or every day, just occurs in a random times, once per week, maybe have a reason on database side, that i dont know, any idea, how to check and inspect this type of problem?
    Best regards
    Clóvis

    Again, but in another place, when pool try to check if connection is Closed, this one, blocked 35 other threads, and freezes the webserver for 2 minutes.
    "Timer-1" daemon prio=10 tid=0x0000002af6ddf000 nid=0x3118 runnable [0x0000000047c48000..0x0000000047c48d30]
       java.lang.Thread.State: RUNNABLE
            at java.net.SocketInputStream.socketRead0(Native Method)
            at java.net.SocketInputStream.read(SocketInputStream.java:129)
            at com.sap.dbtech.rte.comm.BasicSocketComm.receiveData(BasicSocketComm.java:577)
            at com.sap.dbtech.rte.comm.BasicSocketComm.receive(BasicSocketComm.java:666)
            at com.sap.dbtech.rte.comm.JdbcCommunication.execute(JdbcCommunication.java:41)
            at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:536)
            - locked <0x0000002aad5d66b0> (a com.sap.dbtech.jdbc.ConnectionSapDB)
            at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:461)
            at com.sap.dbtech.jdbc.ConnectionSapDB.isClosed(ConnectionSapDB.java:746)
            at com.sap.dbtech.jdbc.trace.Connection.isClosed(Connection.java:400)
            at org.apache.tomcat.dbcp.dbcp.DelegatingConnection.isClosed(DelegatingConnection.java:346)
            at org.apache.tomcat.dbcp.dbcp.PoolableConnectionFactory.validateConnection(PoolableConnectionFactory.java:324)
            at org.apache.tomcat.dbcp.dbcp.PoolableConnectionFactory.validateObject(PoolableConnectionFactory.java:312)
            at org.apache.tomcat.dbcp.pool.impl.GenericObjectPool.evict(GenericObjectPool.java:1217)
            - locked <0x0000002aa4a60cb0> (a org.apache.tomcat.dbcp.pool.impl.GenericObjectPool)
            at org.apache.tomcat.dbcp.pool.impl.GenericObjectPool$Evictor.run(GenericObjectPool.java:1341)
            at java.util.TimerThread.mainLoop(Timer.java:512)
            at java.util.TimerThread.run(Timer.java:462)
       Locked ownable synchronizers:
            - locked <0x0000002aa4a60cb0> (a org.apache.tomcat.dbcp.pool.impl.GenericObjectPool)
            at org.apache.tomcat.dbcp.pool.impl.GenericObjectPool$Evictor.run(GenericObjectPool.java:1341)
            at java.util.TimerThread.mainLoop(Timer.java:512)
            at java.util.TimerThread.run(Timer.java:462)
       Locked ownable synchronizers:
            - None

  • Which is the best way for iOS to communicate with the webserver SOAP or JSON

    Which one is the best for iOS to interact with the webserver.. to exchange messages like
    1. Normal NSString
    2. images
    3. audio
    4. videos
    like any other stream of bits..
    Thank you

    There is a reason why JSON took over AJAX world. I have been too busy to research this myself, but you may be interested in WebSockets.

  • Getting the webserver IP

    Does anyone know if there is a way to get the webserver's IP address in java. Kind of like a System.getProperty()?

    Here is a method that I wrote for my FileIO demo applet, it can be used to find the local host name and IP address, the applet server's host name and IP address, as well as the host name of any webserver given an IP address or vice versa. The parameter for the method is of one of the following
    forms:
    1) local name
    2) local ip
    3) remote name
    4) remote ip
    5) 64.58.76.227
    6) http://www.yahoo.com
       public String aok_Host(String sFlag) {
          sFlag=sFlag.toLowerCase();
          int getName=sFlag.indexOf("name");
          String HName="";
          String HAddr="";
          Socket socket;
          InetAddress addr;
          try {
             if (sFlag.toLowerCase().indexOf("local")>=0) {  // find local host name and address
                socket=new Socket("java.sun.com",80);
                addr=socket.getLocalAddress();
                HName=addr.getHostName();
                HAddr=addr.getHostAddress();
             } if (sFlag.toLowerCase().indexOf("remote")>=0) {  // find applet server's host name and address
                HName=getCodeBase().getHost();
                HAddr=InetAddress.getByName(HName).toString();
                int i=HAddr.indexOf("/");
                if (i>0) {
                   HName=HAddr.substring(0,i);
                   HAddr=HAddr.substring(i+1);
             } else {    // return host name give IP address or vice versa
                if (sFlag.startsWith("http")) {
                   int i=sFlag.indexOf("/")+2;
                   socket=new Socket(sFlag.substring(i),80);
                   addr=socket.getInetAddress();
                   return addr.getHostAddress();
                socket=new Socket(sFlag,80);
                addr=socket.getInetAddress();
                return addr.getHostName();
          } catch (Throwable e) {}
          if (getName>=0) return HName;
          return HAddr;
       }V.V.

  • Requirements of the webserver

    Hi all,
    I have created the web application using the SAP.Net Connector to get the data from sap
    I want to install my application in the common web server.
    I want to know the requirements of the webserevr.
    Now the webserver contains only the .netframework
    What are the things i have to instal to run my application so that SAP part should wokr
    Is the webserver needs the following
    1. SAP.Net connector
    2. SAP Front End
    Regards,
    S.Shankar

    Hi,
    Thank you for your reply
    My server is haveing only C:\WINNT\System32.
    Is it ok to copy the librfc32.dll to this folder.
    Regards,
    S.Shankar

  • Business Connector: present client certificate to webserver

    Hello,
    we are running a ssl-enabled BC 4.7 core fix 8. We want to establish a connection
    from the BC to an external webserver (over https, Transport: XML). The external server requires authentication using client certificates (BC has to present it's certificate to the server).
    How can I configure the BC to present a client cert to the webserver?
    Currently I can find the following in the BC error log:
    005AA1  B2BCORE.0009.0013 ChainVerifier: subjectDN ...
    005AA2  B2BCORE.0009.0014 ChainVerifier: issuerDN ...
    005AA3  B2BSERV.0048.9999 Peer sent alert: Alert Fatal: handshake failure
    005AA4  B2BSERV.0048.9999 Peer sent alert: Alert Fatal: handshake failure
    005AA5  B2BPCKG.0073.0039 Runtime: error in RR Flow wm.PartnerMgr.flows.605298.0000800037:ORDERS: com.wm.app.b2b.server.ServiceException: iaik.security.ssl.SSLException: Peer sent alert: Alert Fatal: handshake failure
    005AA6  2BSERV.0048.9999 Peer sent alert: Alert Fatal: handshake failure
    Seems like the SSL handshake fails because the BC doesn't present a client cert...
    Thanks and best regards,
    Jens
    Edited by: Jens Wannenmacher on May 14, 2008 11:42 AM

    >Hello,
    >did you check the logs on the server side? Are you sure the calls are arriving ? Can you switch for a first >test to HTTP to check if IP/Port are correct and nothing is blocked by a firewall ?
    >The configuration you described in BC looks correct.
    >Another idea is to increase the log level on BC to 8 and then retry. Then check the server log for new >interesting entries, for example of faclitities 0006 and 0009 (and maybe 0012).
    >CSY
    Hello,
    yes the target is reachable correctly via SSL and asks for a client cert.
    I started the BC with the following command line but I only get the error messages above in sapbc.log:
    server.bat -log sapbc.log -debug 10
    best regards,
    Jens

  • How to enable Client Cert Required, only for certain URL's in the webserver

    WE are using netegrity siteminder for authentication and their plugin is executed as AuthTrans function. If I enable clientauth in server.xml ( which is basically turning on the client cert required for entire site), everything works fine. But If I want to turn that on only for certain URL's how do I do that.
    I tried turning global clientauth off in server.xml and tried using PathCehck fn"get-client-cert" in obj.conf for the URL's that need client cert, but the problem is AuthTrans is getting executed first and my netegrity plugin is throwing an error saying it cann't find the cert.
    What are diffrent options to enable cert required only for certian URL's.
    Thanks

    What is the condition you want to match?
    You can use get-client-cert in If tags in Web Server 7.0 :
    For e.g. If the condition is matched, This gets a cert, requesting it if it is not already present and failing the request if it can't obtain an acceptable cert only on POST requests.
    <If $url ~="*abc*>
    PathCheck fn="get-client-cert" method="POST" dorequest="1" require="1"
    </If>
    or
    <Object ppath="*abc*">
    PathCheck fn="get-client-cert" dorequest="1" require="1"
    <Object>
    for more details :
    http://docs.sun.com/app/docs/doc/819-2630/6n4thbiek?a=view#indexterm-380

  • Is it possible to change the "/messagebroker/amf/", from the view of the webserver?

    I have BlazeDS integrated into a J2EE application.  All method innvocations from the Flash client flow through an Apache webserver, until it reaches its destination of the J2EE application.  The Flash client exercises several distinct methods through this BlazeDS service.
    My question is, from an Apache webserver perspective, is there a way for Apache to distinguish one method from another?  Right now, Apache views everything as a POST to the URI of "../messagebroker/amf".  The options seem to be:
    1)  Dig into the POST to find the method signature.  This seems scary given the POST has binary content.
    2)  Try to change the URI of "../messagebroker/amf" for each method.  I have no idea how to go about this.
    3)  Maybe include a method signature in the http header?  Again, not sure how to do such a thing in Flash/Flex.
    If anyone has addressed this requirement in the past, I'd be very greatful for some advice.

    Hi. I haven't heard of anyone trying to do this in the past. I'm just curious, why does the Apache server need to know what method is being called?
    I would think something like 2) you could do mostly on the Apache side. Just brainstorming here but in your client application(s) you could manually create a ChannelSet with a channel that had the method name in the uri, so for example "../messagebroker/amf/method1" and "../messagebroker/amf/method2". The apache server could then do whatever it needed to do for the individual methods and redirect all requests to "../messagebroker/amf".
    Here is a link to the BlazeDS documentation that deals with channels and endpoints. That has some information on manually creating a ChannelSet and channels on the client in case you decide to go that route.    
    http://livedocs.adobe.com/blazeds/1/blazeds_devguide/help.html?content=lcconfig_2.html
    Hope that helps.
    -Alex

  • Requesting pages from the index page cause the the webserver to hang

    Whenever I request pages from the main osx server page(ie my page or wikis) it cause the web server to hang for a minute or so before giving me the page. It also stops the server from sending pages to anyone else.
    If I go directly to any of the wikis by typing the address into the navbar I get no problems.
    here is the info from the log file.
    oxy_http.c(1920): proxy: HTTP: serving URL http://127.0.0.1:8086/
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(1991): proxy: HTTP: has acquired connection for (127.0.0.1)
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(2047): proxy: connecting http://127.0.0.1:8086/ to 127.0.0.1:8086
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(2145): proxy: connected / to 127.0.0.1:8086
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(2300): proxy: HTTP: fam 2 socket created to connect to 127.0.0.1
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(2406): proxy: HTTP: connection complete to 127.0.0.1:8086 (127.0.0.1)
    [Wed Sep 16 15:58:59 2009] [debug] modproxyhttp.c(1703): proxy: start body send
    [Wed Sep 16 15:58:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:58:59 2009] [debug] modproxyhttp.c(1796): proxy: end body send
    [Wed Sep 16 15:58:59 2009] [debug] proxy_util.c(2009): proxy: HTTP: has released connection for (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(56): proxy: HTTP: canonicalising URL //127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(1489): [client 192.168.0.103] proxy: http: found worker http://127.0.0.1:8086 for http://127.0.0.1:8086/, referer: http://wiki.intraecdpm.org/groups/cwwE/
    [Wed Sep 16 15:59:29 2009] [debug] mod_proxy.c(993): Running scheme http handler (attempt 0)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1920): proxy: HTTP: serving URL http://127.0.0.1:8086/
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(1991): proxy: HTTP: has acquired connection for (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2047): proxy: connecting http://127.0.0.1:8086/ to 127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2145): proxy: connected / to 127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2300): proxy: HTTP: fam 2 socket created to connect to 127.0.0.1
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2406): proxy: HTTP: connection complete to 127.0.0.1:8086 (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1703): proxy: start body send
    [Wed Sep 16 15:59:29 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1796): proxy: end body send
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2009): proxy: HTTP: has released connection for (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(56): proxy: HTTP: canonicalising URL //127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(1489): [client 192.168.0.103] proxy: http: found worker http://127.0.0.1:8086 for http://127.0.0.1:8086/, referer: http://wiki.intraecdpm.org/groups/ictstaff/
    [Wed Sep 16 15:59:29 2009] [debug] mod_proxy.c(993): Running scheme http handler (attempt 0)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1920): proxy: HTTP: serving URL http://127.0.0.1:8086/
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(1991): proxy: HTTP: has acquired connection for (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2047): proxy: connecting http://127.0.0.1:8086/ to 127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2145): proxy: connected / to 127.0.0.1:8086
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2300): proxy: HTTP: fam 2 socket created to connect to 127.0.0.1
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2406): proxy: HTTP: connection complete to 127.0.0.1:8086 (127.0.0.1)
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1703): proxy: start body send
    [Wed Sep 16 15:59:29 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:29 2009] [debug] modproxyhttp.c(1796): proxy: end body send
    [Wed Sep 16 15:59:29 2009] [debug] proxy_util.c(2009): proxy: HTTP: has released connection for (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(56): proxy: HTTP: canonicalising URL //127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(1489): [client 192.168.0.103] proxy: http: found worker http://127.0.0.1:8086 for http://127.0.0.1:8086/, referer: http://wiki.intraecdpm.org/groups/cwwE/
    [Wed Sep 16 15:59:59 2009] [debug] mod_proxy.c(993): Running scheme http handler (attempt 0)
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(1920): proxy: HTTP: serving URL http://127.0.0.1:8086/
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(1991): proxy: HTTP: has acquired connection for (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2047): proxy: connecting http://127.0.0.1:8086/ to 127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2145): proxy: connected / to 127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2300): proxy: HTTP: fam 2 socket created to connect to 127.0.0.1
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2406): proxy: HTTP: connection complete to 127.0.0.1:8086 (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(1703): proxy: start body send
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(1796): proxy: end body send
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2009): proxy: HTTP: has released connection for (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(56): proxy: HTTP: canonicalising URL //127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(1489): [client 192.168.0.103] proxy: http: found worker http://127.0.0.1:8086 for http://127.0.0.1:8086/, referer: http://wiki.intraecdpm.org/groups/ictstaff/
    [Wed Sep 16 15:59:59 2009] [debug] mod_proxy.c(993): Running scheme http handler (attempt 0)
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(1920): proxy: HTTP: serving URL http://127.0.0.1:8086/
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(1991): proxy: HTTP: has acquired connection for (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2047): proxy: connecting http://127.0.0.1:8086/ to 127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2145): proxy: connected / to 127.0.0.1:8086
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2300): proxy: HTTP: fam 2 socket created to connect to 127.0.0.1
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2406): proxy: HTTP: connection complete to 127.0.0.1:8086 (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [error] [client 192.168.0.103] (54)Connection reset by peer: proxy: error reading status line from remote server 127.0.0.1, referer: http://wiki.intraecdpm.org/groups/ictstaff/
    [Wed Sep 16 15:59:59 2009] [debug] modproxyhttp.c(1432): [client 192.168.0.103] proxy: NOT Closing connection to client although reading from backend server 127.0.0.1 failed., referer: http://wiki.intraecdpm.org/groups/ictstaff/
    [Wed Sep 16 15:59:59 2009] [error] [client 192.168.0.103] proxy: Error reading from remote server returned by /RPC2, referer: http://wiki.intraecdpm.org/groups/ictstaff/
    [Wed Sep 16 15:59:59 2009] [debug] proxy_util.c(2009): proxy: HTTP: has released connection for (127.0.0.1)
    [Wed Sep 16 15:59:59 2009] [debug] mod_cache.c(131): Adding CACHE_SAVE filter for /error/HTTPBADGATEWAY.html.var
    [Wed Sep 16 15:59:59 2009] [debug] mod_cache.c(138): Adding CACHEREMOVEURL filter for /error/HTTPBADGATEWAY.html.var
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [debug] mod_cache.c(528): cache: /error/HTTPBADGATEWAY.html.var not cached. Reason: Response status 502
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [debug] mod_headers.c(740): headers: apheaders_outputfilter()
    [Wed Sep 16 15:59:59 2009] [notice] Graceful restart requested, doing restart
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [error] (9)Bad file descriptor: aprpollsetpoll: (listen)
    [Wed Sep 16 15:59:59 2009] [notice] Apache/2.2.11 (Unix) PHP/5.3.0 configured -- resuming normal operations
    [Wed Sep 16 16:00:04 2009] [notice] caught SIGTERM, shutting down
    [Wed Sep 16 16:00:15 2009] [notice] Apache/2.2.11 (Unix) PHP/5.3.0 configured -- resuming normal operations
    As far as I can tell it's refusing a connection from itself but what module is causing it I have no Idea. It's also mention proxy but I'm not running it. Help Please!

    I now believe maybe I'm missing files can someone tell me what the contents of the directory /Library/WebServer/Documents/collaboration-availability/ should be please ?
    I'm let to believe this from these entries.
    [Wed Sep 16 16:52:52 2009] [notice] caught SIGTERM, shutting down
    [Wed Sep 16 16:54:09 2009] [notice] Apache/2.2.11 (Unix) PHP/5.3.0 configured -- resuming normal operations
    [Wed Sep 16 16:54:20 2009] [error] [client 192.168.0.103] File does not exist: /Library/WebServer/Documents/collaboration-availability/webcal/, referer: http://wiki.intraecdpm.org/
    [Wed Sep 16 16:54:20 2009] [error] [client 192.168.0.103] Attempt to serve directory: /Library/WebServer/Documents/collaboration-availability/changepassword/, referer: http://wiki.intraecdpm.org/
    [Wed Sep 16 16:54:20 2009] [error] [client 192.168.0.103] Attempt to serve directory: /Library/WebServer/Documents/collaboration-availability/webmail/, referer: http://wiki.intraecdpm.org/
    [Wed Sep 16 16:54:20 2009] [error] (61)Connection refused: proxy: HTTP: attempt to connect to 127.0.0.1:8171 (*) failed
    [Wed Sep 16 16:54:20 2009] [error] [client 192.168.0.103] Attempt to serve directory: /Library/WebServer/Documents/collaboration-availability/emailrules/, referer: http://wiki.intraecdpm.org/
    [Wed Sep 16 16:55:22 2009] [error] [client 192.168.0.103] Attempt to serve directory: /Library/WebServer/Documents/collaboration-availability/webmail/, referer: http://wiki.intraecdpm.org/groups/
    [Wed Sep 16 16:55:22 2009] [error] [client 192.168.0.103] File does not exist: /Library/WebServer/Documents/collaboration-availability/webcal/, referer: http://wiki.intraecdpm.org/groups/

Maybe you are looking for