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
[JBoss Messaging] - Best practice for scheduled message processing
by PitPalme
Hello,
I have a whole bunch of data to be processed. This data is generated by a Stateless Session Bean which "evaluates" a lot of records from a database.
I now need to process the results asynchronously and parallel; This is kind of batch job.
So I though "Just send the results, one by one, via JMS to a MDB. Done."
But: As this is similar to a classical batch there now arised the necessity to only process messages at night for not having to much performance impact on the server during working hours.
One solution would be to just "prepare" as much data as the server is capable to deal with during "off hours". But this does not scale nor is flexible enough.
So what I'd like to do it to "schedule" delivery of messages from the JMS-queue to it's subscriber (MDB) so I can pump all preprocessed data to the Queue and just "halt" delivery during working time. The queue nevertheless should ideally be open to still receive more messages and queue them as well.
So my question is: is there any chance to get this done within JEE/JBoss?
Thanks a lot for any help, links to previous topics appreciated, if I'm not the first with this desire (and just was to stupid to search correctly) :-)
--
Regards,
P.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171282#4171282
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171282
17 years, 10 months
Returned mail: see transcript for details
by Bounced mail
This message was not delivered due to the following reason(s):
Your message was not delivered because the destination computer was
not reachable within the allowed queue period. The amount of time
a message is queued before it is returned depends on local configura-
tion parameters.
Most likely there is a network problem that prevented delivery, but
it is also possible that the computer is turned off, or does not
have a mail system running right now.
Your message could not be delivered within 8 days:
Mail server 89.139.35.134 is not responding.
The following recipients could not receive this message:
<jboss-user(a)lists.jboss.org>
Please reply to postmaster(a)lists.jboss.org
if you feel this message to be in error.
17 years, 10 months
[JBossWS] - SimpleDeserializer error on returning complex type
by jaki
Hi,
I have exposed a stateless ejb3 bean as a WS and it has a method returning a complex type.
Signature:
@WebMethod
| public MapBean getMap(String test)
The class MapBean just has 2 string members along with their getters/setters.
I'm using an axis WS client for it (using the Call interface) but invoking the Web service gives me the below error:
Caused by: org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize.
| at org.apache.axis.encoding.ser.SimpleDeserializer.onStartChild(SimpleDeserializer.java:145)
| at org.apache.axis.encoding.DeserializationContext.startElement(DeserializationContext.java:1035)
| at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:165)
| at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
| at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
| at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
| at org.apache.axis.client.Call.invoke(Call.java:2448)
| ... 3 more
What's wierd is, it works without the error if I change the binding from document/wrapped to document/BARE but in that case the input arguements take the form '<arg0 xsi:type='xsd:string' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>nabble</arg0>' even inside the webmethod! Kindly help me here.
WSDL for response:
xs:complexType name="getMapResponse">
| <xs:sequence>
| <xs:element minOccurs="0" name="return" type="tns:mapBean"/>
| </xs:sequence>
| </xs:complexType>
| <xs:complexType name="mapBean">
| <xs:sequence>
| <xs:element minOccurs="0" name="key" type="xs:string"/>
| <xs:element minOccurs="0" name="value" type="xs:string"/>
| </xs:sequence>
| </xs:complexType>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171275#4171275
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171275
17 years, 10 months