Hi,<br><br>Jboss is loading the httpClient jar and spring framework jar, I don't want to load the jar from jboss, I want to load from my ear.<br><br>Is there anything I can do to avoid loading both the jars from jboss from run.bat or from vm arguments in eclipse.<br>
<br>I tried couple of options <br><br>option 1:<br> <attribute name="Java2ClassLoadingCompliance">false</attribute><br><attribute name="UseJBossWebLoader">false</attribute><br><br>
<loader-repository><br> com.example:archive=unique-archive-name<br> <loader-repository-config>java2ParentDelegation=false</loader-repository-config><br> </loader-repository><br><br>option 2:<br><attribute name="Exclude">httpclient.wire</attribute><br>
<br>but both the options are not working.<br><br>I am using separate slf4j for logging, I dont what jboss common-logging to log the http client and spring framework log to write in server.log, I want to write the logs in my own log created by slf4j,.<br>
<br>I am new you slf4j, I am trying to integrate with jboss and spring web<br>service, i am getting the debugger log, but<br>DEBUG httpclient.wire.header and<br>[org.springframework.web.<br>servlet.DispatcherServlet]<br><br>
are going into server.log of jboss, i have configure logback.xml<br> <logger name="httpclient.wire" additivity="false"><br> <appender-ref ref="FILE"/><br> <level value="info" /><br>
</logger><br><br> <logger name="httpclient.wire.header" additivity="false"><br> <appender-ref ref="FILE"/><br> <level value="debug"/><br> <level value="info" /><br>
</logger><br><br> <logger name="org.springframework" additivity="false"><br> <appender-ref ref="FILE"/><br> <level value="ERROR"/><br><br> </logger><br>
<br> <logger name="org.springframework.web"><br> <level value="ERROR"/><br><br> </logger><br> <logger name="<a href="http://org.springframework.ws">org.springframework.ws</a>"><br>
<level value="ERROR"/><br><br> </logger><br><br>but not reflecting in log.<br><br>Could you please help me.<br><br>Thanks in Advance<br>