[JBossWS] - Re: Implementing WS-Security Usename Token Profile Authentic
by jayblanc54
Hi,
I've tested the authentication using Digest Password
1. JBoss AS 5.0.1.GA
2. JBOSS WS native 3.0.5.GA
3. WebService is implemented using an EJB3 Endpoint.
4. Client is generated using standard JAXWS (with maven) but executed using jbossws-native-client
5. JDK 6 (using -Djava.endorsed.dirs=${jboss.home}/lib/endorsed during client execution)
6. Username Token is configured to produce a PasswordDigest and not a clear password.
Everything works fine using the jboss-native-client
2 problems appears also :
1. If I'm using SOAPUI to generate a SOAP call, in the server side, password does not match. (If I'm using a configuration with no digest, the SOAPUI call works fine). I assume there is a difference between the SOAPUI generated Digest and the JBoss generated Digest but what is this difference ?
2. The way to put UserName and Password on the client side is :
| AuthenticationService_Service service = new AuthenticationService_Service();
| AuthenticationService port = service.getAuthenticationService();
|
| ((StubExt) port).setConfigName("Standard WSSecurity Client");
|
| Map<String, Object> reqContext = ((BindingProvider)port).getRequestContext();
| reqContext.put(BindingProvider.USERNAME_PROPERTY, "kermit");
| reqContext.put(BindingProvider.PASSWORD_PROPERTY, "thefrog");
|
| String connectedUser = port.getConnectedUserIdentifier();
| logger.info("Connected user : " + connectedUser);
| assertTrue(connectedUser.equals("kermit"));
|
Then the WSSecurityHandlerClient take this HTTP header information to generate the correct wsse SAOP header assertion, calculating a password digest of the clear password provided. The problem is that the HTTP header information is not removed and is visible clearely in the HTTP header... So the password is well encoded using a digest in the SOAP header but not in the HTTP header. Is it an issue or is there any other way to give Username/Password information to the WSSecurityHandlerClient ?
3. Is there is some code sample that show how to use SAML instead of Usernam/Token ?
If you capture trames using Wireshar
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231089#4231089
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231089
17 years, 2 months
[JBossWS] - [Urgent]: EJBs and web services in Jboss a/s 4.2.2 GA
by veneetr
Hi all,
I just wanted to ask for a help in a scenario that i am facing:
I have a Application that relies on EJBs for Business Logic
I basically use the Jboss A/s[4.2.2 GA] server for the same and now there is a need to Expose these bean methods through a web service
so that our web team can make use of the same Business logic.
Currently i have implemented a End point interface that my Bean class implements so that i can expose
my bean methods to the web team
Req:
I want to create a separate Enterprise Bean which resides in the same JVM as my Application bean , and acts as a wrapper for my application bean
Also,
Further elaboration of the problem is as follows:
THE existing Application beans Remote interface has all the business methods that i want to expose.
The new bean should act as a delegate which intercepts the web clients call extracts the request from the call
and passes it to the application bean methods.
So this basically requires that new bean should be able to communicate with my application bean (Which is BTW a stateless session bean)
and pass on clients requests to the same.
Kindly provide suggestion for the same or any ideas as soon as possible
--
thanks again
veneet
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231086#4231086
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231086
17 years, 2 months
[JNDI/Naming/Network] - java.lang.ClassNotFoundException: org.jnp.server.NamingServe
by blackhacker
Hello,
i try to connect a jboss server from tomcat 6 with global transactions activated. I am using spring on the client side. During startup of tomcat I get the exception:
Caused by: java.lang.NoClassDefFoundError: org/jnp/server/NamingServer
at org.jboss.naming.java.javaURLContextFactory.(javaURLContextFactory.java:52)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:247)
at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12.java:54)
at com.sun.naming.internal.ResourceManager.getFactory(ResourceManager.java:371)
at javax.naming.spi.NamingManager.getURLObject(NamingManager.java:575)
at javax.naming.spi.NamingManager.getURLContext(NamingManager.java:533)
at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:320)
at javax.naming.InitialContext.lookup(InitialContext.java:392)
at org.jboss.tm.usertx.client.ClientUserTransactionObjectFactory.getUserTransaction(ClientUserTransactionObjectFactory.java:63)
at org.jboss.tm.usertx.client.ClientUserTransactionObjectFactory.getObjectInstance(ClientUserTransactionObjectFactory.java:89)
at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
at org.jnp.interfaces.NamingContext.getObjectInstance(Unknown Source)
at org.jnp.interfaces.NamingContext.getObjectInstanceWrapFailure(Unknown Source)
at org.jnp.interfaces.NamingContext.lookup(Unknown Source)
at org.jnp.interfaces.NamingContext.lookup(Unknown Source)
at javax.naming.InitialContext.lookup(InitialContext.java:392)
at org.springframework.jndi.JndiTemplate$1.doInContext(JndiTemplate.java:132)
at org.springframework.jndi.JndiTemplate.execute(JndiTemplate.java:88)
at org.springframework.jndi.JndiTemplate.lookup(JndiTemplate.java:130)
at org.springframework.jndi.JndiTemplate.lookup(JndiTemplate.java:155)
at org.springframework.transaction.jta.JtaTransactionManager.lookupUserTransaction(JtaTransactionManager.java:565)
at org.springframework.transaction.jta.JtaTransactionManager.initUserTransactionAndTransactionManager(JtaTransactionManager.java:444)
at org.springframework.transaction.jta.JtaTransactionManager.afterPropertiesSet(JtaTransactionManager.java:431)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1367)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1333)
... 118 more
Caused by: java.lang.ClassNotFoundException: org.jnp.server.NamingServer
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1360)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1206)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
... 144 more
I found the class in jnpserver.jar but I dont have this jar in my classpath and I thought I dont need it on the client, is it? jbossall-client is in the classpath.
Any suggestions?
Cheers,
Thilko
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231080#4231080
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231080
17 years, 2 months
[Beginners Corner] - richfaces drag and drop
by sirajbg
Hi,
I am able to drag any image or text from drag support. But
I am not able to drop the image in the drop area
|
| <rich:panel id="dragpanelid" style="width: 300;height: 300;">
| <f:facet name="header">
| <h:outputText value="Drag Region" />
| </f:facet>
| <a4j:outputPanel>
| <rich:dragSupport id="dragid" dragIndicator=":indicator" dragType="singleItem" >
| <rich:dndParam name="label" type="drag">
| <h:graphicImage value="/images/images.jpg" />
| </rich:dndParam>
| <h:graphicImage value="/images/images.jpg" />
| </rich:dragSupport>
| </a4j:outputPanel>
|
| </rich:panel>
|
| <rich:panel id="droppanelid" style="width: 300;height: 300;">
| <f:facet name="header">
| <h:outputText value="Drop Region" />
| </f:facet>
|
| <a4j:outputPanel>
| <rich:dropSupport id="dropid" acceptedTypes="singleItem" dropValue="yyyy" dropListener="#{dragnDrop.dragged}" reRender="droppanelid" >
| </rich:dropSupport>
| </a4j:outputPanel>
|
| </rich:panel>
|
|
Please help me in fixing this issue.
siraj.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231063#4231063
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231063
17 years, 2 months
[EJB/JBoss] - EJB3 Standalone bootstrap questions for the source code avai
by shadukan
Hi once again,
i am fighting again with the ejb3 embedded in order to manage and o some unit tests in my ejb3.I downloaded the source form the repository and after trying various workarounds to make that thing to work i have come to the point where i can't understand the reason for some fragments of code.I will provide my bootstrap class code + the fragments of code that i believe are wrong.So:
TestNG class
| EJB3StandaloneBootstrap.boot(null);
| deployer = EJB3StandaloneBootstrap.createDeployer();
|
| System.out.println("INFO ["+EJB3StandaloneBootstrap.class.getCanonicalName()+"]\tServer start up in "+(System.currentTimeMillis() - start)+" ms");
|
| String classpath = System.getProperty("java.class.path");
|
|
| StringTokenizer tokenizer = new StringTokenizer(classpath,":");
|
| while(tokenizer.hasMoreTokens()){
| String token = tokenizer.nextToken();
| if(token.contains("/xxx-app-ejb/target/classes"))
| deployer.getDeployDirs().add(new URL("file:"+token));
| /*if(!token.contains(".jar"))
| deployer.getDeployDirsByResource().add(token);
| else{
| deployer.getArchivesByResource().add(token);
| }*/
| }
|
|
| /*URL url = Thread.currentThread().getContextClassLoader().getResource("META-INF/persistence.xml");
| URL deployDir = EJB3StandaloneDeployer.getDeployDirFromResource(url, "META-INF/persistence.xml");
| deployer.getDeployDirs().add(deployDir);*/
|
| try{
| deployer.create();
| deployer.start();
| }catch(Exception e){
| e.printStackTrace();
| }
|
EJB3StandaloneDeployer.create():
| for (URL archive : archives)
| {
| DeployerUnit du = new DeployerUnit(classLoader, archive, defaultPersistenceProperties, jndiProperties);
| EJB3StandaloneDeployment deployment = new EJB3StandaloneDeployment(du, kernel, mbeanServer);
| deployments.add(deployment);
| deployment.create();
| }
|
EJB3StandaloneDeployment:
| public class EJB3StandaloneDeployment extends Ejb3Deployment
| {
| public EJB3StandaloneDeployment(DeploymentUnit di, Kernel kernel, MBeanServer mbeanServer)
| {
| super(di, null, null, null, null);
|
| defaultSFSBDomain = "Embedded Stateful Bean";
| kernelAbstraction = new MCKernelAbstraction(kernel, mbeanServer);
| this.mbeanServer = mbeanServer;
| }
|
Then i get an deployer is null from the constructor of the super class Ejb3Deployment
and the reason is SO obvious!!!
I think the code of the repository is even more buggy...
any convincing answer on why/how this is solved...So i wonder how can anyone make this thing to work...Unless i will not use dirs BUT jars?Stile it gets to the points of iterating the archives...
regards
\n\m
P.S.:Sorry for the long post
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231045#4231045
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231045
17 years, 2 months
[Installation, Configuration & DEPLOYMENT] - Ear as a loader repository
by ben_leedham
Hi,
I am deploying an EAR file containing several WAR files. the EAR contains all the libraries necessary for the WARs, 2 of those libraries being specific saaj api and impl versions.
When I try to start the server I get a NoSuchMethodError, as the saaj version being loaded is from jboss-4.0.3SP1/server/default/lib/jboss-saaj.jar, and not from the EAR's APP-INF/lib.
If I put the saaj jars in the WEB-INF/lib of each of the wars all is fine, but that is a messy solution.
I have tried creating a jboss-app.xml file alongside my application.xml file in the EAR's META-INF directory with this content:
<jboss-app>
| <loader-repository>
| hello:service=LoaderRepository
| <loader-repository-config>
| java2ParentDelegation=false
| </loader-repository-config>
| </loader-repository>
| </jboss-app>
Essentially what I am trying to achieve is for the EAR to be a loader repository and not look at the parent server for it's jars.
This doesn't work and I don't understand what I am doing wrong. Any help would be appreciated.
Cheers.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231040#4231040
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231040
17 years, 2 months
[EJB/JBoss] - Migration issue
by centina
Hello all
I migrated my EAR s frm jboss 4.2.2 to jboss 5.0.1 they worked fine on the former while the latter has issues.
2009-05-14 14:14:02,546 INFO [main] org.jboss.web.WebService
Using RMI server codebase: http://SIVA-LT:8083/
2009-05-14 14:14:02,609 DEBUG [main] org.jnp.server.NamingBeanImpl
Using NamingServer: org.jnp.server.NamingServer@5f634c
2009-05-14 14:14:02,609 DEBUG [main] org.jnp.server.NamingBeanImpl
Installed global NamingServer: org.jnp.server.NamingServer@5f634c
2009-05-14 14:14:02,625 DEBUG [main] org.jnp.server.NamingBeanImpl
InitialContext Environment:
2009-05-14 14:14:02,625 DEBUG [main] org.jnp.server.NamingBeanImpl
key=java.naming.factory.initial, value(java.lang.String)=org.jnp.interfaces.NamingContextFactory
2009-05-14 14:14:02,625 DEBUG [main] org.jnp.server.NamingBeanImpl
key=java.naming.factory.url.pkgs, value(java.lang.String)=org.jboss.naming:org.jnp.interfaces
2009-05-14 14:14:09,796 INFO [main] org.jboss.wsf.stack.jbws.NativeServerConfig
JBoss Web Services - Stack Native Core
2009-05-14 14:14:09,796 INFO [main] org.jboss.wsf.stack.jbws.NativeServerConfig
3.0.4.SP1
2009-05-14 14:14:28,625 WARN [main] org.jboss.deployment.MappedReferenceMetaDataResolverDeployer
Unresolved references exist in JBossMetaData:[client.jar#ServiceAlarmExpressionEditorBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#ServiceAlarmExpressionEditorBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#EditUserBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#EditUserBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#AlarmSuppressionPolicyTableBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#NtpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#NtpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#SecurityLogBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#HttpsMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#HttpsMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#DbBackupAction:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#TopologyLocusBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#WorkFlowsBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowTicketActionBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowTicketActionBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#DbBackupSettingsBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#ContainedServicesBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#ContainedServicesBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#ServiceNetworkAlarmTableBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#ServiceNetworkAlarmTableBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#ServiceNetworkAlarmTableBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#ServiceNetworkAlarmTableBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#ServiceMultiEditBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#SftpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#SftpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#ChangePasswordAction:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#WorkFlowTriggerBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowTriggerBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#EndPointServiceChangeBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#EndPointServiceChangeBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#EndPointTableBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#EndPointTableBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#TopologyMapBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#TopologyMapBean:AnnotatedEJBReferenceMetaData{name=GisTopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.GisTopologySessionLocal}, client.jar#TopologyMapBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#TopologyMapBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#FilterTableBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#SecuritySettingsBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#ActiveUserMgmtImpl:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#NeScanSpecificationImpl:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#ReportEditBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#ServiceEditBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#ServiceAlarmTableBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#ServiceAlarmTableBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#ServiceNetworkAlarmHistoryTableBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#ServiceNetworkAlarmHistoryTableBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#ServiceNetworkAlarmHistoryTableBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#NagiosMonitorTestBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#SshMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#SshMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#AlarmExpressionEditorBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#AlarmExpressionEditorBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#TriggerTableBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#ContainingServicesBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#ContainingServicesBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#SecurityLogEntryExpressionEditorBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#SecurityLogEntryExpressionEditorBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#Pop3MonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#Pop3MonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#NeActionBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#HttpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#HttpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#ActionTableBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#NetworkAlarmTreeImpl:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#NetworkAlarmTreeImpl:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#NetworkAlarmTreeImpl:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#NetworkAlarmTreeImpl:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#EndPointMultiEditBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#EndPointMultiEditBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#IcmpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#IcmpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#ServiceHistoryTreeImpl:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#ServiceHistoryTreeImpl:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#ServiceHistoryTreeImpl:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#ServiceHistoryTreeImpl:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#EventStyleBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#AlarmThresholdPolicyTableBean:AnnotatedEJBReferenceMetaData{name=FauleSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#ProfileTableBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#SnmpMonitorExpressionEditorBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#SnmpMonitorExpressionEditorBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#EditUserGroupBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#AvailableServiceTableBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#CustomerEditBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#AvailableAlarmSuppressionPolicyTableBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#WorkFlowClearActionBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowClearActionBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#WorkFlowAcknowledgeActionBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowAcknowledgeActionBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#NetworkAlarmDetailTreeImpl:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#NetworkAlarmDetailTreeImpl:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#NetworkAlarmDetailTreeImpl:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#NetworkAlarmDetailTreeImpl:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#ServiceAlarmHistoryTableBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#CustomerTableBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#AuthenticationTableBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#SysEditBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#SysEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#SysFaultSettingsBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#AlarmSuppressionPolicyEditBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#ServiceTableBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#WorkFlowFilterBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowFilterBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#AlarmThresholdPolicyEditBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#NetworkObjectGroupingServiceChangeBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#NetworkObjectGroupingServiceChangeBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#RoleCheckImpl:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#AsciiProfileEditBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#ReportAlarmExpressionEditorBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#ReportAlarmExpressionEditorBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#DetailReportsBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#SummaryReportsBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#WorkFlowAssignActionBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowAssignActionBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#LicenseKeyTableBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#ServiceAlarmHistoryDetails:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#ServiceAlarmHistoryDetails:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#SysCommSettingsBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#ServiceEndPointTableBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#ServiceEndPointTableBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#ServiceTypeTableBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#ApplicationMonitorTableBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#SysTopologySettingsBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#WorkFlowNodeEditBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#NeEditBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#WorkFlowCommentActionBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowCommentActionBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#NesEditBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#AlarmEditBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#AlarmEditBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#AlarmEditBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#AlarmEditBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#NetworkAlarmHistoryTableBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#NetworkAlarmHistoryTableBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#NetworkAlarmHistoryTableBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#AsciiEventEditBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#ServiceTreeImpl:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#ServiceTreeImpl:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#ServiceTreeImpl:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#ServiceTreeImpl:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#ServiceTreeImpl:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#ReportsBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#AlarmTableBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#AlarmTableBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#AlarmTableBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#AlarmTableBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#WorkFlowEmailActionBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowEmailActionBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#Licenses:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#WorkFlowPriorityActionBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowPriorityActionBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#ServiceViewer:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#TelnetMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#TelnetMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#ServiceTypeEditBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#DnsMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#DnsMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#AvailableApplicationMonitorTableBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#ImapMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#ImapMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#ServiceAlarmDetails:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#ServiceAlarmDetails:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#LoginAction:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#SnmpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#SnmpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#WorkFlowScriptActionBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#WorkFlowScriptActionBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowScriptActionBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#SysTicketSettingsBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#FtpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#FtpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#SmtpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#SmtpMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#UserGroupMgmtImpl:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#DbchgListenerStatus:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}, client.jar#AttachmentTableBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#NodeTableBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#MediaActionBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#SysInfoBean:AnnotatedEJBReferenceMetaData{name=AnonymousSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.AnonymousSessionLocal}, client.jar#UserMgmtImpl:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#AvailableEndPointTableBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#AvailableEndPointTableBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#ServiceTypeMultiEditBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#WorkFlowScheduledTriggerBean:AnnotatedEJBReferenceMetaData{name=WorkflowSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.WorkflowSessionLocal}, client.jar#WorkFlowScheduledTriggerBean:AnnotatedEJBReferenceMetaData{name=SecuritySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SecuritySessionLocal}, client.jar#SysViewBean:AnnotatedEJBReferenceMetaData{name=AnonymousSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.AnonymousSessionLocal}, client.jar#SysViewBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#NagiosMonitorEditBean:AnnotatedEJBReferenceMetaData{name=SystemSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.SystemSessionLocal}, client.jar#NagiosMonitorEditBean:AnnotatedEJBReferenceMetaData{name=MonitorSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.MonitorSessionLocal}, client.jar#SubnetEditBean:AnnotatedEJBReferenceMetaData{name=TopologySessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.TopologySessionLocal}, client.jar#EndPointEditBean:AnnotatedEJBReferenceMetaData{name=ServiceSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.ServiceSessionLocal}, client.jar#EndPointEditBean:AnnotatedEJBReferenceMetaData{name=FaultSessionLocal,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=null,resolved-jndi-name=null,beanInterface=interface centina.sa.interfaces.nb.FaultSessionLocal}]
2009-05-14 14:14:28,687 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@29140661{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/aserver.ear/interfaces-nb.jar}
2009-05-14 14:14:28,687 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@29140661{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/aserver.ear/interfaces-nb.jar}
2009-05-14 14:14:28,687 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@29140661{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/aserver.ear/interfaces-nb.jar}
2009-05-14 14:14:28,687 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@6601758{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/aserver.ear/model.jar}
2009-05-14 14:14:28,687 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@6601758{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/aserver.ear/model.jar}
2009-05-14 14:14:28,687 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@6601758{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/aserver.ear/model.jar}
2009-05-14 14:14:28,687 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@24806645{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/aserver.ear/server-ejb.jar}
2009-05-14 14:14:28,687 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@24806645{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/aserver.ear/server-ejb.jar}
2009-05-14 14:14:28,687 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@24806645{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/aserver.ear/server-ejb.jar}
2009-05-14 14:14:28,687 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@24806645{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/aserver.ear/server-ejb.jar}
2009-05-14 14:14:28,703 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@20254712{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/client.ear/client.jar}
2009-05-14 14:14:28,703 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@20254712{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/client.ear/client.jar}
2009-05-14 14:14:28,703 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@20254712{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/client.ear/client.jar}
2009-05-14 14:14:28,703 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@20254712{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/client.ear/client.jar}
2009-05-14 14:14:28,703 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@11244970{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/client.ear/jboss-seam.jar}
2009-05-14 14:14:28,703 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@11244970{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/client.ear/jboss-seam.jar}
2009-05-14 14:14:28,703 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@11244970{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/client.ear/jboss-seam.jar}
2009-05-14 14:14:28,703 INFO [main] org.jboss.ejb3.deployers.Ejb3DependenciesDeployer
Encountered deployment AbstractVFSDeploymentContext@11244970{vfszip:/C:/check/jboss-5.0.0.GA/server/default/deploy/client.ear/jboss-seam.jar}
2009-05-14 14:14:32,515 INFO [main] org.jboss.mx.remoting.service.JMXConnectorServerService
JMX Connector server: service:jmx:rmi://SIVA-LT/jndi/rmi://SIVA-LT:1090/jmxconnector
2009-05-14 14:14:32,656 INFO [main] org.jboss.mail.MailService
Mail Service bound to java:/Mail
2009-05-14 14:14:35,218 WARN [main] org.jboss.jms.server.jbosssx.JBossASSecurityMetadataStore
WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.
2009-05-14 14:14:35,250 WARN [main] org.jboss.annotation.factory.AnnotationCreator
No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
2009-05-14 14:14:35,437 INFO [main] com.arjuna.ats.jbossatx.jta.TransactionManagerService
JBossTS Transaction Service (JTA version) - JBoss Inc.
2009-05-14 14:14:35,437 INFO [main] com.arjuna.ats.jbossatx.jta.TransactionManagerService
Setting up property manager MBean and JMX layer
2009-05-14 14:14:35,656 DEBUG [main] com.arjuna.ats.arjuna.logging.arjLoggerI18N
[com.arjuna.ats.arjuna.recovery.TransactionStatusManager_1] - Starting service com.arjuna.ats.arjuna.recovery.ActionStatusService on port 4713
2009-05-14 14:14:35,671 DEBUG [main] com.arjuna.ats.arjuna.logging.arjLogger
Can anyone help me put with this ? Thanks in advance
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231021#4231021
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231021
17 years, 2 months
[EJB 3.0] - Re: Stateful bean keep-alive
by xmedeko
Hi Peter,
I have JB 5.0.1GA. My SFSB is declared with
@CacheConfig(maxSize = 10000, idleTimeoutSeconds = 60000, removalTimeoutSeconds = 60)
So, the SFSB is removed after 60 seconds of inactivity (for testing). I got the stub (proxy) for this SFSB in a plain old (standalone) Java application (POJA) via JNDI lookup.
When there's more then 60 sec. delay between calls to this bean from the application, then the bean is removed. What's the problem: I want the bean to be removed soon, when the application crashes (i.e. when no addShutdownHook was called), but I do not want to remove it, when the user keep the application open and makes no action. E.g. user goes to lunch or takes a nap.
I was thinking about making a thread in the client application, which will contact the bean in the specified interval (keep-alive calls). But then I have to make sure all calls to the bean are synchronised as well.
So I was thinking, that there must be more people having similar problem. So I am interested, if there's some existing solution in JBoss for this if I have to code it by myself.
Thanks
Andy
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231006#4231006
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231006
17 years, 2 months
[JBossWS] - Re: Tracing wsconsume
by angusm
Peter:
(this is going to be a little long :-))
| C:\Other\eclipseall\ws\hsi\mm7-client2\work>myrun
|
| C:\Other\eclipseall\ws\hsi\mm7-client2\work>myconsume -k -s ../src -o tmp mm7.wsdl
| "C:\Sun\AppServer\jdk\bin\java" -Djava.endorsed.dirs="C:/jboss/jboss-4.2.2.GA\lib\endorsed" -Dlog4j.configura
| tion=mylog4j.xml -classpath ";C:/Other/eclipseall/ws/hsi/mm7-client2/work;C:\Sun\AppServer\jdk/lib/tools.jar;C
| :/jboss/jboss-4.2.2.GA/client/activation.jar;C:/jboss/jboss-4.2.2.GA/client/getopt.jar;C:/jboss/jboss-4.2.2.GA
| /client/wstx.jar;C:/jboss/jboss-4.2.2.GA/client/jbossall-client.jar;C:/jboss/jboss-4.2.2.GA/client/log4j.jar;C
| :/jboss/jboss-4.2.2.GA/client/mail.jar;C:/jboss/jboss-4.2.2.GA/client/jbossws-spi.jar;C:/jboss/jboss-4.2.2.GA/
| client/jbossws-common.jar;C:/jboss/jboss-4.2.2.GA/client/jbossws-framework.jar;C:/jboss/jboss-4.2.2.GA/client/
| jaxws-tools.jar;C:/jboss/jboss-4.2.2.GA/client/jaxws-rt.jar;C:/jboss/jboss-4.2.2.GA/client/stax-api.jar;C:/jbo
| ss/jboss-4.2.2.GA/client/jaxb-api.jar;C:/jboss/jboss-4.2.2.GA/client/jaxb-impl.jar;C:/jboss/jboss-4.2.2.GA/cli
| ent/jaxb-xjc.jar;C:/jboss/jboss-4.2.2.GA/client/streambuffer.jar;C:/jboss/jboss-4.2.2.GA/client/stax-ex.jar;C:
| /jboss/jboss-4.2.2.GA/client/javassist.jar;C:/jboss/jboss-4.2.2.GA/client/jboss-xml-binding.jar;C:/jboss/jboss
| -4.2.2.GA/client/jbossws-native-client.jar;C:/jboss/jboss-4.2.2.GA/client/jbossws-native-core.jar;C:/jboss/jbo
| ss-4.2.2.GA/client/jbossws-native-jaxws.jar;C:/jboss/jboss-4.2.2.GA/client/jbossws-native-jaxws-ext.jar;C:/jbo
| ss/jboss-4.2.2.GA/client/jbossws-native-jaxrpc.jar;C:/jboss/jboss-4.2.2.GA/client/jbossws-native-saaj.jar" org
| .jboss.wsf.spi.tools.cmd.WSConsume -k -s ../src -o tmp mm7.wsdl
| parsing WSDL...
|
|
| generating code...
|
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\AddressCodingType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\AddressType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\AnyDataType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\CancelReqType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\CapabilitiesType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ChargedPartyType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ContentClassType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ContentReferenceType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\DeliverReqType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\DeliverRspType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\DeliveryConditionType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\DeliveryReportReqType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ExtendedcancelReqType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ExtendedcancelRspType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ExtendedcancelresponseStatusType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ExtendedreplaceReqType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ExtendedreplaceRspType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\GenericRSReqType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\GenericResponseType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\GenericVASPRequestType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MM7.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MM7Service.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MMStatusExtensionType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MessageClassType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MmDeliveryStatusType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MmReadStatusType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MultiAddressType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ObjectFactory.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\PreviouslySentByDateTime.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\PreviouslySentByType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\PriorityType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ReadReplyReqType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\RecipientsType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ReplaceReqType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ResponseStatusType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\SenderIDType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ServiceCodeType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\SubmitReqType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\SubmitRspType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\TransactionID.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\UserAgentDateTimeType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\UserAgentInfoType.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\package-info.java
| org\xmlsoap\schemas\soap\envelope\Body.java
| org\xmlsoap\schemas\soap\envelope\Detail.java
| org\xmlsoap\schemas\soap\envelope\Envelope.java
| org\xmlsoap\schemas\soap\envelope\Fault.java
| org\xmlsoap\schemas\soap\envelope\Header.java
| org\xmlsoap\schemas\soap\envelope\ObjectFactory.java
| org\xmlsoap\schemas\soap\envelope\package-info.java
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\runtime\ZeroOneBooleanAdapter.java
|
| compiling code...
|
| javac -d C:\Other\eclipseall\ws\hsi\mm7-client2\work\tmp -classpath ;C:/Other/eclipseall/ws/hsi/mm7-client2/wo
| rk;C:\Sun\AppServer\jdk/lib/tools.jar;C:/jboss/jboss-4.2.2.GA/client/activation.jar;C:/jboss/jboss-4.2.2.GA/cl
| ient/getopt.jar;C:/jboss/jboss-4.2.2.GA/client/wstx.jar;C:/jboss/jboss-4.2.2.GA/client/jbossall-client.jar;C:/
| jboss/jboss-4.2.2.GA/client/log4j.jar;C:/jboss/jboss-4.2.2.GA/client/mail.jar;C:/jboss/jboss-4.2.2.GA/client/j
| bossws-spi.jar;C:/jboss/jboss-4.2.2.GA/client/jbossws-common.jar;C:/jboss/jboss-4.2.2.GA/client/jbossws-framew
| ork.jar;C:/jboss/jboss-4.2.2.GA/client/jaxws-tools.jar;C:/jboss/jboss-4.2.2.GA/client/jaxws-rt.jar;C:/jboss/jb
| oss-4.2.2.GA/client/stax-api.jar;C:/jboss/jboss-4.2.2.GA/client/jaxb-api.jar;C:/jboss/jboss-4.2.2.GA/client/ja
| xb-impl.jar;C:/jboss/jboss-4.2.2.GA/client/jaxb-xjc.jar;C:/jboss/jboss-4.2.2.GA/client/streambuffer.jar;C:/jbo
| ss/jboss-4.2.2.GA/client/stax-ex.jar;C:/jboss/jboss-4.2.2.GA/client/javassist.jar;C:/jboss/jboss-4.2.2.GA/clie
| nt/jboss-xml-binding.jar;C:/jboss/jboss-4.2.2.GA/client/jbossws-native-client.jar;C:/jboss/jboss-4.2.2.GA/clie
| nt/jbossws-native-core.jar;C:/jboss/jboss-4.2.2.GA/client/jbossws-native-jaxws.jar;C:/jboss/jboss-4.2.2.GA/cli
| ent/jbossws-native-jaxws-ext.jar;C:/jboss/jboss-4.2.2.GA/client/jbossws-native-jaxrpc.jar;C:/jboss/jboss-4.2.2
| .GA/client/jbossws-native-saaj.jar -Xbootclasspath/p:C:\jboss\jboss-4.2.2.GA\client\jbossws-native-jaxws-ext.j
| ar;C:\jboss\jboss-4.2.2.GA\client\jaxb-api.jar C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ft
| p\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\AddressCodingType.java C:\Other\eclipseall\ws\hsi\mm7-
| client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\AddressType.java C:\Ot
| her\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_
| 1_4\AnyDataType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series
| \_23_140\schema\rel_6_mm7_1_4\CancelReqType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\
| ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\CapabilitiesType.java C:\Other\eclipseall\ws\hsi\mm7
| -client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ChargedPartyType.java
| C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_
| 6_mm7_1_4\ContentClassType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive
| \_23_series\_23_140\schema\rel_6_mm7_1_4\ContentReferenceType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work
| \..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\DeliverReqType.java C:\Other\eclip
| seall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\Deliv
| erRspType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_1
| 40\schema\rel_6_mm7_1_4\DeliveryConditionType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gp
| p\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\DeliveryReportReqType.java C:\Other\eclipseall\ws\
| hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\Extendedcancel
| ReqType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140
| \schema\rel_6_mm7_1_4\ExtendedcancelRspType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\
| ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ExtendedcancelresponseStatusType.java C:\Other\eclip
| seall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\Exten
| dedreplaceReqType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_seri
| es\_23_140\schema\rel_6_mm7_1_4\ExtendedreplaceRspType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src
| \org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\GenericRSReqType.java C:\Other\eclipseall
| \ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\GenericRes
| ponseType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_1
| 40\schema\rel_6_mm7_1_4\GenericVASPRequestType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3g
| pp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MM7.java C:\Other\eclipseall\ws\hsi\mm7-client2\w
| ork\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MM7Service.java C:\Other\eclips
| eall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MMStat
| usExtensionType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series
| \_23_140\schema\rel_6_mm7_1_4\MessageClassType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3g
| pp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MmDeliveryStatusType.java C:\Other\eclipseall\ws\
| hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\MmReadStatusTy
| pe.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\sche
| ma\rel_6_mm7_1_4\MultiAddressType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\
| archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ObjectFactory.java C:\Other\eclipseall\ws\hsi\mm7-client2\work
| \..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\PreviouslySentByDateTime.java C:\O
| ther\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7
| _1_4\PreviouslySentByType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\
| _23_series\_23_140\schema\rel_6_mm7_1_4\PriorityType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\o
| rg\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\ReadReplyReqType.java C:\Other\eclipseall\w
| s\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\RecipientsTy
| pe.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\sche
| ma\rel_6_mm7_1_4\ReplaceReqType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\ar
| chive\_23_series\_23_140\schema\rel_6_mm7_1_4\ResponseStatusType.java C:\Other\eclipseall\ws\hsi\mm7-client2\w
| ork\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\SenderIDType.java C:\Other\ecli
| pseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\Serv
| iceCodeType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23
| _140\schema\rel_6_mm7_1_4\SubmitReqType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\
| specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\SubmitRspType.java C:\Other\eclipseall\ws\hsi\mm7-client
| 2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\TransactionID.java C:\Other\
| eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\
| UserAgentDateTimeType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_
| series\_23_140\schema\rel_6_mm7_1_4\UserAgentInfoType.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\
| org\_3gpp\ftp\specs\archive\_23_series\_23_140\schema\rel_6_mm7_1_4\package-info.java C:\Other\eclipseall\ws\h
| si\mm7-client2\work\..\src\org\xmlsoap\schemas\soap\envelope\Body.java C:\Other\eclipseall\ws\hsi\mm7-client2\
| work\..\src\org\xmlsoap\schemas\soap\envelope\Detail.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\o
| rg\xmlsoap\schemas\soap\envelope\Envelope.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\xmlsoap\
| schemas\soap\envelope\Fault.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\xmlsoap\schemas\soap\e
| nvelope\Header.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\xmlsoap\schemas\soap\envelope\Objec
| tFactory.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\xmlsoap\schemas\soap\envelope\package-inf
| o.java C:\Other\eclipseall\ws\hsi\mm7-client2\work\..\src\org\_3gpp\ftp\specs\archive\_23_series\_23_140\schem
| a\rel_6_mm7_1_4\runtime\ZeroOneBooleanAdapter.java
|
| C:\Other\eclipseall\ws\hsi\mm7-client2\work>
| C:\Other\eclipseall\ws\hsi\mm7-client2\work>dir
| Le volume dans le lecteur C n'a pas de nom.
| Le numéro de série du volume est D095-6491
|
| Répertoire de C:\Other\eclipseall\ws\hsi\mm7-client2\work
|
| 14/05/2009 09:35 <REP> .
| 14/05/2009 09:35 <REP> ..
| 07/05/2009 09:14 78 Copy of myrun.bat
| 05/05/2009 09:39 1ÃÂ 897 mm7.wsdl
| 14/05/2009 09:32 2ÃÂ 905 myconsume.bat
| 07/05/2009 09:22 2ÃÂ 742 mylog4j.xml
| 14/05/2009 09:35 38 myrun.bat
| 04/05/2009 19:13 78 run-mm7-wsconsume.bat
| 04/05/2009 19:12 <REP> tmp
| 30/12/2008 15:08 2ÃÂ 796 wsconsume.bat
| 30/12/2008 15:05 2ÃÂ 895 wsprovide.bat
| 30/12/2008 15:05 3ÃÂ 036 wsrunclient.bat
| 30/12/2008 15:05 2ÃÂ 414 wstools.bat
| 10 fichier(s) 18ÃÂ 879 octets
| 3 Rép(s) 41à912à639à488 octets libres
<?xml version="1.0" encoding="UTF-8"?>
| <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
|
| <!-- ===================================================================== -->
| <!-- -->
| <!-- Log4j Configuration -->
| <!-- -->
| <!-- ===================================================================== -->
|
| <!-- $Id: log4j.xml,v 1.1 2007/07/25 13:19:52 bwalpole Exp $ -->
|
| <!--
| | For more configuration infromation and examples see the Jakarta Log4j
| | owebsite: http://jakarta.apache.org/log4j
| -->
|
| <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
|
|
|
| <!-- ============================== -->
| <!-- Append messages to the console -->
| <!-- ============================== -->
|
| <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
| <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
| <param name="Target" value="System.out"/>
| <param name="Threshold" value="TRACE"/>
|
| <layout class="org.apache.log4j.PatternLayout">
| <!-- The default pattern: Date Priority [Category] Message\n -->
| <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
| </layout>
| </appender>
|
|
| <appender name="FILE" class="org.jboss.logging.appender.DailyRollingFileAppender">
| <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
| <param name="File" value="C:/TempAm/wsconsume.log"/>
| <param name="Append" value="false"/>
|
| <!-- Rollover at midnight each day -->
| <param name="DatePattern" value="'.'yyyy-MM-dd"/>
|
| <!-- Rollover at the top of each hour
| <param name="DatePattern" value="'.'yyyy-MM-dd-HH"/>
| -->
|
| <layout class="org.apache.log4j.PatternLayout">
| <!-- The default pattern: Date Priority [Category] Message\n -->
| <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/>
|
| <!-- The full pattern: Date MS Priority [Category] (Thread:NDC) Message\n
| <param name="ConversionPattern" value="%d %-5r %-5p [%c] (%t:%x) %m%n"/>
| -->
| </layout>
| </appender>
|
|
| <category name="org">
| <priority value="TRACE" />
| </category>
|
| <category name="com">
| <priority value="INFO" />
| </category>
|
|
|
| <!-- ======================= -->
| <!-- Setup the Root category -->
| <!-- ======================= -->
|
| <root>
| <appender-ref ref="CONSOLE"/>
| <appender-ref ref="FILE"/>
| </root>
|
|
|
| </log4j:configuration>
|
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230996#4230996
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4230996
17 years, 2 months