"alesj" wrote :
| So, I'm probably reading your quote wrong
| ""scott.stark(a)jboss.org" wrote :
| | A nested jar should simply be seen as a JarInputStream.
| |
| If by that you mean that URL of nested jar should return JIS, then we're almost there - we return ZIS.
|
Yes, we should be there is a JarInputStream is returned.
"alesj" wrote :
| Off topic:
| I remember having problems finding MANIFEST.MF file if the IS impl in nested jar handling was JIS, instead of ZIS.
…
[View More]Having accessors for the Manifest is basically all JarInputStream adds to the ZipInputStream. Really, from "URL from which an InputStream in jar format can be obtained. ", I don't think a JarInputStream is required as ZipInputStream is in the jar format. Can you validate with the hibernate team that this works for them?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4154716#4154716
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4154716
[View Less]
"adrian(a)jboss.org" wrote : Ok, but if you do use the class, then you need to make sure it is removed
| at undeploy in the scanning deployer otherwise you'll cause a classloader leak.
I have a SoftRef on it.
| public class DefaultElement<A extends Annotation, M extends AccessibleObject> extends WeakClassLoaderHolder implements Element<A, M>
| {
| protected String className;
| protected Signature signature;
| protected Class<A> annClass;
| protected …
[View More]Class<M> aoClass;
|
| private SoftReference<Class<?>> classRef;
|
And WeakRef on the ClassLoader.
| abstract class WeakClassLoaderHolder
| {
| private WeakReference<ClassLoader> clRef;
|
| ...
|
| public class DefaultAnnotationEnvironment extends WeakClassLoaderHolder implements AnnotationEnvironment
|
Is that OK?
Or should I explicitly go and nullify it?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4154712#4154712
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4154712
[View Less]
So Thomas, to be clear, this annotated client and jboss-client.xml override should be producing a metadata ServiceReferenceMetaData with an getAnnotatedElement() pointing to te client field?
| public class WSAppclient extends VehicleClient
| {
| @WebServiceRef(name="service/wsjwsdefaultwebservice")
| static com.sun.ts.tests.jws.webservice.webservice1.client.DefaultWebServiceService service = null;
|
| [532][valkyrie: jar]$ cat META-INF/jboss-client.xml
| <?xml version="1.…
[View More]0" encoding="UTF-8"?>
|
| <jboss-client version="5.0">
| <jndi-name>WSDefaultWebServiceApp_wsappclient_vehicle_client</jndi-name>
| <service-ref>
| <service-ref-name>service/wsjwsdefaultwebservice</service-ref-name>
| <wsdl-override>http://localhost:8080/WSDefaultWebServiceApp/jws/defaultWebService?WSDL&l...>
| </service-ref>
| </jboss-client>
|
I don't know where this would have been populated previously. Its only populated for @Resource so I'm not sure has change here either.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4154703#4154703
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4154703
[View Less]
Hi Everyone,
We have a loadbalancer enabled using mod_jk with just 2 JBoss Servers, when we configure stitcky_session="true", the portal login does not works and a Hibernate Cache problem happens with no clear message about this problem, have some of you guys already tried promote this kind of balancer with this similar scenario? Are there some best practices to do or some tips to configure Portal properly in order to make it works with no errors?
Thanks
Edgar
View the original post : http:/…
[View More]/www.jboss.com/index.html?module=bb&op=viewtopic&p=4154698#4154698
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4154698
[View Less]