[jboss-user] [EJB] - Re: Transaction and EJB3 Singleton

2009-12-09 Thread sandello
Thx. The problem was solved after installing ejb3 plugin v.1.0.19 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4269787#4269787 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4269787 _

[jboss-user] [EJB] - Transaction and EJB3 Singleton

2009-12-08 Thread sandello
I have a ejb3 project with managed singleton: | @Service (name = ProfileStateMachine.NAME, objectName = "vis:service=StateMachine") | @Management (IMainStateMachine.class) | @Remote (ProfileStateMachine.class) | public class MainStateMachine implements IMainStateMachine, ProfileStateMach

[jboss-user] [JBoss Portal] - Re: Integrate Jboss Portal 2.7 with existing CAS

2009-06-11 Thread sandello
Hi. You are right. The problem is in SSL sertificate. I have add my CA cert to $JAVA_HOME/jre/lib/security/cacerts and the problem is solved. Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4236914#4236914 Reply to the post : http://www.jboss.org/ind

[jboss-user] [JBoss Portal] - Integrate Jboss Portal 2.7 with existing CAS

2009-06-10 Thread sandello
Hello. How is it to integrate JBoss Portal with existing CAS? I uncommented corresponding valve in jboss-portal.sar/portal-server.war/WEB-INF and wrote real CAS addresses to the elements "casLogin","casLogout","casValidate". I think, all documentation about this integration consist a error: the

[jboss-user] [JNDI/Naming/Network] - Re: lookup EJB3-beans on JBoss from Eclipse RAP

2008-11-10 Thread sandello
Why I need to set SecurityManager for accessing to DocTypeManager and don't need - for AbonentServer? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4188103#4188103 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4188103

[jboss-user] [JNDI/Naming/Network] - lookup EJB3-beans on JBoss from Eclipse RAP

2008-11-10 Thread sandello
I have a project consists two parts: RAP-based web UI part and EJB3-server part. Second path consists 23 EJB3-application. All works fine. The UI-part successfully interact with server-part. Now I need to add some functionality which interact with other ejb3 application on the same server. I creat

[jboss-user] [Security & JAAS/JBoss] - Eclipse RAP application and JBoss JAAS

2008-05-19 Thread sandello
Hi, I have a project consists two parts: ejb3-server part and RAP-client. Both parts are deployed in JBoss 4.2.1. I need to implement Authentication and Authorization in the project. I do this: 1. add this to web.xml in RAP client war-file | | | MyProject | /* |

[jboss-user] [JBoss AOP] - Re: Aspect based logger for EJB3 project

2008-05-15 Thread sandello
anonymous wrote : | anonymous wrote : | | Caused by: java.lang.NullPointerException | | at com.telecom_m.util.log.AspectLogger.invoke(AspectLogger.java:36) | | | I cannot tell which line that is from your post. Thanks, I have fixed this bug. Now, exception occurs in JBoss when

[jboss-user] [JBoss AOP] - Re: Aspect based logger for EJB3 project

2008-05-15 Thread sandello
I need to get simple way to get TRACE log of all my methods invocation. How I can do this without modify methods source? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4150964#4150964 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[jboss-user] [JBoss AOP] - Aspect based logger for EJB3 project

2008-05-15 Thread sandello
I have a project, which use EJB3 Session Beans, EJB3 Persistense, JMX and Eclipse RAP. Now, I have written simple aspect. It should create TRACE log of all method invocation. But, I have got exception after start JBoss with my project and aspect logger. JBoss 4.2.1 JbossAOP 1.5.5 OS Fedora jav

[jboss-user] [JBoss AOP] - Aspect instance and contexts in JbossAS

2007-11-19 Thread sandello
Where I can read about relation between aspect instance and contexts (JNDI, Security, Transaction, etc) in JBossAS ? For example. There are Stateless EJB: | @Stateless | public class A implements B{ | ... | } | and aspect: | public class AAspect{ | @Bind (pointcut = "execution

[jboss-user] [JBossWS] - MS Soap toolkit and Jboss are understanding wsdl differently

2007-06-20 Thread sandello
MS Soap client sends a message to JBossWS Server looks like | | http://www.w3.org/2001/XMLSchema"; | xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance"; | xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/"; | xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";>

[jboss-user] [JBossWS] - Re: cannot call jboss ws from MS SOAP SDK

2007-06-18 Thread sandello
I think, this is the bug. I have posted it to the Jira http://jira.jboss.com/jira/browse/JBWS-1712 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055461#4055461 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055461

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2007-04-20 Thread sandello
What I should do to connect some public webservice in the Internet (like http://www.webservicex.net/WCF/ServiceDetails.aspx?SID=48)? I create small client method: | @Test | public void weather() { | QName serviceQName = new QName("http://www.webserviceX.NET";, "GlobalWeather"); |

[jboss-user] [JBoss AOP] - Unable to resolve pointcut reference

2006-09-12 Thread sandello
My aspect: | package com.company.cms; | | @Aspect(scope=Scope.PER_INSTANCE) | public class ChangesReporterAspect { | private Logger debugger=Logger.getLogger(ChangesReporterAspect.class); | | private JmsRepoter reporter; | | @PointcutDef( | "execution(* $instance

[jboss-user] [Installation, Configuration & Deployment] - deploying application's modules in required order

2006-09-12 Thread sandello
My application consists of a set of files (*.jar,*.ejb3, *.aop, *-service.xml). Is there way to deploy these files in required order diffrent than coupling them to "ear"? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970971#3970971 Reply to the post : http

[jboss-user] [JBoss AOP] - deploying aspectized application

2006-09-11 Thread sandello
Is there way to deploy aspectized aop-application (without *-aop.xml) to JbossAS-4.0.4GA? I wrote some aop-application with annotation only and can't deploy it to JBossAS. If I rename application.jar -> application.aop Jboss throws exception "no *-aop.xml found". View the original post : ht