[Installation, Configuration & DEPLOYMENT] - Re: receive mail from jboss automatically
by sentcs
Thanks for your reply.
I have tried log4j.xml in <jboss-hoe>/server/messaging/conf directory.But i am not able to find the proper configuration for SMTP appenders.here i pasted my log4j.xml configuration as below. If possible please find the misatake and let me know.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<!-- ===================================================================== -->
<!-- -->
<!-- Log4j Configuration -->
<!-- -->
<!-- ===================================================================== -->
<!-- $Id: log4j.xml,v 1.26.2.10 2006/04/21 17:29:20 csuconic Exp $ -->
<!--
| For more configuration infromation and examples see the Jakarta Log4j
| owebsite: http://jakarta.apache.org/log4j
-->
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
<!-- ================================= -->
<!-- Preserve messages in a local file -->
<!-- ================================= -->
<!-- A time/date based rolling appender -->
<!-- Rollover at midnight each day -->
<param name="DatePattern" value="'.'yyyy-MM-dd"/>
<!-- Rollover at the top of each hour
<param name="DatePattern" value="'.'yyyy-MM-dd-HH"/>
-->
<!-- The default pattern: Date Priority [Category] Message\n -->
<!-- The full pattern: Date MS Priority [Category] (Thread:NDC) Message\n
-->
<!-- A size based file rolling appender
-->
<!-- ============================== -->
<!-- Append messages to the console -->
<!-- ============================== -->
<!-- -->
<!-- The default pattern: Date Priority [Category] Message\n -->
<!-- ====================== -->
<!-- More Appender examples -->
<!-- ====================== -->
<!-- Buffer events and log them asynchronously
<appender-ref ref="FILE"/>
<appender-ref ref="CONSOLE"/>
<appender-ref ref="SMTP"/>
-->
<!-- EMail events to an administrator
-->
<!-- Syslog events
-->
<!-- Log events to JMS (requires a topic to be created)
-->
<!-- Log events through SNMP
-->
<!-- Emit events as JMX notifications
-->
<!-- ================ -->
<!-- Limit categories -->
<!-- ================ -->
<!-- Limit the org.apache category to INFO as its DEBUG is verbose -->
<!-- Limit the org.jboss.serial (jboss-serialization) to INFO as its DEBUG is verbose -->
<!-- Limit the org.jgroups category to WARN as its INFO is verbose -->
<!-- Limit the jacorb category to WARN as its INFO is verbose -->
<!-- Limit JBoss categories
-->
<!-- Limit the JSR77 categories -->
<!-- Limit Axis based webservice category -->
<!-- Limit JBossWS webservice category
-->
<!-- Decrease the priority threshold for the org.jboss.varia category
-->
<!-- Show the evolution of the DataSource pool in the logs [inUse/Available/Max]
-->
<!--
| An example of enabling the custom TRACE level priority that is used
| by the JBoss internals to diagnose low level details. This example
| turns on TRACE level msgs for the org.jboss.ejb.plugins package and its
| subpackages. This will produce A LOT of logging output.
-->
<!--
| Logs these events to SNMP:
- server starts/stops
- cluster evolution (node death/startup)
- When an EJB archive is deployed (and associated verified messages)
- When an EAR archive is deployed
<appender-ref ref="TRAP_LOG"/>
<appender-ref ref="TRAP_LOG"/>
<appender-ref ref="TRAP_LOG"/>
<appender-ref ref="TRAP_LOG"/>
<appender-ref ref="TRAP_LOG"/>
-->
<!-- ======================= -->
<!-- Setup the Root category -->
<!-- ======================= -->
<appender-ref ref="CONSOLE"/>
<appender-ref ref="SMTP"/>
<appender-ref ref="FILE"/>
<!-- Clustering logging -->
<!-- Uncomment the following to redirect the org.jgroups and
org.jboss.ha categories to a cluster.log file.
<appender-ref ref="CLUSTER"/>
<appender-ref ref="CLUSTER"/>
-->
</log4j:configuration>
<?xml version="1.0" encoding="windows-1250"?>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4157230#4157230
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4157230
17 years, 11 months
Delivery Status Notification (Failure)
by postmaster@lists.jboss.org
This is an automatically generated Delivery Status Notification.
Delivery to the following recipients failed.
direktor@localhost
17 years, 11 months
[JBoss jBPM] - upload file in a task ?
by secmask
hi all !
i have trouble when try to modify jbpm-console and task form define.
at first, i want to upload a file at a task and it' will show at the next task, i've searched this forum and many many in the google but not found any solution that can use.
all of my work as follow:
1- modify task.xhtml of jbpm-console, add attribute 'enctype="multipart/form-data".
2- in task form, add a file filed input as :
| <jbpm:datacell>
| <f:facet name="header">
| <h:outputText value="File:"/>
| </f:facet>
| <gd:inputFile target="#{stream}" maxSize="104857600"/>
| </jbpm:datacell>
| <jbpm:datacell>
| <f:facet name="header">
| <h:outputText value="Actions:"/>
| </f:facet>
| <tf:saveButton value="Save">
| </tf:saveButton>
| <h:commandButton value="upload">
| <j4j:doUploadFile archive="#{stream}" target="link" />
| <n:nav outcome="success" redirect="true" storeMessages="true"/>
| <n:nav outcome="error" redirect="true" storeMessages="true"/>
| </h:commandButton>
| </jbpm:datacell>
|
<j4j:doUploadFile archive="#{stream}" target="link" /> is my custom tag, it's similar to <j4j:deployProcess>
the problem that when i use "Save" button, it's only save other user input to process variables, upload file action listener is not called. Use "upload" button will only upload the file (it's good) but it does not save process variables. I want it do both of work (save process variables and upload the file) but don't know how to do it. i've try
| <tf:saveButton value="Save">
| <j4j:doUploadFile archive="#{stream}" target="link" />
| <n:nav outcome="success" redirect="true" storeMessages="true"/>
| <n:nav outcome="error" redirect="true" storeMessages="true"/>
| </tf:saveButton>
|
but is raise an exception (UITaskFormButtonBase:getEnclosingForm() catch NULL).
please help me ! any suggest.
thank very much.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4157208#4157208
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4157208
17 years, 11 months
[Clustering/JBoss] - Re: Remote cluster ejb access
by bstansberry@jboss.com
anonymous wrote :
| >2) Is the partition name for "remotehost1" different from the partition name >for the server making the call; e.g. the aren't both "DefaultPartition" or >something?
|
| The partition names are the same and they are both "DefaultPartition", maybe this is the problem ?
It's possible; worth changing one of them and seeing if that fixes it (and having different names is a good practice in general.)
Just start jboss including "-g SomePartitionName" in the startup command to change the name.
The HA-JNDI proxy has an optimization to try to route the call to a local server if it finds an HA-JNDI server associated with the same partition name in VM. That *might * be what's tripping you up.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4157203#4157203
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4157203
17 years, 11 months