Hi, It looks like you have a little confusion between JK and JK2.
> <Location "/TruckEnqui/"> > JkUriSet worker ajp13:test2.com:8009 > </Location> Get rid of these in your httpd.conf. The URIs are defined in workers2.properties. > > workers2.properties file : > > [logger.apache2] > level=DEBUG > > [shm] > file=c:/shm.file > size=1048576 > > # Example socket channel, override port and host. > [channel.socket:test3.com:8009] > port=8009 > host=127.0.0.1 > > # define the worker > [ajp13:test3.com:8009] > channel=channel.socket:test3.com:8009 In here you need to do the URI mapping. So as an example: # Uri Mapping [uri:/TruckEnqui/*] worker=ajp13:test3.com:8009 would map everything under /TruckEnqui/ to test3.com on port 8009. -e --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
