Automatically rejected mail
by Mail Delivery Subsystem
Your message was automatically rejected by Dovecot Mail Delivery Agent.
The following reason was given:
Quota exceeded
17 years, 10 months
[Beginners Corner] - Re: Web folder
by fablux
Hi PeterJ, this is my "server.xml":
| <Server>
|
|
| <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
|
| <Listener className="org.apache.catalina.core.JasperListener" />
|
| <Service name="jboss.web">
|
| <Connector port="8080" address="${jboss.bind.address}"
| maxThreads="250" maxHttpHeaderSize="8192"
| emptySessionPath="true" protocol="HTTP/1.1"
| enableLookups="false" redirectPort="8443" acceptCount="100"
| connectionTimeout="20000" disableUploadTimeout="true" />
|
| <Connector port="8009" address="${jboss.bind.address}" protocol="AJP/1.3"
| emptySessionPath="true" enableLookups="false" redirectPort="8443" />
|
| <Engine name="jboss.web" defaultHost="localhost">
|
| <Realm className="org.jboss.web.tomcat.security.JBossSecurityMgrRealm"
| certificatePrincipal="org.jboss.security.auth.certs.SubjectDNMapping"
| allRolesMode="authOnly"
| />
|
| <Host name="localhost"
| autoDeploy="false" deployOnStartup="false" deployXML="false"
| configClass="org.jboss.web.tomcat.security.config.JBossContextConfig"
| >
|
|
|
|
| <Valve className="org.jboss.web.tomcat.service.jca.CachedConnectionValve"
| cachedConnectionManagerObjectName="jboss.jca:service=CachedConnectionManager"
| transactionManagerObjectName="jboss:service=TransactionManager" />
|
|
| <!-- ADD static DIRECTORY -->
| <Context path="/registroweb"
| docBase="C:/registroweb" debug="99"
| reloadable="true" >
| </Context>
|
|
| </Host>
|
| </Engine>
|
| </Service>
|
| </Server>
|
I've tried this file on JBoss4.0.3, but in the jbossweb-tomcat55.sar folder, and it worked!!!
Thank you, again!!!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4159193#4159193
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4159193
17 years, 10 months
[JBoss Tools (users)] - Re: Cannot deploy a recently created Seam Web Project into J
by vitorsouzabr
"max.andersen(a)jboss.com" wrote : where are you seeing the startupServletContextListener ? afaik we dont add it in seam projects.
It's in web.xml. This is the web.xml that was generated. Look under <!-- MyFaces -->:
<?xml version="1.0" ?>
| <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
| xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
| version="2.4">
|
| <!-- Ajax4jsf (must come first!) -->
|
| <filter>
| <display-name>Ajax4jsf Filter</display-name>
| <filter-name>ajax4jsf</filter-name>
| <filter-class>org.ajax4jsf.Filter</filter-class>
| </filter>
|
| <filter-mapping>
| <filter-name>ajax4jsf</filter-name>
| <url-pattern>*.seam</url-pattern>
| </filter-mapping>
|
| <context-param>
| <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
| <param-value>org.jboss.seam.ui.facelet.SeamFaceletViewHandler</param-value>
| </context-param>
|
| <context-param>
| <param-name>org.ajax4jsf.SKIN</param-name>
| <param-value>blueSky</param-value>
| </context-param>
|
| <!-- Seam -->
|
| <listener>
| <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
| </listener>
|
| <filter>
| <filter-name>Seam Filter</filter-name>
| <filter-class>org.jboss.seam.web.SeamFilter</filter-class>
| </filter>
|
| <filter-mapping>
| <filter-name>Seam Filter</filter-name>
| <url-pattern>/*</url-pattern>
| </filter-mapping>
|
| <servlet>
| <servlet-name>Seam Resource Servlet</servlet-name>
| <servlet-class>org.jboss.seam.servlet.ResourceServlet</servlet-class>
| </servlet>
|
| <servlet-mapping>
| <servlet-name>Seam Resource Servlet</servlet-name>
| <url-pattern>/seam/resource/*</url-pattern>
| </servlet-mapping>
|
| <!-- MyFaces -->
|
| <listener>
| <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
| </listener>
|
| <!-- Facelets development mode (disable in production) -->
|
| <context-param>
| <param-name>facelets.DEVELOPMENT</param-name>
| <param-value>true</param-value>
| </context-param>
|
| <!-- JSF -->
|
| <context-param>
| <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
| <param-value>client</param-value>
| </context-param>
|
| <context-param>
| <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
| <param-value>.xhtml</param-value>
| </context-param>
|
| <servlet>
| <servlet-name>Faces Servlet</servlet-name>
| <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
| <load-on-startup>1</load-on-startup>
| </servlet>
|
| <servlet-mapping>
| <servlet-name>Faces Servlet</servlet-name>
| <url-pattern>*.seam</url-pattern>
| </servlet-mapping>
|
| <security-constraint>
| <display-name>Restrict raw XHTML Documents</display-name>
| <web-resource-collection>
| <web-resource-name>XHTML</web-resource-name>
| <url-pattern>*.xhtml</url-pattern>
| </web-resource-collection>
| <auth-constraint>
| <role-name>NONE</role-name>
| </auth-constraint>
| </security-constraint>
|
| </web-app>
|
"max.andersen(a)jboss.com" wrote : I never see jboss 4.2 wait ? I would love if it did thought - report it in jira ;;;)
It did a couple of times... :)
Vitor
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4159191#4159191
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4159191
17 years, 10 months
[Microcontainer] - How to expose attribute object as JMX
by timfox
Hi-
I have an object MessagingServer which is instantiate by the MC and declared in our jbm-beans.xml file.
This object has an attribute MessagingServerManagement which is itself an interface that provides the management interface of the messaging server.
That interface contains a set of operations, e.g.
| interface MessagingServerManagement
| {
| void foo();
| void bar();
| }
|
I want the MC to automatically expose those management operations as JMX operations.
I know how to do this in the case the actual MessagingServerManagement is declared as a top level bean in its own right. (I.e. with @org.jboss.aop.microcontainer.aspects.jmx.JMX(name="jboss.messaging:service=JMSServerManager",exposedInterface=org.jboss.messaging.jms.server.JMSServerManager.class))
But in this case the interface I want to expose is an attribute of a bean, not a top level bean.
Any ideas how to do this?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4159187#4159187
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4159187
17 years, 10 months