[JBoss Seam] - seam 1.2.1GA - belowField / description facet
by tynor
I'm trying to add a belowField facet, but it is not being displayed on my form.
Google shows that Seam 2.0 may have changed this to be called "description", but the 1.2.1 docs still document belowField. I've tried both -- neither displays on my form (and I see nothing in the generated HTML). Can anyone help me spot an error here?
| <s:decorate id="naicsCodeDecoration" template="/layout/edit.xhtml">
| <ui:define name="label">naicsCode</ui:define>
| <h:inputText id="naicsCode"
| size="50"
| maxlength="50"
| value="#{clientHome.instance.naicsCode}">
| <a:support event="onblur" reRender="naicsCodeDecoration"/>
| </h:inputText>
| <f:facet name="belowField">Does belowField Display?</f:facet>
| <f:facet name="description">Does description Display?</f:facet>
| </s:decorate>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063741#4063741
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063741
19Â years
[JBossWS] - Re: consume WS error after update to JBossWS 2.0
by gryffin
I have a similar problem. ( Running 4.0.5 with JBossWS2.0.0-native.GA. ) When I remove these two jars from my path, my client won't get out of first gear. It complains of missing xerces libraries.
| Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/xerces/xs/
| XSModel
| at org.jboss.ws.metadata.builder.jaxws.JAXWSClientMetaDataBuilder.buildMetaData
| (JAXWSClientMetaDataBuilder.java:81)
| at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.<init>(ServiceDelegateImpl.j
| ava:131)
| at org.jboss.ws.core.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.
| java:61)
| at javax.xml.ws.Service.<init>(Service.java:83)
| at com.boeing.nmt.client.ws.NetworkLocationService.<init>(NetworkLocationServic
| e.java:45)
| at com.boeing.nmt.client.ws.NLSClient.main(NLSClient.java:23)
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063739#4063739
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063739
19Â years
[JCA/JBoss] - Re: Passing current user identity to the back-end database
by sztank
I catch the policy question-answer thing, thanks:-) Good to hear that I'm step further.
"adrian(a)jboss.org" wrote :
| You don't have a default user/password for such contexts..
|
Where can I set default user/password that can be used during deployment? In the datasource file:
| <datasources>
| <local-tx-datasource>
| <jndi-name>dbtestDatasource</jndi-name>
| <connection-url>jdbc:postgresql:dbtest</connection-url>
| <driver-class>org.postgresql.Driver</driver-class>
| <security-domain>testdbRealm</security-domain>
| <user-name>deployment_usr</user-name>
| <password>deployment_pwd</password>
| </local-tx-datasource>
| </datasources>
|
What about the name/password from the application-policy it can't be used in the deployment context?
| <application-policy name = "testdbRealm">
| <authentication>
| <login-module code = "org.jboss.resource.security.CallerIdentityLoginModule" flag = "required">
| <module-option name = "userName">dumy</module-option>
| <module-option name = "password">dumy_pwd</module-option>
| <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=dbtestDatasource</module-option>
| </login-module>
| </authentication>
| </application-policy>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063737#4063737
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4063737
19Â years