Changeset 4115

Show
Ignore:
Timestamp:
10/09/07 16:19:11 (1 year ago)
Author:
sylvain.hellegouarch
Message:

Added the queue server service

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/nuxleus/Scripts/llup-pub.sh

    r4114 r4115  
    4242  echo "Starting the llup publisher server on port $PORT against queue server at $QUEUE_SERVER and monitoring $2" 
    4343  # add -v to the line below to enable logging to the console 
    44    llup-queue-publisher.py -s $QUEUE_SERVER -q $2 -i $PID_FILE -f 50.0 & 
     44   llup-queue-publisher.py -s $QUEUE_SERVER -q $2 -i $PID_FILE -f 5.0 & 
    4545;; 
    4646 
  • trunk/nuxleus/src/nux.build

    r4114 r4115  
    354354        <include name="System.Web.dll"/> 
    355355        <include name="System.Web.Services.dll"/> 
     356        <include name="${dependencies.dir}/Memcached.ClientLibrary.dll"/> 
    356357      </references> 
    357358    </csc> 
     
    457458        <include name="System.Web.dll"/> 
    458459        <include name="System.Web.Services.dll"/> 
     460      </references> 
     461    </csc> 
     462  </target> 
     463  <target name="QueueServerService" depends="init Nuxleus Nuxleus.Service Nuxleus.Vendor Nuxleus.Messaging"> 
     464    <csc target="exe" output="${build.dir}/QueueServerService.exe"> 
     465      <sources> 
     466        <include name="${source.dir}/ServiceApps/QueueServerService/**/*.cs"/> 
     467      </sources> 
     468      <references> 
     469        <include name="${build.dir}/Nuxleus.Service.dll"/> 
     470        <include name="${build.dir}/Nuxleus.Vendor.dll"/> 
     471        <include name="${build.dir}/Nuxleus.Messaging.dll"/> 
     472        <include name="System.dll"/> 
     473        <include name="System.ServiceProcess.dll"/> 
     474        <include name="System.Xml.dll"/> 
     475        <include name="System.Web.dll"/> 
     476        <include name="System.Web.Services.dll"/> 
     477        <include name="${dependencies.dir}/Memcached.ClientLibrary.dll"/> 
    459478      </references> 
    460479    </csc> 
     
    512531    <call target="FileSystemWatcher"/> 
    513532    <call target="ReplicationService"/> 
     533    <call target="QueueServerService"/> 
    514534    <call target="System.Messaging"/> 
    515535  </target>