You don't see anything in the log or just nothing that relates to this exception? You should at least see a lot of debug logging messages as the server receives messages from the client. It is pretty verbose so if you are not seeing anything I am thinking someone is wrong with the logging configuration. Not sure what that could be though... the ConsoleTarget class just uses System.out to log its messages. Maybe your app server is swallowing the console messages? There is a ServletLogTarget which uses the servlet's log method.
Jeff ________________________________ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of chrisnoeflex Sent: Wednesday, January 24, 2007 7:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: no rtmp connection on win xp ? Jeff, Sorry that this answer took some time. I tried to debug it as you said, but nothing comes up in the log. I configured the logging part in the service-config.xml as followed : <logging> <target class="flex.messaging.log.ConsoleTarget" level="Debug"> <properties> <prefix>[Flex] </prefix> <includeDate>true</includeDate> <includeTime>true</includeTime> <includeLevel>true</includeLevel> <includeCategory>true</includeCategory> </properties> <filters> <pattern>DataService.*</pattern> <pattern>Message.*</pattern> <pattern>Endpoint.*</pattern> <pattern>Service.*</pattern> <pattern>Configuration</pattern> </filters> </target> </logging>