[Design of Messaging on JBoss (Messaging/JBoss)] - Re: JBM 2.0 JDBCPersistenceManager - volunteers?
by bershath27
"timfox" wrote : Hi Tyronne-
|
| Any more progress on this?
yes. i have already started creating a working model, i can complete this task by 10th.
to tell you the truth, i have already done this with a test case and trying to locate the project. since i have backed up my HDD during the re-installation of my OS. ;)
i'm using ORM using POJO's instead of Map of maps due to the following reasons :
- maintenance and debugging is awful with map of maps
- poor refactoring
- you use String everywhere
- detyped properties
- the fact, you can't have recursive structures since a Map uses equals/hashcode to define uniquness so guess what happens if you have circular references between maps
- map of maps is very rarely usable (mostly only when you are dealing
with prototypes or meta-meta programming it would be usefull..but mainly
because one is too lazy)
these are the valid reasons i have for you, to move along with ORM. some of them were suggested by the HB team members. please let me know if you have any alternative to this.
thanks
Tyronne
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117795#4117795
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117795
18 years, 3 months
[Design of JBossCache] - Re: Implicit marshalled values - a better way of handling re
by jason.greene@jboss.com
anonymous wrote :
| Sure you can deadlock. When I said "node A" and "node B" I meant different cache instances in the cluster. The both acquire local write locks on the same node in the tree, insert/update their key, then try to acquire the WL globally as part of tx commit. Fails.
|
Ok right, with sync replication a lock timeout could occur on simultaneous commit including modifications of the same node.
anonymous wrote :
| Assume pessimistic locking here (which may not be an issue if we do this far enough in the future, but partly I'm thinking about whether I want to try it this way now.)
|
This is a problem for all forms of locking. Even with O/L, since a WL is aquired in prepare We really should take a look at handling this condition better. I will start a separate topic on that.
Collisions should not be common since they would require simultaneous update on an identical hash code, so with a reasonable timeout should be ok.
anonymous wrote :
| Let's pretend a bit that the 2 node solution is necessary, in case it leads somewhere. :) You can have concurrent putForExternalRead calls on different cache instances, each of which would store a different UUID for the same entity. You'd end up with two copies of the entity in the cache.
|
Yes, that is possible, since the operations are async and not in the same TX. Hopefully eviction would catch that scenario. You could further reduce the occurence by periodically checking the number of subnodes with the number of key entries. If they are different, purge the dups.
anonymous wrote :
| Hmm -- actually you'd get a weird effect where the PFER call for inserting the key/uuid would be aborted when propagated (since the key already exists on the remote node) but the PFER for the uuid node would succeed.
|
Now that is an interesting scenario. Oh how I love PFER and the problems it causes ;) The above (periodic cleanup) solution should work here too.
anonymous wrote :
| OK, let's ignore the 2 node solution. ;) Lot's of problems like that; weirdness when Hibernate suspends transactions, but now we're dealing with doing multiple cache writes.
|
Right, it sounds like 1 node is better anyway. The write problems still exist today. The only difference is that it could occur more frequently if there are a large number of writes to non-primitive key objects that have the same hash code.
anonymous wrote :
| anonymous wrote : Keep them coming!
| With OL, we'd have versioning problems, since the version is applied to the node, not the key/value pair. 2 node solution rises from the dead....
|
Ugh. Yes. In general I don't think the cache node version should be defined by the app to begin with. Is there any reason why the "version" can't be an application property? Let's say that Object[] becomes a class that contains String version and Object[]
anonymous wrote :
| Architecturally, probably cleaner to have a cache per SessionFactory, with the default classloader for deserialization being the deployment's classloader. Seems the only negative to that is if a tx spans session factories, which is probably not a common case.
But then we are back to region based marshaling, and allowing custom types in the fqn, which is very broken.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117779#4117779
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117779
18 years, 3 months
[Design of POJO Server] - Re: loader-repository name required in JBAS5
by charles.crouch@jboss.com
Looking at
http://fisheye.jboss.com/browse/JBossAS/trunk/server/src/main/org/jboss/d...
it appears that line 121 prevents the loader-repository name from ever being null
109 protected void init(VFSDeploymentUnit unit, JBossWebMetaData metaData, VirtualFile file) throws Exception
| 110 {
| 111 // Add the loader repository config
| 112 ClassLoadingMetaData classLoading = metaData.getClassLoading();
| 113 LoaderRepositoryMetaData lrmd = null;
| 114 if(classLoading != null)
| 115 lrmd = classLoading.getLoaderRepository();
| 116 if (lrmd != null)
| 117 {
| 118 LoaderRepositoryConfig loaderConfig = new LoaderRepositoryConfig();
| 119
| 120 loaderConfig.repositoryClassName = lrmd.getLoaderRepositoryClass();
| 121 loaderConfig.repositoryName = new ObjectName(lrmd.getName());
| 122 Set<LoaderRepositoryConfigMetaData> configs = lrmd.getLoaderRepositoryConfig();
| 123 if (configs != null && configs.isEmpty() == false)
| 124 {
| 125 LoaderRepositoryConfigMetaData config = configs.iterator().next();
| 126 loaderConfig.configParserClassName = config.getConfigParserClass();
| 127 loaderConfig.repositoryConfig = config.getConfig();
| 128 }
| 129 unit.addAttachment(LoaderRepositoryConfig.class, loaderConfig);
| 130 }
| 131 }
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117776#4117776
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117776
18 years, 3 months
[Design of POJO Server] - loader-repository name required in JBAS5
by charles.crouch@jboss.com
Using r68653 of JBAS
Deploying a .war with a jboss-web.xml of
<jboss-web>
| <context-root>/jboss-as5-testsuite</context-root>
|
| <class-loading>
| <loader-repository>
| <loader-repository-config>java2ParentDelegation=false</loader-repository-config>
| </loader-repository>
| </class-loading>
| </jboss-web>
|
produces the following, where as in JBAS4.2 it worked fine...
| 19:49:52,828 ERROR [AbstractKernelController] Error installing to Parse: name=vfsfile:/C:/usr/apps/jboss/jboss-5.0.0.r68653/
| server/default/deploy/jboss-as5-testsuite.war state=Not Installed mode=Manual requiredState=Parse
| org.jboss.deployers.spi.DeploymentException: Error creating managed object for vfsfile:/C:/usr/apps/jboss/jboss-5.0.0.r68653
| /server/default/deploy/jboss-as5-testsuite.war
| at org.jboss.deployers.spi.DeploymentException.rethrowAsDeploymentException(DeploymentException.java:49)
| at org.jboss.deployers.spi.deployer.helpers.AbstractParsingDeployerWithOutput.createMetaData(AbstractParsingDeployer
| WithOutput.java:232)
| at org.jboss.deployment.JBossWebAppParsingDeployer.createMetaData(JBossWebAppParsingDeployer.java:140)
| at org.jboss.deployers.spi.deployer.helpers.AbstractParsingDeployerWithOutput.createMetaData(AbstractParsingDeployer
| WithOutput.java:199)
| at org.jboss.deployment.JBossWebAppParsingDeployer.createMetaData(JBossWebAppParsingDeployer.java:87)
| at org.jboss.deployers.spi.deployer.helpers.AbstractParsingDeployerWithOutput.deploy(AbstractParsingDeployerWithOutp
| ut.java:162)
| at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:169)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:853)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:794)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:327)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1309)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:734)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:862)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:784)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:622)
| at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:411)
| at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:498)
| at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:506)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:245)
| at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:131)
| at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:408)
| at org.jboss.Main.boot(Main.java:208)
| at org.jboss.Main$1.run(Main.java:534)
| at java.lang.Thread.run(Thread.java:595)
| Caused by: java.lang.NullPointerException: name cannot be null
| at javax.management.ObjectName.construct(ObjectName.java:342)
| at javax.management.ObjectName.<init>(ObjectName.java:1304)
| at org.jboss.deployment.JBossWebAppParsingDeployer.init(JBossWebAppParsingDeployer.java:121)
| at org.jboss.deployment.JBossWebAppParsingDeployer.init(JBossWebAppParsingDeployer.java:50)
| at org.jboss.deployers.vfs.spi.deployer.AbstractVFSParsingDeployer.parse(AbstractVFSParsingDeployer.java:88)
| at org.jboss.deployers.spi.deployer.helpers.AbstractParsingDeployerWithOutput.createMetaData(AbstractParsingDeployer
| WithOutput.java:223)
| ... 22 more
|
Giving the loader-repository a name makes everything happy:
<jboss-web>
| <context-root>/jboss-as5-testsuite</context-root>
|
| <class-loading>
| <loader-repository>
| jboss.on.org:loader=jboss-as5-test
| <loader-repository-config>java2ParentDelegation=false</loader-repository-config>
| </loader-repository>
| </class-loading>
| </jboss-web>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117775#4117775
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117775
18 years, 3 months
[Design of POJO Server] - AnnotationMetaDataDeployer is very chatty
by charles.crouch@jboss.com
Using r68653 of JBAS
When I start up JBAS with my webapp deployed, I get a huge amount of logging from AnnotationMetaDataDeployer. I dont think this stuff needs to be logged at INFO.
| 19:15:00,765 INFO [AnnotationMetaDataDeployer] Annotated classes: {JarEntryHandler(a)6217586[path=jboss-as5-testsuite.war/WEB
| -INF/lib/jaxb-impl-2.1.jar/com/sun/xml/txw2/annotation/XmlElement.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/s
| erver/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/txw2/annotation/XmlEl
| ement.class]=interface com.sun.xml.txw2.annotation.XmlElement, JarEntryHandler(a)10479045[path=jboss-as5-testsuite.war/WEB-INF
| /lib/jaxb-impl-2.1.jar/com/sun/xml/txw2/annotation/XmlAttribute.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/ser
| ver/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/txw2/annotation/XmlAttr
| ibute.class]=interface com.sun.xml.txw2.annotation.XmlAttribute, JarEntryHandler(a)27655250[path=jboss-as5-testsuite.war/WEB-I
| NF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/ComplexExtension.class context=file:/C:/usr/apps/jboss/jbos
| s-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/
| v2/schemagen/xmlschema/ComplexExtension.class]=interface com.sun.xml.bind.v2.schemagen.xmlschema.ComplexExtension, JarEntryH
| andler(a)5804618[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/Appinfo.cl
| ass context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Te
| mp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/Appinfo.class]=interface com.sun.xml.bind.v2.schemagen.xmlsch
| ema.Appinfo, JarEntryHandler(a)15497491[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemag
| en/xmlschema/Import.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME
| ~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/Import.class]=interface com.sun.xml.bin
| d.v2.schemagen.xmlschema.Import, JarEntryHandler(a)16843829[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun
| /xml/bind/v2/schemagen/xmlschema/TopLevelAttribute.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/d
| eploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/TopLevel
| Attribute.class]=interface com.sun.xml.bind.v2.schemagen.xmlschema.TopLevelAttribute, JarEntryHandler@29062064[path=jboss-as
| 5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/model/runtime/package-info.class context=file:/C:/usr/apps
| /jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/su
| n/xml/bind/v2/model/runtime/package-info.class]=interface com.sun.xml.bind.v2.model.runtime.package-info, JarEntryHandler@27
| 807662[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/Documentation.clas
| s context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp
| /nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/Documentation.class]=interface com.sun.xml.bind.v2.schemagen.xm
| lschema.Documentation, JarEntryHandler(a)17256534[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/
| v2/schemagen/xmlschema/LocalElement.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar
| :file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/LocalElement.class]=int
| erface com.sun.xml.bind.v2.schemagen.xmlschema.LocalElement, JarEntryHandler(a)19624427[path=jboss-as5-testsuite.war/WEB-INF/l
| ib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/model/core/package-info.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/se
| rver/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/model/core/pac
| kage-info.class]=interface com.sun.xml.bind.v2.model.core.package-info, JarEntryHandler(a)21241280[path=jboss-as5-testsuite.wa
| r/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/Annotation.class context=file:/C:/usr/apps/jboss/jbo
| ss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind
| /v2/schemagen/xmlschema/Annotation.class]=interface com.sun.xml.bind.v2.schemagen.xmlschema.Annotation, JarEntryHandler@1660
| 2633[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/package-info.class c
| ontext=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/ne
| stedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/package-info.class]=interface com.sun.xml.bind.v2.schemagen.xmlsch
| ema.package-info, JarEntryHandler(a)1797236[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/sch
| emagen/xmlschema/Any.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUM
| E~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/Any.class]=interface com.sun.xml.bind.
| v2.schemagen.xmlschema.Any, JarEntryHandler(a)7169533[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/b
| ind/v2/schemagen/xmlschema/SimpleExtension.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ r
| eal=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/SimpleExtension.
| class]=interface com.sun.xml.bind.v2.schemagen.xmlschema.SimpleExtension, JarEntryHandler(a)4391369[path=jboss-as5-testsuite.w
| ar/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/TopLevelElement.class context=file:/C:/usr/apps/jbo
| ss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xm
| l/bind/v2/schemagen/xmlschema/TopLevelElement.class]=interface com.sun.xml.bind.v2.schemagen.xmlschema.TopLevelElement, JarE
| ntryHandler(a)19543899[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/annotation/XmlLocation.clas
| s context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp
| /nestedjar51067.tmp!/com/sun/xml/bind/annotation/XmlLocation.class]=interface com.sun.xml.bind.annotation.XmlLocation, JarEn
| tryHandler(a)9989191[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/Comple
| xRestriction.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccro
| uch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/ComplexRestriction.class]=interface com.sun.xm
| l.bind.v2.schemagen.xmlschema.ComplexRestriction, JarEntryHandler(a)15510444[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-imp
| l-2.1.jar/com/sun/xml/txw2/annotation/XmlCDATA.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deplo
| y/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/txw2/annotation/XmlCDATA.class]=interfac
| e com.sun.xml.txw2.annotation.XmlCDATA, JarEntryHandler(a)33211218[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/
| com/sun/xml/bind/v2/schemagen/xmlschema/SimpleType.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/d
| eploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/SimpleTy
| pe.class]=interface com.sun.xml.bind.v2.schemagen.xmlschema.SimpleType, JarEntryHandler(a)2975107[path=jboss-as5-testsuite.war
| /WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/episode/package-info.class context=file:/C:/usr/apps/jboss/jbos
| s-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/
| v2/schemagen/episode/package-info.class]=interface com.sun.xml.bind.v2.schemagen.episode.package-info, JarEntryHandler@65312
| 47[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/Schema.class context=f
| ile:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar5
| 1067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/Schema.class]=interface com.sun.xml.bind.v2.schemagen.xmlschema.Schema, Ja
| rEntryHandler(a)14122883[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/Lo
| calAttribute.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccro
| uch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/LocalAttribute.class]=interface com.sun.xml.bi
| nd.v2.schemagen.xmlschema.LocalAttribute, JarEntryHandler(a)32810023[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.ja
| r/com/sun/xml/txw2/annotation/XmlValue.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=
| jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/txw2/annotation/XmlValue.class]=interface com.su
| n.xml.txw2.annotation.XmlValue, JarEntryHandler(a)4527632[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/x
| ml/bind/v2/schemagen/xmlschema/List.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar
| :file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/List.class]=interface c
| om.sun.xml.bind.v2.schemagen.xmlschema.List, JarEntryHandler(a)28020543[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1
| .jar/com/sun/xml/txw2/annotation/XmlNamespace.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy
| / real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/txw2/annotation/XmlNamespace.class]=inter
| face com.sun.xml.txw2.annotation.XmlNamespace, JarEntryHandler(a)4817764[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.
| 1.jar/com/sun/istack/Interned.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:
| /C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/istack/Interned.class]=interface com.sun.istack.Interned, Jar
| EntryHandler(a)5326199[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/Comp
| lexContent.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouc
| h/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/ComplexContent.class]=interface com.sun.xml.bind
| .v2.schemagen.xmlschema.ComplexContent, JarEntryHandler(a)27761480[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/
| com/sun/xml/bind/annotation/XmlIsSet.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=ja
| r:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/annotation/XmlIsSet.class]=interface com.sun.
| xml.bind.annotation.XmlIsSet, JarEntryHandler(a)12821819[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xm
| l/bind/v2/schemagen/xmlschema/SimpleContent.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/
| real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/SimpleContent.c
| lass]=interface com.sun.xml.bind.v2.schemagen.xmlschema.SimpleContent, JarEntryHandler(a)9749991[path=jboss-as5-testsuite.war/
| WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/istack/NotNull.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default
| /deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/istack/NotNull.class]=interface com.su
| n.istack.NotNull, JarEntryHandler(a)21823376[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/sc
| hemagen/xmlschema/Union.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DO
| CUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/Union.class]=interface com.sun.xml.
| bind.v2.schemagen.xmlschema.Union, JarEntryHandler(a)1992289[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/su
| n/xml/bind/v2/schemagen/xmlschema/SimpleRestriction.class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/
| deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/SimpleR
| estriction.class]=interface com.sun.xml.bind.v2.schemagen.xmlschema.SimpleRestriction, JarEntryHandler@30633847[path=jboss-a
| s5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/episode/Bindings.class context=file:/C:/usr/app
| s/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/nestedjar51067.tmp!/com/s
| un/xml/bind/v2/schemagen/episode/Bindings.class]=interface com.sun.xml.bind.v2.schemagen.episode.Bindings, JarEntryHandler@3
| 872665[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/xml/bind/v2/schemagen/xmlschema/ComplexType.class
| context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1/Temp/n
| estedjar51067.tmp!/com/sun/xml/bind/v2/schemagen/xmlschema/ComplexType.class]=interface com.sun.xml.bind.v2.schemagen.xmlsch
| ema.ComplexType, JarEntryHandler(a)25839138[path=jboss-as5-testsuite.war/WEB-INF/lib/jaxb-impl-2.1.jar/com/sun/istack/Nullable
| .class context=file:/C:/usr/apps/jboss/jboss-5.0.0.r68653/server/default/deploy/ real=jar:file:/C:/DOCUME~1/ccrouch/LOCALS~1
| /Temp/nestedjar51067.tmp!/com/sun/istack/Nullable.class]=interface com.sun.istack.Nullable}
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4117774#4117774
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4117774
18 years, 3 months