[JBoss Seam] - Pageflow Configuration?
by connerjohn
I'm trying to follow the Number Guess example but can't seem to make pageflows work in an example applications. I took a shell from an application that I created earlier that works and added the pageflow configuration items. Any thoughts on what I'm missing.
components.xml
| <component class="org.jboss.seam.core.Jbpm">
| <property name="pageflowDefinitions">pageflow.jpdl.xml</property>
| </component>
|
facelets
page1.xhtml
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
| <ui:composition xmlns="http://www.w3.org/1999/xhtml"
| xmlns:ui="http://java.sun.com/jsf/facelets"
| xmlns:h="http://java.sun.com/jsf/html"
| xmlns:s="http://jboss.com/products/seam/taglib"
| template="/template.xhtml">
|
| <ui:define name="title">Page 1</ui:define>
| <ui:define name="caption">Page 1</ui:define>
| <ui:define name="content">
| <h:form>
| This is page 1<br />
| <h:commandButton type="submit" value="Goto Page 2" action="test2"/>
| <h:commandButton type="submit" value="Goto Page 3" action="test3"/>
| </h:form>
| </ui:define>
|
| </ui:composition>
|
page2.xhtml
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
| <ui:composition xmlns="http://www.w3.org/1999/xhtml"
| xmlns:ui="http://java.sun.com/jsf/facelets"
| xmlns:h="http://java.sun.com/jsf/html"
| xmlns:s="http://jboss.com/products/seam/taglib"
| template="/template.xhtml">
|
| <ui:define name="title">Page 2</ui:define>
| <ui:define name="caption">Page 2</ui:define>
| <ui:define name="content">
| <h:form>
| This is page 2<br />
| <h:commandButton type="submit" value="Goto Page 4" action="done"/>
| </h:form>
| </ui:define>
|
| </ui:composition>
|
action
| import javax.ejb.Stateful;
|
| import org.jboss.seam.ScopeType;
| import org.jboss.seam.annotations.Begin;
| import org.jboss.seam.annotations.Create;
| import org.jboss.seam.annotations.Name;
| import org.jboss.seam.annotations.Scope;
|
| import com.itsolut.core.utils.AppUtils;
|
| @Stateful
| @Name("processFlowNameAction")
| @Scope(ScopeType.CONVERSATION)
| public class Cart implements ICart {
|
| public Cart(){
| LOG.fatal("=========================");
| LOG.fatal("=== Cart ==========");
| LOG.fatal("=== conversation id["+org.jboss.seam.core.Manager.instance().getCurrentConversationId()+"] =");
| LOG.fatal("=========================");
| }
|
| @Create
| @Begin(pageflow="testflow")
| public void start(){
| LOG.fatal("=========================");
| LOG.fatal("=== start ==========");
| LOG.fatal("=== conversation id["+org.jboss.seam.core.Manager.instance().getCurrentConversationId()+"] =");
| LOG.fatal("=========================");
| }
|
| public void selectAddr(){
| LOG.fatal("=========================");
| LOG.fatal("=== selectAddr ==========");
| LOG.fatal("=== conversation id["+org.jboss.seam.core.Manager.instance().getCurrentConversationId()+"] =");
| AppUtils.LOG.fatal("=========================");
| }
|
| public void newAddr(){
| LOG.fatal("=========================");
| LOG.fatal("=== newAddr ==========");
| LOG.fatal("=== conversation id["+org.jboss.seam.core.Manager.instance().getCurrentConversationId()+"] =");
| LOG.fatal("=========================");
| }
|
| public void page2Action(){
| LOG.fatal("=========================");
| LOG.fatal("=== page2Action =========");
| LOG.fatal("=== conversation id["+org.jboss.seam.core.Manager.instance().getCurrentConversationId()+"] =");
| LOG.fatal("=========================");
| }
|
| public void page3Action(){
| LOG.fatal("=========================");
| LOG.fatal("=== page3Action =========");
| LOG.fatal("=== conversation id["+org.jboss.seam.core.Manager.instance().getCurrentConversationId()+"] =");
| LOG.fatal("=========================");
| }
| }
|
pageflow
| <pageflow-definition name="testflow">
|
| <start-page name="displayPageOne" view-id="/page1.xhtml">
| <redirect/>
| <transition name="test2" to="selectedAddr">
| <action expression="#{processFlowNameAction.selectAddr}" />
| </transition>
| <transition name="test3" to="newAddr">
| <action expression="#{processFlowNameAction.newAddr}" />
| </transition>
| </start-page>
|
| <page name="selectedAddr" view-id="/page2.xhtml">
| <transition name="done1" to="doneP">
| <action expression="#{processFlowNameAction.page2Action}" />
| </transition>
| </page>
|
| <page name="newAddr" view-id="/page3.xhtml">
| <transition name="done2" to="doneP">
| <action expression="#{processFlowNameAction.page3Action}" />
| </transition>
| </page>
|
| <page name="doneP" view-id="/page4.xhtml">
| <redirect/>
| <end-conversation />
| </page>
|
| </pageflow-definition>
|
When I navigate to http://localhost:9090/example-app/page1.seam the page1.xhtml is displayed; but I'm not in a page flow and the buttons will not work.
Here is what is in the log
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.contexts.Lifecycle] >>> Begin web request
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.manager
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.manager
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.core.Manager] No stored conversation
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.pageflow
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.pageflow
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.jsf.AbstractSeamPhaseListener] After restoring conversation context: ConversationContext(5)
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.jsf.AbstractSeamPhaseListener] committing transaction after phase: INVOKE_APPLICATION(5)
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.jsf.AbstractSeamPhaseListener] beginning transaction prior to phase: RENDER_RESPONSE(6)
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.Component] instantiating Seam component: facesMessages
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.Component] initializing new instance of: facesMessages
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: conversation
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.Component] instantiating Seam component: businessProcess
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.Component] initializing new instance of: businessProcess
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.Component] instantiating Seam component: conversation
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.Component] initializing new instance of: conversation
| 2006-08-02 16:13:54,406 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to Seam component
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.core.Manager] Discarding conversation state: 5
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Lifecycle] flushing page context
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.jsf.AbstractSeamPhaseListener] committing transaction after phase: RENDER_RESPONSE(6)
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Lifecycle] After render response, destroying contexts
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Lifecycle] destroying event context
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.manager
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: class org.apache.myfaces.shared_tomahawk.renderkit.html.util.JavascriptUtils.OLD_VIEW_ID
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.apache.myfaces.AddResourceFactory.CACHE_MAP_KEY
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.apache.myfaces.component.html.util.ExtensionFilter.doFilterCalled
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: facelets.Encoding
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.apache.myfaces.application.jsp.JspStateManagerImpl.SERIALIZED_VIEW
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.sun.facelets.legacy.ELCONTEXT
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Lifecycle] destroying conversation context
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: facesMessages
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: businessProcess
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: conversation
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.pageflow
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Lifecycle] flushing server-side conversation context
| 2006-08-02 16:13:54,421 DEBUG [org.jboss.seam.contexts.Lifecycle] <<< End web request
|
Any suggestions on what I'm missing.
Thanks,
-- JC
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962613#3962613
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3962613
18 years, 5 months
[Installation, Configuration & Deployment] - Re: javax.naming.NameNotFoundException
by ccc7919
I have only one jar file.
I grabed all JNDIView lists as below.
I hope this help you out to make my project work.
| Ejb Module: rpc.jar
|
| java:comp namespace of the Rogerspriceplan bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Account bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the StatusCode bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the StagingBlackberry bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the RegionCode bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
|
|
| java:comp namespace of the Sequence bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
|
|
| java:comp namespace of the Update bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the ChequeData bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
|
|
| java:comp namespace of the ManfDescription bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Undeliverable bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
|
|
| java:comp namespace of the RebateMailDate bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Province bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Precustomer bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the ValidateSubscriber bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Customer bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the PricePlan bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the ValidateSubplan bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Treo600DataPlan bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the PhoneCode bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Coupon bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the PromoCode bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Staging bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSession[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Note bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the CreditApplied bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceSessionLocal[link -> SequenceSessionLocal] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the ValidatorHelper bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- ${jndi.queue.order}[link -> queue/order] (class: javax.naming.LinkRef)
| | +- jdbc (class: org.jnp.interfaces.NamingContext)
| | | +- hunt[link -> java:/hunt] (class: javax.naming.LinkRef)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- RogerspriceplanLocal[link -> RogerspriceplanLocal] (class: javax.naming.LinkRef)
| | | +- ValidateSubscriberLocal[link -> ValidateSubscriberLocal] (class: javax.naming.LinkRef)
| | | +- StatusCodeLocal[link -> StatusCodeLocal] (class: javax.naming.LinkRef)
| | | +- PhoneCodeLocal[link -> PhoneCodeLocal] (class: javax.naming.LinkRef)
| | | +- Treo600DataPlanLocal[link -> Treo600DataPlanLocal] (class: javax.naming.LinkRef)
| | | +- RegionCodeLocal[link -> RegionCodeLocal] (class: javax.naming.LinkRef)
| | | +- ManfDescriptionLocal[link -> ManfDescriptionLocal] (class: javax.naming.LinkRef)
| | | +- PricePlanLocal[link -> PricePlanLocal] (class: javax.naming.LinkRef)
| | | +- StagingBlackberryLocal[link -> StagingBlackberryLocal] (class: javax.naming.LinkRef)
| | | +- ValidateSubplanLocal[link -> ValidateSubplanLocal] (class: javax.naming.LinkRef)
| | +- jms (class: org.jnp.interfaces.NamingContext)
| | | +- rpc (class: org.jnp.interfaces.NamingContext)
| | | | +- QueueConnectionFactory[link -> java:/ConnectionFactory] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the SequenceSession bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- blockSize (class: java.lang.Integer)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- SequenceLocal[link -> SequenceLocal] (class: javax.naming.LinkRef)
| | +- retryCount (class: java.lang.Integer)
|
|
| java:comp namespace of the Coupons bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- jdbc (class: org.jnp.interfaces.NamingContext)
| | | +- hunt[link -> java:/hunt] (class: javax.naming.LinkRef)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- CouponLocal[link -> CouponLocal] (class: javax.naming.LinkRef)
| | +- jms (class: org.jnp.interfaces.NamingContext)
| | | +- rpc (class: org.jnp.interfaces.NamingContext)
| | | | +- QueueConnectionFactory[link -> java:/ConnectionFactory] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Promotion bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- jdbc (class: org.jnp.interfaces.NamingContext)
| | | +- hunt[link -> java:/hunt] (class: javax.naming.LinkRef)
| | +- ejb (class: org.jnp.interfaces.NamingContext)
| | | +- UpdateLocal[link -> UpdateLocal] (class: javax.naming.LinkRef)
| | | +- AccountLocal[link -> AccountLocal] (class: javax.naming.LinkRef)
| | | +- RebateMailDateLocal[link -> RebateMailDateLocal] (class: javax.naming.LinkRef)
| | | +- NoteLocal[link -> NoteLocal] (class: javax.naming.LinkRef)
| | | +- PromoCodeLocal[link -> PromoCodeLocal] (class: javax.naming.LinkRef)
| | | +- PhoneCodeLocal[link -> PhoneCodeLocal] (class: javax.naming.LinkRef)
| | | +- StagingLocal[link -> StagingLocal] (class: javax.naming.LinkRef)
| | | +- UndeliverableLocal[link -> UndeliverableLocal] (class: javax.naming.LinkRef)
| | | +- CustomerLocal[link -> CustomerLocal] (class: javax.naming.LinkRef)
| | | +- CreditAppliedLocal[link -> CreditAppliedLocal] (class: javax.naming.LinkRef)
| | | +- PrecustomerLocal[link -> PrecustomerLocal] (class: javax.naming.LinkRef)
| | | +- ChequeDataLocal[link -> ChequeDataLocal] (class: javax.naming.LinkRef)
| | | +- ValidatorHelperLocal[link -> ValidatorHelperLocal] (class: javax.naming.LinkRef)
| | +- jms (class: org.jnp.interfaces.NamingContext)
| | | +- queue (class: org.jnp.interfaces.NamingContext)
| | | | +- rpc (class: org.jnp.interfaces.NamingContext)
| | | | | +- mail[link -> queue/mail] (class: javax.naming.LinkRef)
| | | +- rpc (class: org.jnp.interfaces.NamingContext)
| | | | +- QueueConnectionFactory[link -> java:/ConnectionFactory] (class: javax.naming.LinkRef)
|
|
| java:comp namespace of the Mailer bean:
|
| +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl)
| +- ORB (class: org.jacorb.orb.ORB)
| +- env (class: org.jnp.interfaces.NamingContext)
| | +- mail (class: org.jnp.interfaces.NamingContext)
| | | +- rpc (class: org.jnp.interfaces.NamingContext)
| | | | +- MailSession[link -> java:/Mail] (class: javax.naming.LinkRef)
|
|
| java: Namespace
|
| +- jaas (class: javax.naming.Context)
| | +- HsqlDbRealm (class: org.jboss.security.plugins.SecurityDomainContext)
| | +- jbossmq (class: org.jboss.security.plugins.SecurityDomainContext)
| | +- JmsXARealm (class: org.jboss.security.plugins.SecurityDomainContext)
| +- TransactionPropagationContextImporter (class: org.jboss.tm.TransactionPropagationContextImporter)
| +- JmsXA (class: org.jboss.resource.adapter.jms.JmsConnectionFactoryImpl)
| +- JBossCorbaNaming (class: org.omg.CosNaming.NamingContextExt)
| +- hunt (class: org.jboss.resource.adapter.jdbc.WrapperDataSource)
| +- DefaultDS (class: org.jboss.resource.adapter.jdbc.WrapperDataSource)
| +- StdJMSPool (class: org.jboss.jms.asf.StdServerSessionPoolFactory)
| +- TransactionManager (class: org.jboss.tm.TxManager)
| +- JBossCorbaPOA (class: org.omg.PortableServer.POA)
| +- TransactionPropagationContextExporter (class: org.jboss.tm.TransactionPropagationContextFactory)
| +- ConnectionFactory (class: org.jboss.mq.SpyConnectionFactory)
| +- DefaultJMSProvider (class: org.jboss.jms.jndi.JNDIProviderAdapter)
| +- XAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory)
| +- JBossCorbaInterfaceRepositoryPOA (class: org.omg.PortableServer.POA)
| +- Mail (class: javax.mail.Session)
| +- JBossCorbaORB (class: org.omg.CORBA.ORB)
| +- timedCacheFactory (class: javax.naming.Context)
| Failed to lookup: timedCacheFactory, errmsg=null
| +- SecurityProxyFactory (class: org.jboss.security.SubjectSecurityProxyFactory)
| +- comp (class: javax.naming.Context)
|
|
| Global JNDI Namespace
|
| +- ChequeDataLocal (proxy: $Proxy96 implements interface rpc.domain.subscriber.interfaces.ChequeDataLocalHome)
| +- RegionCodeLocal (proxy: $Proxy93 implements interface rpc.domain.reference.interfaces.RegionCodeLocalHome)
| +- ValidateSubscriberLocal (proxy: $Proxy102 implements interface rpc.domain.subscriber.interfaces.ValidateSubscriberLocalHome)
| +- PricePlanLocal (proxy: $Proxy104 implements interface rpc.domain.reference.interfaces.PricePlanLocalHome)
| +- QueueConnectionFactory (class: org.jboss.naming.LinkRefPair)
| +- HAPartition (class: org.jnp.interfaces.NamingContext)
| | +- DefaultPartition (class: org.jboss.ha.framework.server.HAPartitionImpl)
| +- CreditAppliedLocal (proxy: $Proxy112 implements interface rpc.domain.subscriber.interfaces.CreditAppliedLocalHome)
| +- ManfDescriptionLocal (proxy: $Proxy97 implements interface rpc.domain.reference.interfaces.ManfDescriptionLocalHome)
| +- ValidateSubplanLocal (proxy: $Proxy105 implements interface rpc.domain.subscriber.interfaces.ValidateSubplanLocalHome)
| +- XAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory)
| +- queue (class: org.jnp.interfaces.NamingContext)
| | +- A (class: org.jboss.mq.SpyQueue)
| | +- testQueue (class: org.jboss.mq.SpyQueue)
| | +- mail (class: org.jboss.mq.SpyQueue)
| | +- ex (class: org.jboss.mq.SpyQueue)
| | +- DLQ (class: org.jboss.mq.SpyQueue)
| | +- D (class: org.jboss.mq.SpyQueue)
| | +- C (class: org.jboss.mq.SpyQueue)
| | +- B (class: org.jboss.mq.SpyQueue)
| +- PhoneCodeLocal (proxy: $Proxy107 implements interface rpc.domain.reference.interfaces.PhoneCodeLocalHome)
| +- Treo600DataPlanLocal (proxy: $Proxy106 implements interface rpc.domain.subscriber.interfaces.Treo600DataPlanLocalHome)
| +- UUIDKeyGeneratorFactory (class: org.jboss.ejb.plugins.keygenerator.uuid.UUIDKeyGeneratorFactory)
| +- HiLoKeyGeneratorFactory (class: org.jboss.ejb.plugins.keygenerator.hilo.HiLoKeyGeneratorFactory)
| +- StagingBlackberryLocal (proxy: $Proxy92 implements interface rpc.domain.subscriber.interfaces.StagingBlackberryLocalHome)
| +- UIL2ConnectionFactory[link -> ConnectionFactory] (class: javax.naming.LinkRef)
| +- UserTransactionSessionFactory (proxy: $Proxy52 implements interface org.jboss.tm.usertx.interfaces.UserTransactionSessionFactory)
| +- CouponsLocal (proxy: $Proxy115 implements interface rpc.services.promotion.interfaces.CouponsLocalHome)
| +- UILXAConnectionFactory[link -> XAConnectionFactory] (class: javax.naming.LinkRef)
| +- PrecustomerLocal (proxy: $Proxy101 implements interface rpc.domain.subscriber.interfaces.PrecustomerLocalHome)
| +- UndeliverableLocal (proxy: $Proxy98 implements interface rpc.domain.reference.interfaces.UndeliverableLocalHome)
| +- CouponLocal (proxy: $Proxy108 implements interface rpc.domain.coupon.interfaces.CouponLocalHome)
| +- console (class: org.jnp.interfaces.NamingContext)
| | +- PluginManager (proxy: $Proxy44 implements interface org.jboss.console.manager.PluginManagerMBean)
| +- UpdateLocal (proxy: $Proxy95 implements interface rpc.domain.subscriber.interfaces.UpdateLocalHome)
| +- HTTPXAConnectionFactory (class: org.jboss.mq.SpyXAConnectionFactory)
| +- ValidatorHelperLocal (proxy: $Proxy113 implements interface rpc.services.promotion.interfaces.ValidatorHelperLocalHome)
| +- topic (class: org.jnp.interfaces.NamingContext)
| | +- testDurableTopic (class: org.jboss.mq.SpyTopic)
| | +- testTopic (class: org.jboss.mq.SpyTopic)
| | +- securedTopic (class: org.jboss.mq.SpyTopic)
| +- StagingLocal (proxy: $Proxy110 implements interface rpc.domain.staging.interfaces.StagingLocalHome)
| +- SequenceSessionLocal (proxy: $Proxy114 implements interface rpc.util.uidgen.interfaces.SequenceSessionLocalHome)
| +- RogerspriceplanLocal (proxy: $Proxy89 implements interface rpc.domain.reference.interfaces.RogerspriceplanLocalHome)
| +- RebateMailDateLocal (proxy: $Proxy99 implements interface rpc.domain.subscriber.interfaces.RebateMailDateLocalHome)
| +- ProvinceLocal (proxy: $Proxy100 implements interface rpc.domain.reference.interfaces.ProvinceLocalHome)
| +- UserTransaction (class: org.jboss.tm.usertx.client.ClientUserTransaction)
| +- HTTPConnectionFactory (class: org.jboss.mq.SpyConnectionFactory)
| +- CustomerLocal (proxy: $Proxy103 implements interface rpc.domain.subscriber.interfaces.CustomerLocalHome)
| +- SequenceLocal (proxy: $Proxy94 implements interface rpc.util.uidgen.interfaces.SequenceLocalHome)
| +- HASessionState (class: org.jnp.interfaces.NamingContext)
| | +- Default (class: org.jboss.ha.hasessionstate.server.HASessionStateImpl)
| +- UIL2XAConnectionFactory[link -> XAConnectionFactory] (class: javax.naming.LinkRef)
| +- NoteLocal (proxy: $Proxy111 implements interface rpc.domain.subscriber.interfaces.NoteLocalHome)
| +- PromoCodeLocal (proxy: $Proxy109 implements interface rpc.domain.reference.interfaces.PromoCodeLocalHome)
| +- invokers (class: org.jnp.interfaces.NamingContext)
| | +- Charlie_Cha (class: org.jnp.interfaces.NamingContext)
| | | +- iiop (class: org.jboss.invocation.iiop.IIOPInvoker)
| +- EventDispatcher (class: org.jboss.ws.eventing.mgmt.DispatcherDelegate)
| +- UILConnectionFactory[link -> ConnectionFactory] (class: javax.naming.LinkRef)
| +- jmx (class: org.jnp.interfaces.NamingContext)
| | +- invoker (class: org.jnp.interfaces.NamingContext)
| | | +- RMIAdaptor (proxy: $Proxy43 implements interface org.jboss.jmx.adaptor.rmi.RMIAdaptor,interface org.jboss.jmx.adaptor.rmi.RMIAdaptorExt)
| | +- rmi (class: org.jnp.interfaces.NamingContext)
| | | +- RMIAdaptor[link -> jmx/invoker/RMIAdaptor] (class: javax.naming.LinkRef)
| +- PromotionLocal (proxy: $Proxy116 implements interface rpc.services.promotion.interfaces.PromotionLocalHome)
| +- AccountLocal (proxy: $Proxy90 implements interface rpc.domain.signon.interfaces.AccountLocalHome)
| +- ConnectionFactory (class: org.jboss.mq.SpyConnectionFactory)
| +- TopicConnectionFactory (class: org.jboss.naming.LinkRefPair)
| +- StatusCodeLocal (proxy: $Proxy91 implements interface rpc.domain.reference.interfaces.StatusCodeLocalHome)
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962608#3962608
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3962608
18 years, 5 months