active questions tagged messaging - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T14:20:31Zhttp://stackoverflow.com/feeds/tag/messaginghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823705/why-use-amqp-zeromq-rabbitmq1Why use AMQP/ZeroMQ/RabbitMQ....Evil Spork2009-12-01T02:54:50Z2009-12-15T14:00:25Z
<p>as opposed to writing your own library.</p>
<p>Were working on a project here that will be a self dividing server pool, if one section grows too heavy, the manager would divide it and put it on another machine as a separate process. It would also alert all connected clients this effects to connect to the new server.</p>
<p>I am curious about using ZeroMQ for inter-server and inter-process communication. My partner would prefer to roll his own. I'm looking to the community to answer this question.</p>
<p>I'm a fairly novice programmer myself and just learned about messaging queues. As i've googled and read, it seems everyone is using messaging queues for all sorts of things, but why? what makes them better than writing your own library? why are they so common and why are there so many?</p>
http://stackoverflow.com/questions/1902466/how-can-i-create-my-asp-net-mvc-controller-actions-so-they-accept-files0How can I create my ASP.NET MVC controller actions so they accept Files?KingNestor2009-12-14T18:03:02Z2009-12-14T21:54:48Z
<p>I've been working all weekend on a Messaging system for my website so users can send and receive messages on my site internally.</p>
<p>I have my table schemas worked out, and right now I can send basic messages to different users.</p>
<p>Now, I'm working on the attachments portion.</p>
<p>How can I create my action methods so that they accept Files? Ideally I would like to allow for a controller action that accepts an arbitrary number of files. Once they have been passed into the controller action I'm going to save them somewhere on my webserver.</p>
<p>Can anyone show me an example of a controller action that accepts files as part of its parameters?</p>
http://stackoverflow.com/questions/1044350/embeddable-messaging-component-for-java-web-application0Embeddable messaging component for Java web applicationKariem2009-06-25T14:44:24Z2009-12-12T06:00:02Z
<p>In order to satisfy customer requirements, we will need to let users exchange information among each other. The '<strong>messaging system</strong>' does not have sophisticated back-end requirements and could be easily implemented with a few tables to store messages and message types.</p>
<p>The problem is that I believe that the requirements on the front-end are very high and usability is very important. In addition I expect this communication's part to become an important part of the system in the long run.</p>
<p>Is there anything that can be directly integrated into a Java web application and adapted to the application's design? What we need is the following interface</p>
<p>From service layer:</p>
<ul>
<li>send message to user (header, subject)</li>
<li>reply to a message</li>
<li>notification on new message in user inbox (if possible: on current page)</li>
<li>interface to existing user management</li>
</ul>
<p>Preferably, the component should already have a front-end with the following functionality: </p>
<ul>
<li>message management (select, remove, reply, delete/restore, ...)</li>
<li>folders: inbox, sent, trash</li>
<li>tagging: message categories</li>
<li>show last <em>x</em> messages in a panel/div</li>
<li>styling to look like the application</li>
</ul>
<p>If there is something reasonably stable, I would prefer using a component before implementing something like this into the application. The application runs on Wicket, but we are not tied to this framework for the messaging component.</p>
<p>Thank you,
Kariem</p>
<p><hr /></p>
<p>In portal servers, you have the flexibility to add portlets that could do something similar to the component I am looking for; e.g. <a href="http://www.liferay.com/" rel="nofollow">Liferay</a> provides <a href="http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Mail%20Portlet" rel="nofollow">mail</a> and <a href="http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Message%20Boards%20Portlet" rel="nofollow">message boards</a> portlets.</p>
<p>As <em>akf</em> points out in a comment <a href="http://www.jabber.org/" rel="nofollow">Jabber</a> provides a solid basis for messaging. We are looking for something that can be integrated into a web application. If we have to build a lot of UI around Jabber, we cannot really consider it a good fit for our requirements.</p>
http://stackoverflow.com/questions/1062754/mule-aggregator-streaming-aggregation0Mule Aggregator - Streaming Aggregationpjp2009-06-30T09:43:37Z2009-12-11T16:49:44Z
<p>The collection aggregator used in the Mule 2.0 framework works a bit like this:</p>
<ul>
<li><p>An inbound router takes a collection of messages and splits it up into a number of smaller messages - each smaller message get stamped with a correlation id corresponding to the parent message</p></li>
<li><p>These messages flow through various services</p></li>
<li><p>Finally these messages arrive at an inbound aggregator that collects up the messages based on the correlation id of the parent message and the number of expected messages. Once all of the expected messages have been received then the aggregation function is called and the result is returned.</p></li>
</ul>
<p>Now this works fine when the number of messages in a group is reasonably small. However once the number of messages in a group becomes huge ~100k then a lot of memory is tied up holding onto the group of messages waiting for the later messages to arrive. This is made worse if there are multiple groups being aggregated at the same time.</p>
<p>A way around this issue would be to implement a streaming aggregator. In my use case I am essentially summing up the various messages based on a key and this could be done without having to see all of the messages in the group at the same time. I'd only want to know that all of the messages had been received before forwarding the result onto the endpoint.</p>
<p>Does this sound like a reasonable solution to the problem? </p>
<p>Is this already implemented somewhere in Mule? </p>
<p>Are there better ways of doing this? </p>
http://stackoverflow.com/questions/1869852/how-would-you-design-messaging-functionality-if-i-need-to-be-able-to-handle-attac0How would you design messaging functionality if I need to be able to handle attachment in ASP.NET MVC?KingNestor2009-12-08T21:08:53Z2009-12-08T21:36:05Z
<p>I'm working on an ASP.NET MVC site and part of my requirements are that users are able to message eachother.</p>
<p>On the surface this isn't that hard of a task. Messaging in its most simplified form is simply a "Messages" table with things like, "SenderID, ReceiversID(FK), Subject, Message", etc.</p>
<p>However, how would you handle "attachments"? Users can browse through confidential PDFs on our website containing financial information and they are suppose to be able to click a "Send Report To" button to send the report to some other user, along with a textual message. </p>
<p>Similarly, they would be able to upload multiple files, and send them along with their message (not just the internal documents they can browse).</p>
<p>How would you handle this in ASP.NET MVC?</p>
<p>I've considered having an attachments folder somewhere and an attachments table, so if a user clicks "Send report to" or uploads a document, that file is copied to the attachments folder and an entry is created in the Attachments table.</p>
<p>Then, if a user clicks on a link that has a route like /messaging/attachments/{fileID}, it will send out the appropriate file to them. I could even maintain a checksum of each file in the attachments/files table so if a user sends the same report we won't be duplicating the file in the attachments folder. </p>
<p>In some way feel like I'm re-inventing email but the client insists that in order to maintain security compliancy we can't simply email out these reports to our users, they must log into our system in order to retrieve them.</p>
<p>Is this the right way to go about something like this or should I look at a different approach?</p>
http://stackoverflow.com/questions/730364/can-someone-explain-what-message-brokers-are-used-for4Can someone explain what message brokers are used for?Chris R2009-04-08T14:45:36Z2009-12-02T12:01:47Z
<p>In my line of work it's hard to go five minutes without someone extolling the virtues of MQ Series or MSMQ or the like, and I always wonder, after the sparkle of buzzwords has passed, what are some actual <em>examples</em> of these wonderful devices out in the real world.</p>
<p>What I'm looking for is something that might inspire me to find a use for one of these or give me some kind of metric I can use to evaluate a message bus/message broker/message queue -- hell, even something that will explain what the differences are between the aforementioned message* things.</p>
http://stackoverflow.com/questions/1725715/activemq-store-and-forward-broker-hangs-after-failover-of-master-slave-pair-1ActiveMQ store-and-forward broker hangs after failover of master-slave pairschuilr2009-11-12T22:00:24Z2009-12-01T18:09:13Z
<p>Hi all,</p>
<p>I'm encountering some problem with ActiveMQ 5.3. We have the following setup:
- A master-slave pair ('master' and 'slave')
- A broker ('broker') that forwards messages to either 'master' or 'slave', depending on who is active</p>
<p>The symptom I see: When I start 'master', 'slave' and 'broker' messaging works as expected: When I publish messages to 'broker' it passes it to 'master' and the messages are received by my client that is connected there. Now, when I stop 'master', 'slave' detects this and becomes active. 'broker' also noticed that it lost its connection to 'master' and fails over to 'slave'. It reports that it has connected in its local log, however, 'slave' does not report anything about that. 'broker' now reports warnings such as</p>
<p>2009-11-12 22:34:40,915 [/cs-droid002#18] WARN DemandForwardingBridge - Unexpected local command: ConnectionInfo {commandId = 2, responseRequired = false, connectionId = ID:broker-39053-1258061649602-12:1, clientId = NC_slave_inbound_broker, userName = null, password = null, brokerPath = null, brokerMasterConnector = false, manageable = false, clientMaster = true}</p>
<p>When I publish messages to broker now they are lost immediately. No consumer connected to either slave or broker receives them. When I publish them directly to 'slave' my consumer there does receives them.</p>
<p>Important to note perhaps is that 'broker' is configured with a url 'static:(failover:(tcp://master,tcp://slave))' and that our producer and consumer are speaking STOMP (so we have added a transportConnector for the stomp protocol)</p>
<p>Does anyone has the solution? I'm about to give up :|</p>
http://stackoverflow.com/questions/915078/overriding-paint-of-combobox-using-wndproc1Overriding paint of combobox using WndProcrob2009-05-27T10:43:07Z2009-11-30T20:22:05Z
<p>Hi,</p>
<p>I've overriden the WndProc of the ComboBox and I am drawing my own combo box, a code snippet is below:</p>
<pre><code>Protected Overrides Sub WndProc(ByRef m As Message)
MyBase.WndProc(m)
Select Case m.Msg
Case &HF
Dim g As Graphics = Me.CreateGraphics
If ComboBoxRenderer.IsSupported Then
Dim pTextBoxRect As New Rectangle(Me.ClientRectangle.X, Me.ClientRectangle.Y, Me.ClientRectangle.Width, Me.ClientRectangle.Height)
ComboBoxRenderer.DrawTextBox(g, pTextBoxRect, _tbState)
' .... and so on
End Select
End Sub
</code></pre>
<p>Though the old control is still being painted as my drawn combo box is just overlapping the old drawing. Is there a way to stop it drawing the default combo box?</p>
<p>Thanks,
Rob</p>
http://stackoverflow.com/questions/998708/trade-offs-implementing-versioning-of-services-accessed-by-reliable-async-messagi1Trade-offs implementing versioning of services accessed by reliable async messaging?Nat2009-06-15T22:18:33Z2009-11-29T05:00:04Z
<p>Clients of HTTP services can specify the version (and format) they understand by requesting or posting data with a specific content type. The HTTP protocol defines error codes for reporting that the content type is not understood.</p>
<p>Messaging systems (e.g. JMS, MQ Series and the like) do not have a standard way of describing message protocol versions and content formats.</p>
<p>How have you implemented versioning for services accessed over reliable, asynchronous messaging?</p>
<p>Some possibilities:</p>
<ul>
<li>The sender indicates the version as a message property</li>
<li>Queue or Topic names include the protocol version of the messages accepted at that destination</li>
<li>The version is in the payload of the message</li>
</ul>
<p>I'm sure there are other ways. How did you do it? What advantages and disadvantages did you find?</p>
http://stackoverflow.com/questions/1811526/objective-c-cocoa-threads-and-messaging-conundrum1Objective-C/Cocoa threads and messaging conundrumhyperspasm2009-11-28T04:10:38Z2009-11-28T09:24:44Z
<p>Hello,<br>
I have a problem that has been plaguing me for awhile now, I have come up with a solution which I will detail below, and although it seems to be working well I'm not super enthusiastic about it from a design point of view and I'm curious if anyone would have any recommendations about a better way to do this.</p>
<p>Basically, I have a shared resource, lets just say it's a directory of files. I have a single object that manages this resource (we'll call it an instance of class BossOfEverthing). BossOfEverthing handles adding, deleting, modifying and retrieving data from the files within that directory. When another object wants to access the shared resource it does so through the BossOfEverthing instance. BossOfEverthing uses locks internally since its client objects can and do exist on separate threads. BossOfEverthing also maintains an array of references to client objects that observe the BossOfEverthingClient protocol. When BossOfEverthing is about to change anything about the shared resource (perhaps due to a request from one of its clients) it notifies all of the clients ahead of time by calling an appropriate selector for each client so that they can all have a chance to respond first. BossOfEverthing is in fact the Boss, ie. the clients have no say so as to whether they approve of the shared resource being changed, but they are given the chance to perform any requisite cleanup activities first. The way I look at it, it's as if BossOfEverthing has many 'delegates'. The difference between what I need to do and the normal delegation pattern is that:</p>
<ol>
<li>There are many delegates/clients</li>
<li>Delegates/clients are created and destroyed many times throughout the lifetime of the BossOfEverthing instance (which in fact exists throughout the lifetime of the entire application).</li>
</ol>
<p>When an object wants to be a client of the BossOfEverthing instance it calls [BossOfEverthing addMeToYourClientsList:] (usually from its init method) and when an object wants to stop being a client of BossOfEverthing it calls [BossOfEverthing removeMeFromYourClientList:] (from its dealloc method). This way BossOfEverthing knows who to notify (and on what thread) when the shared resource changes.</p>
<p>Normally I would have used notifications or KVO to message the clients, but the hitch is that all of the clients need to have a chance to respond appropriately BEFORE the resource actually changes (like in a normal delegation pattern). Neither notifications or KVO block while the receivers are responding.</p>
<p>OK, that all seems great, but take this scenario:</p>
<ol>
<li>BossOfEverthing is about to change the shared resource, eg. [BossOfEverthing changeSomething] is called by some object on thread 1</li>
<li>[BossOfEverthing changeSomething] acquires the lock associated with the client array</li>
<li>[BossOfEverthing changeSomething] begins iterating through the client array and calling each client's somethingIsAboutToBeChanged method on the appropriate thread for each client</li>
<li>In the meantime one of the clients (clientX) is about to go out of existence, so it calls [BossOfEverthing removeMeFromYourClientList:] on thread 2 from within its dealloc method</li>
<li>[BossOfEverthing removeMeFromYourClientList:] attempts to acquire the lock associated with the client array on thread 2 so that it can remove clientX</li>
</ol>
<p>What happens here is that I end up in a deadlock because:</p>
<ol>
<li>[BossOfEverthing changeSomething] (who has acquired the lock on thread 1) is waiting for [clientX somethingIsAboutToBeChanged] to return from thread2</li>
<li>Thread 2 is stuck waiting to acquire the lock which is currently owned by [BossOfEverthing changeSomething] on thread 1 and is unable to respond to its somethingIsAboutToBeChanged method</li>
</ol>
<p>Here's what I have done to remedy this:</p>
<ol>
<li>Rather than clientX calling [BossOfEverthing removeMeFromYourClientList:] from its dealloc method, it calls it from its release method (only when retainCount==1)</li>
<li>[BossOfEverthing removeMeFromYourClientList:] rather than waiting on the lock just ATTEMPTS to acquire it and if it can't it returns NO.</li>
<li>If [BossOfEverthing removeMeFromYourClientList:] returns NO to [clientX release] then [clientX release] calls [self performSelector:@selector(release) withObject:nil afterDelay:0.1], otherwise it just calls [super release]</li>
</ol>
<p>This way clientX has a chance to respond to any messages that [BossOfEverthing changeSomething] might be sending it and allow [BossOfEverthing changeSomething] to finish up it's business and release the lock, while another call to [clientX release] is queued up in the delay.</p>
<p>The problem that I have with this is that:</p>
<ol>
<li>Client objects are of a variety of classes and so I have to copy paste my overriden release method to each of them. There's something that irks me about copying and pasting the same code to multiple classes. If objective-c allowed multiple inheritance then I could perhaps create another class 'BossOfEverthingClient' whose only defined method would be an overriden release.</li>
<li>This whole procedure seems a bit convoluted.</li>
</ol>
<p>Anyway, Thanks so much for reading my long winded post and I'll look forward to any input that anyone has.
Thanks again!</p>
http://stackoverflow.com/questions/1781004/what-windows-message-is-sent-to-repaint-a-partially-occluded-window0What Windows message is sent to repaint a partially occluded window? Mason Wheeler2009-11-23T03:47:08Z2009-11-24T02:28:33Z
<p>I know that WM_PAINT tells a window that it needs to repaint itself entirely, but apparently that's not the message that gets sent when it's been covered partially and then the window that was in front of it is no longer in the way and it needs to repaint the dirty portion. Does anyone know what message is sent in this case?</p>
<p>EDIT: Found the problem:</p>
<p>The issue involved a Delphi control I wrote to embed a <a href="http://www.libsdl.org" rel="nofollow">SDL</a> rendering surface on a Delphi form. SDL has an API to build its renderer on another window's HWND, and it marks it as a "foreign window".</p>
<p>SDL usually handles <code>WM_PAINT</code> internally, so I ended up having to add some code to SDL's WindowProc to forward the message on to the external WindowProc if it's a foreign window. That was working sometimes, but it turns out there was a glitch that was stripping the foreign window flag from the window's data structure, so it was swallowing the message instead of passing it on to my app. Once I fixed that, I started getting the <code>WM_PAINT</code> messages all the time.</p>
http://stackoverflow.com/questions/1781806/browsers-and-windows-messaging0Browsers and Windows Messagingdole doug2009-11-23T08:34:33Z2009-11-23T08:47:37Z
<p>hi there</p>
<p>I was asking myself how the browsers are working. How does the browser tell to the OS to change the mouse pointer from arrow to hand(IDC_HAND) for example. In desktop application I know that are used windows messages(right) but how it is happening in browsers? Spy++ doesn't seems to catch any of the mouse pointer messages in this case. Can you help me with an explanation? </p>
<p>I'm trying to build a C# application which will detect the type of the mouse pointer. </p>
http://stackoverflow.com/questions/1776076/masstransit-queue-maintenance0MassTransit Queue MaintenanceRob2009-11-21T17:13:57Z2009-11-22T15:58:19Z
<p>Is there anything built into <a href="http://code.google.com/p/masstransit/" rel="nofollow">MassTransit</a> that can help manage the queues?</p>
<p>I'm specifically thinking of the error queues. I saw <a href="http://groups.google.com/group/masstransit-discuss/browse%5Fthread/thread/aca10e42485a71ae" rel="nofollow">the thread</a> similar to this, but I'm not looking to manage it with a utility, but rather in code.</p>
<p>Scenario:</p>
<ul>
<li><p>Web client - commands are published as messages with MT to a remote queue on an application server.</p></li>
<li><p>App server - the commands are consumed and executed. If the command throws during execution, it's placed in the error queue.</p></li>
<li><p>Web client - end users can view all commands in the error queue. They resolve them one at a time and have them re-published to be executed again.</p></li>
</ul>
<p>The first two are easy enough. The third one is where I'm at now. Any suggestions greatly appreciated.</p>
<p>Thanks,<br>
Rob</p>
http://stackoverflow.com/questions/1539826/wsmq-queue-limit0WSMQ Queue Limitx1a02009-10-08T19:05:50Z2009-11-19T22:44:04Z
<p>Hi, is there a limit on how many queues I can have open within a single connection and single session? I can currently open up 128 queues and send messages to them. If I try to open up 129 I get the following error...</p>
<p>Thanks</p>
<p>Error:</p>
<pre><code>com.ibm.msg.client.jms.DetailedResourceAllocationException: JMSWMQ2008: Failed to open MQ queue 'TestQueue_129'. JMS attempted to perform an MQOPEN, but WebSphere MQ reported an error. Use the linked exception to determine the cause of this error. Check that the specified queue and queue manager are defined correctly.
at com.ibm.msg.client.wmq.common.internal.Reason.reasonToException(Reason.java:579)
at com.ibm.msg.client.wmq.common.internal.Reason.createException(Reason.java:219)
at com.ibm.msg.client.wmq.internal.WMQMessageProducer.checkJmqiCallSuccess(WMQMessageProducer.java:1000)
at com.ibm.msg.client.wmq.internal.WMQMessageProducer.checkJmqiCallSuccess(WMQMessageProducer.java:956)
at com.ibm.msg.client.wmq.internal.WMQMessageProducer.access$800(WMQMessageProducer.java:59)
at com.ibm.msg.client.wmq.internal.WMQMessageProducer$SpiIdentifiedProducerShadow.initialise(WMQMessageProducer.java:727)
at com.ibm.msg.client.wmq.internal.WMQMessageProducer.<init>(WMQMessageProducer.java:931)
at com.ibm.msg.client.wmq.internal.WMQSession.createProducer(WMQSession.java:783)
at com.ibm.msg.client.jms.internal.JmsSessionImpl.createProducer(JmsSessionImpl.java:1122)
at com.ibm.msg.client.jms.internal.JmsQueueSessionImpl.createSender(JmsQueueSessionImpl.java:131)
at com.ibm.mq.jms.MQQueueSession.createSender(MQQueueSession.java:147)
at com.ibm.mq.jms.MQQueueSession.createProducer(MQQueueSession.java:248)
at MyQueue.<init>(MyQueue.java:25)
at Main.main(Main.java:54)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:45)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:599)
at com.ibm.ws.client.applicationclient.launchClient.createContainerAndLaunchApp(launchClient.java:788)
at com.ibm.ws.client.applicationclient.launchClient.main(launchClient.java:493)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:45)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:599)
at com.ibm.wsspi.bootstrap.WSLauncher.launchMain(WSLauncher.java:213)
at com.ibm.wsspi.bootstrap.WSLauncher.main(WSLauncher.java:93)
at com.ibm.wsspi.bootstrap.WSLauncher.run(WSLauncher.java:74)
at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:45)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:599)
at org.eclipse.core.launcher.Main.invokeFramework(Main.java:340)
at org.eclipse.core.launcher.Main.basicRun(Main.java:282)
at org.eclipse.core.launcher.Main.run(Main.java:981)
at com.ibm.wsspi.bootstrap.WSPreLauncher.launchEclipse(WSPreLauncher.java:330)
at com.ibm.wsspi.bootstrap.WSPreLauncher.main(WSPreLauncher.java:108)
Caused by: com.ibm.mq.MQException: JMSCMQ0001: WebSphere MQ call failed with compcode '2' ('MQCC_FAILED') reason '2017' ('MQRC_HANDLE_NOT_AVAILABLE').
at com.ibm.msg.client.wmq.common.internal.Reason.createException(Reason.java:206)
... 39 more
WSCL0100E: Exception received: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:45)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:599)
at com.ibm.ws.client.applicationclient.launchClient.createContainerAndLaunchApp(launchClient.java:788)
at com.ibm.ws.client.applicationclient.launchClient.main(launchClient.java:493)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:45)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:599)
at com.ibm.wsspi.bootstrap.WSLauncher.launchMain(WSLauncher.java:213)
at com.ibm.wsspi.bootstrap.WSLauncher.main(WSLauncher.java:93)
at com.ibm.wsspi.bootstrap.WSLauncher.run(WSLauncher.java:74)
at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:45)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:599)
at org.eclipse.core.launcher.Main.invokeFramework(Main.java:340)
at org.eclipse.core.launcher.Main.basicRun(Main.java:282)
at org.eclipse.core.launcher.Main.run(Main.java:981)
at com.ibm.wsspi.bootstrap.WSPreLauncher.launchEclipse(WSPreLauncher.java:330)
at com.ibm.wsspi.bootstrap.WSPreLauncher.main(WSPreLauncher.java:108)
Caused by: java.lang.NullPointerException
at MyQueue.sendMessage(MyQueue.java:39)
at Main.main(Main.java:55)
... 27 more
</code></pre>
http://stackoverflow.com/questions/1757392/persistable-and-repeatable-commands0Persistable and Repeatable CommandsRob2009-11-18T16:48:54Z2009-11-18T23:05:55Z
<p>Imagine that we have stuff we want done in the system and sometimes exceptions are raised while doing it. We want to give the end users a report of those errors so they have an opportunity to fix the root of the problem and <strong><em>then re-invoke the thing that caused the error</em></strong>.</p>
<p>This obviously means we need to capture the "thing" in a way that allows it to be stored, reported on, and ultimately re-executed or discarded.</p>
<p><strong>Does anyone have any suggestions for implementing this?</strong></p>
<p>Thanks!</p>
<p><strong>- Edit -</strong></p>
<p>I read <a href="http://msdn.microsoft.com/en-us/magazine/cc163920.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc163920.aspx</a></p>
<p>Now I'm thinking messaging might be the way to go. I'm wondering if maybe MassTransit or the like would be beneficial or overkill. I've been wanting to delve into EDA for a while and am thinking this might be an in.</p>
http://stackoverflow.com/questions/211480/lightweight-messaging-async-invocations-in-java4Lightweight messaging (async invocations) in JavaSergey Mikhanov2008-10-17T08:53:55Z2009-11-16T13:38:34Z
<p>I am looking for lightweight messaging framework in Java. My task is to process events in a SEDA’s manner: I know that some stages of the processing could be completed quickly, and others not, and would like to decouple these stages of processing.</p>
<p>Let’s say I have components A and B and processing engine (be this container or whatever else) invokes component A, which in turn invokes component B. I do not care if execution time of component B will be 2s, but I do care if execution time of component A is below 50ms, for example. Therefore, it seems most reasonable for component A to submit a message to B, which B will process at the desired time.</p>
<p>I am aware of different JMS implementations and Apache ActiveMQ: they are too heavyweight for this. I searched for some lightweight messaging (with really basic features like messages serialization and simplest routing) to no avail.</p>
<p>Do you have anything to recommend in this issue?</p>
http://stackoverflow.com/questions/1735283/python-message-oriented-middleware-i-e-jms-for-python0Python message oriented middleware (i.e. JMS for Python)flybywire2009-11-14T19:19:56Z2009-11-14T20:36:10Z
<p>What message oriented middle ware with a Python API are out there?
What ones did you use and recommend (or not)?</p>
http://stackoverflow.com/questions/1728020/best-solution-for-java-http-push-messaging3Best solution for Java HTTP push (messaging)Nina Null2009-11-13T09:00:19Z2009-11-13T12:32:25Z
<p>We want to push data from a server to clients but can only use HTTP (port 80). What is the best solution for messaging? One idea is <a href="http://en.wikipedia.org/wiki/Comet%5F%28programming%29" rel="nofollow">Comet</a>. Are there other ideas or frameworks which offer lets say JMS over HTTP. (Yes, ActiveMQ supports it too, but waggly IMHO. And JXTA supports it too but the configuration is complicated. Something simple is preferred.)</p>
http://stackoverflow.com/questions/1727854/is-there-a-servicebus-solution-where-consumers-dont-consume-events-multiple-co1is there a servicebus solution where consumers don't consume events? (multiple consumers receive same event)reinier2009-11-13T08:18:09Z2009-11-13T09:02:58Z
<p>Hi,</p>
<p>I was reading up on ActiveMQ which seems like a great implementation of a servicebus where producers can post messages and other processes can receive them.</p>
<p>However when reading the documentation, it looks like the producer has to give the 'endpoint' when sending a message.</p>
<p>I would rather have it the other way around: My producer posts events 'import job starting', 'import job finished', etc
and any consumer which is interested in certain classes of events can subscribe and receive these. However the consumer should not consume the event in that it doesn't get send to other subscribers anymore.</p>
<p>What would be the best product to have this kind of property?</p>
<p>Constraints:
- It should have interfaces for at least .Net and php
- It should work across machine boundaries</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1260795/how-to-pause-jms-topic-subscriber-from-receiving-messages0How to pause JMS topic subscriber from receiving messagesRickard2009-08-11T14:39:10Z2009-11-11T22:00:03Z
<p>My setup: JBoss Messaging 1.4 running on JBoss 4.2.3</p>
<p>I have a couple of MDB's that subscribes on one topic, and the MDB's onMessage() tries to deliver the received message to one web service each.</p>
<p>My problem is that I can't figure out how to pause the subscriptions in the case when the web service is offline.</p>
<p>My plan is to do the following in onMessage():</p>
<ol>
<li>try to deliver to web service</li>
<li>if offline:</li>
<li>--> pause the subscription</li>
<li>--> throw exception in onMessage() to make JMS redeliver the message
until the web service goes online again</li>
<li>--> start the subscription</li>
</ol>
<p>I want to pause ONLY the one subscription that have the problem - NOT all my subscribers.</p>
<p>Any suggestion on how to solve this?</p>
http://stackoverflow.com/questions/1669746/jms-acknowledge-asynchronous-message0JMS Acknowledge Asynchronous Message x1a02009-11-03T19:52:30Z2009-11-09T22:20:13Z
<p>Hi,</p>
<p>How do I acknowledge a message when I am using a message listener?</p>
<p>I get the following error when I try to do an acknowledge in my message listener.</p>
<pre><code>A synchronous method call is not permitted when a session is being used asynchronously: 'acknowledge'
</code></pre>
http://stackoverflow.com/questions/1695999/my-buffer-contains-elements-but-arent-being-printed1My buffer contains elements, but aren't being printed...ej2009-11-08T10:45:06Z2009-11-08T11:15:44Z
<p>Sorry scratch my last post, it's way to late =S
But basically I'm having problems sending out the buffer I created. Just need to know where I'm going wrong =( or if theres a better way.</p>
<p>------ Client Sending Username -------</p>
<pre><code>int bufferSize = 32;
char messageBuffer[bufferSize];
char* message;
if (userName.size() > 8)
{
cout << "Invalid username : Greater than 8 characters" << endl;
}
else
{
switch(regType)
{
case(REGISTER):
{
cout << "Registered name: " << userName << endl;
messageBuffer[0] = 1;
messageBuffer[1] = 0;
for (int i = 2; i < (userName.size() + 2); i++)
{
messageBuffer[i] = userName[(i - 2)];
}
for (int i = 0; i < (userName.size() + 2); i++)
{
cout << messageBuffer[i];
}
cout << "<<<< messageBuffer " << endl;
message = &messageBuffer[0];
cout << messageBuffer << endl;
//message[(userName.size() + 2)] = '\0';
int messageLen = userName.size() + 2;
if (send(sock, messageBuffer, messageLen, 0) != messageLen)
DieWithError("send() send an invalid name");
}break;
case(UNREGISTER):
{
}break;
}
}
</code></pre>
<p>----------- Server (Receiver)------------
char msgRcvBuffer[RCVBUFSIZE];</p>
<p>int recvMsgSize;</p>
<p>if ((recvMsgSize = recv(clntSocket, msgRcvBuffer, RCVBUFSIZE, 0)) < 0)
DieWithError("recv() failed");</p>
<p>msgRcvBuffer[recvMsgSize] = '\0';</p>
<p>string msgType( msgRcvBuffer );</p>
<p>cout << "Message Type " << msgType << endl; <<<<<< Nothing appears when printed</p>
<p>void handleReg(string message, int socket, string ipAddr)
{</p>
<pre><code>// Remove the Prefix
int startIndex = 2;
// Get the username from the message
string userName = message.substr(startIndex, message.size() - startIndex);
cout << "Username " << userName << endl;
</code></pre>
<p>For some reason my message string is just 1... =S What i'm trying to do is just get the message from what was sent from client. I'm just tryin to remove the '1' and '0' from the beginning of the buffer. 1 and 0 aren't characters.</p>
<p>Thanks so much for everyones help =)</p>
http://stackoverflow.com/questions/1668973/how-to-ensure-message-idempotency-with-multiple-competing-consumers0How to ensure message idempotency with multiple competing consumers?andrew2009-11-03T17:38:54Z2009-11-03T20:31:35Z
<p>I have multiple distributed competing consumers each pulling messages off the same (transactional) queue. I want to implement each consumer as an <a href="http://www.enterpriseintegrationpatterns.com/IdempotentReceiver.html" rel="nofollow">Idempotent Receiver</a> so I never process the same message more than once (across all consumers) even if a duplicate arrives. How can I accomplish this with multiple consumers?</p>
<p>My first thought is to somehow generate a consecutive sequence number for each message before putting them on the queue and then use a shared database table to coordinate the work between consumers. I.e. consumer#1 processes msg#1 and then writes a row to DB table saying 'msg#1 is processed' (want it in a database to ensure durability). When a consumer is ready to process a message, it peeks at the next one available in the queue, consults the shared DB table and determines if this is the next msg in order. If so, it pulls it off the queue. If not, it ignores it.</p>
<p>In this way, I only need to store the last message processed (as there is a consecutive sequence number for all msgs), I don't need to use a buffer storing IDs of all messages received with a negotiated 'window' size, and the messages are always processed serially (which is what I want for this scenario). </p>
<p>Just curious if there is a better way? I'm concerned about the cost of querying the database whenever I need to process a message. </p>
<p>If the answer is "it depends on the framework", then I had MSMQ in mind</p>
http://stackoverflow.com/questions/1659351/message-driven-vs-event-driven-approaches-to-application-integration0message driven vs. event driven approaches to application integrationdenchr2009-11-02T03:52:54Z2009-11-02T03:52:54Z
<p>Hello,</p>
<p>I was wondering if there is a clear distinction between message driven and event driven environments when we refer to SOA or middleware and generally in cases of application and enterprise integration. I understand that a user interface resembles an event driven model where our system intercepts action by the user.</p>
<p>Also it is clear that messaging supports systems based on publish/subscribe, sychronous or asynchronous communication, transactions etc.</p>
<p>But is there a difference in the middleware/soa/application intergration context? (architecture level). I am trying to consult sources such wikipedia (<a href="http://en.wikipedia.org/wiki/Message%5FOriented%5FMiddleware" rel="nofollow">here</a>, and <a href="http://en.wikipedia.org/wiki/Event-driven%5FSOA" rel="nofollow">here</a>), but I am still somewhat confused. When should a developer prefer one solution over the other?</p>
<p>Are there examples or cases where one approach makes more sense than the other? Or any comprehensive resources and guides to implementing each one?</p>
<p>Many thanks for any insight.</p>
http://stackoverflow.com/questions/1650781/message-passing-interface-mpion-windows0Message passing interface (MPI)on WindowsHani2009-10-30T16:11:48Z2009-10-30T16:17:02Z
<p>Hello, I an new to MPI and i want to use it under windows. Please could any one give me a link in which i can download this library (if exist). If there are many versions of MPI i hope to be referred to the most linux like because i have an MPI C linux code and i want with minimal change to make it work on windows.<br/>
Thanks very much <br/>
Hani Almousli.......</p>
http://stackoverflow.com/questions/1647822/javadocs-for-tibco-datagrams-tibrvmsg0JavaDocs for Tibco datagrams (TibrvMsg)?StaxMan2009-10-30T03:17:41Z2009-10-30T03:30:39Z
<p>Does anyone know of available Javadoc for Tibco rvd datagrams (specifically, class "com.tibco.tibrv.TibrvMsg")? It is not hard to decompile classes to get signatures, but that does not tell a lot about expected optimal usage and such.</p>
<p>All I need is simple read/write functionality for interoperability purposes, but ideally using recommended methods, and sometimes things like that are included in javadocs (I know that the product is not actively developed or supported, but there are lots of legacy systems that use it; and some non-rvd systems that use the data format itself for convenience (?)).</p>
http://stackoverflow.com/questions/595888/how-to-prevent-a-control-from-changing-z-order1How to prevent a control from changing Z order ?gpgemini2009-02-27T18:03:57Z2009-10-29T06:52:40Z
<p>I have user control in .Net where I use a hit test in WndProc to allow resizing it in runtime with the mouse.</p>
<p>The problem is that after the hit test succedes (mouse press, drag to resize, mouse release) the control jumps upwards in the Z order and ruins it position in the form.</p>
<p>I need the hit test since it's a very customized control.</p>
<p>Is there a way in WndProc to stop the control from changing it's Z order ?</p>
<p>Thanks.</p>
<p>The hit test code:</p>
<pre><code>protected override void WndProc(ref Message m) {
if (!DesignMode && Sizeable && (m.Msg == Win32Wrapper.WM_NCHITTEST)) {
Point Hit = new Point((int)m.LParam & 0xFFFF, (int)m.LParam >> 16);
Hit = this.PointToClient(Hit);
int DistToBorder = 5;
if (Hit.X < DistToBorder) {
if (Hit.Y < DistToBorder) {
m.Result = (IntPtr)Win32Wrapper.HTTOPLEFT;
return;
}
if (Hit.Y > this.ClientRectangle.Bottom - DistToBorder) {
m.Result = (IntPtr)Win32Wrapper.HTBOTTOMLEFT;
return;
}
m.Result = (IntPtr)Win32Wrapper.HTLEFT;
return;
}
else if (Hit.X > ClientRectangle.Right - DistToBorder) {
if (Hit.Y < DistToBorder) {
m.Result = (IntPtr)Win32Wrapper.HTTOPRIGHT;
return;
}
else if (Hit.Y > this.ClientRectangle.Bottom - DistToBorder) {
m.Result = (IntPtr)Win32Wrapper.HTBOTTOMRIGHT;
return;
}
m.Result = (IntPtr)Win32Wrapper.HTRIGHT;
return;
}
else if (Hit.Y < DistToBorder) {
m.Result = (IntPtr)Win32Wrapper.HTTOP;
return;
}
else if (Hit.Y > this.ClientRectangle.Bottom - DistToBorder) {
m.Result = (IntPtr)Win32Wrapper.HTBOTTOM;
return;
}
}
</code></pre>
http://stackoverflow.com/questions/1639604/recommended-to-use-lingo-with-spring0Recommended to use Lingo with Spring?Cuga2009-10-28T19:42:10Z2009-10-28T19:48:42Z
<p>I'm going through some examples for how to configure asynchronous JMS messaging with Spring, and the book I'm going through, Spring In Action, 2nd Edition (I know there's a 3rd edition out there), mentions using Lingo (<a href="http://lingo.codehaus.org/" rel="nofollow">http://lingo.codehaus.org/</a> for messaged-based RPC asynchronous messaging. </p>
<p>The latest version of Lingo is a couple years old, so I was wondering if there is a newer, better practice to use than Lingo. Any advice?</p>
<p>Much thanks!</p>
http://stackoverflow.com/questions/1637387/how-to-send-messages-from-php-application-to-java-application-without-creating-we0How to send messages from PHP application to Java application without creating webservices?newbie2009-10-28T13:51:38Z2009-10-28T15:32:12Z
<p>One possible solution could be simple HTTP get or post request, but that wouldn't be secure. </p>
http://stackoverflow.com/questions/1594893/how-to-get-the-number-of-jms-messages-in-a-topic0How to get the number of JMS messages in a TopicRickard2009-10-20T14:12:08Z2009-10-21T16:30:42Z
<p>How do I get the number of JMS messages waiting to be consumed by a specific JMS message subscriber? I use the Topic model (publish/subscribe) and not the Queue model.</p>
<p>I want my MDB (message driven bean) to be able to figure out this information about the topic it listens to. To be clear; I want my MDB to get the number of messages waiting to be consumed.</p>
<p>I can't find any information in either on Internet or the documentation :(</p>
<p>I use JBoss Messaging 1.4.4.</p>