[EJB/JBoss] - Accessing a remote bean via SSL
by Roulf
Hello,
I am currently running JBoss 4.2.0GA and am attempting set up an SSLSocket for my client to access beans through. I have attempted to use examples from the 4.0.4GA SSL tutorial and from the manual on Transports, but to no avail (excessive amount of errors, I am assuming it is due to the newer version of JBoss & Remoting). Can anyone point me in the right direction for a working SSL Tutorial for JBoss 4.2.0GA or some example code to help me get this running?
Thanks!
PS. For reference, here is the main bit of code that I tried to use:
<mbean code="org.jboss.remoting.transport.Connector"
| name="jboss.remoting:type=Connector,transport=socket3843,handler=ejb3">
| <depends>jboss.aop:service=AspectDeployer</depends>
| <attribute name="InvokerLocator">sslsocket://0.0.0.0:3843</attribute>
| <attribute name="Configuration">
| <handlers>
| <handler subsystem="AOP">org.jboss.aspects.remoting.AOPRemotingInvocationHandler</handler>
| </handlers>
| </attribute>
| </mbean>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067539#4067539
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067539
18Â years, 9Â months
[JBoss Seam] - Re: Validation and selectOneMenu question
by Sammy8306
1. Well, that would be a solution (although it is semantically different from what I really want)
2. The corresponding code:
| <a:region>
| <a:outputPanel id="<% !a_id %>">
| <a:repeat var="listvar" value="<% !binding %>">
| <h:outputText value="#{listvar} "/>
| <a:commandButton ajaxSingle="true" value="Delete" reRender="<% !a_id %>" action="#{<% !a_remove %>}"/>
| <br />
| </a:repeat>
| </a:outputPanel>
| <br />
| <s:decorate>
| <h:selectOneMenu id="<% !ident %>" value="#{dev.nulll}" valueChangeListener="#{<% !a_listener %>}">
| <s:selectItems var="field" label="#{field.toString}" value="#{<% <all-concept> type %>}" noSelectionLabel="Please select : " />
| <s:convertEntity/>
| <a:support event="onchange" reRender="<% !a_id %>" bypassUpdates="true" />
| </h:selectOneMenu>
| </s:decorate>
| </a:region><%
|
(Never mind the weird <% %> holes in the XML, this is due to this being a template in generative setting, the gist of it is clear I think)
All I know is that the a:repeat gets re-rendered fine, and it is in the same outputPanel as the selectOneMenu. I confirmed that the 'dev.nulll' method gets called when the rerender happens (so the actual value of the selectOneMenu is requested), it just isn't reflected in the page...
Thanks,
Sander
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067534#4067534
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067534
18Â years, 9Â months