Hi, I am using XMLSocketAppender with my application which has multiple processes. Processes comes up in order, p1, p2 and p3. Every process is trying to write to same remote port. And I am running a server program which gets messages recevied and prints on console. Server program is recevigin only messages sent only by first process (p1) not by other processes (p2 or p3). P1 is the parent of p2 and p3. p2 and p3 are using same port to write used by p1 and p2. Is it a configuration problem or a limitation?
My config file looks like this log4j.rootLogger=DEBUG, SOCK log4j.appender.SOCK=org.apache.log4j.net.XMLSocketAppender log4j.appender.SOCK.RemoteHost=10.232.15.18 log4j.appender.SOCK.Port=9247 log4j.appender.SOCK.LocationInfo=true Thnx, Sandeep