Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
1k views

PHP: Pubsubhubbub and realtime information (for Subscriber)

I started now with Pubsubhubbub (and all about realtime things), but I having trouble with the Subscriber option. I'm trying to develop a webapp in PHP to: Subscribe a RSS (previously Published) to ...
4
votes
1answer
1k views

SQL Server 2005 Replication and different indexes on the subscriber

We have SQL Server database setup. We are setting up a replication scenarios where we have one publisher and on subscriber. The subscriber will be used as a reporting platform so that we can run all ...
3
votes
2answers
658 views

Set subscriber status in Magento programatically

I am trying to write a module that syncs my newsletter subscribers in Magento with a external database. I need to be able to update the subscription status in Magento programatically but I am having ...
3
votes
2answers
1k views

How to get the number of JMS messages in a Topic

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. I want my MDB (message driven ...
2
votes
2answers
737 views

Publish/Subscribe and Smart pointer

I would like to implement a simple Publish/Subscribe pattern where: A single publisher publishes a token (a pointer to an object) to its subscribers. Publisher and subscribers are all independent ...
1
vote
1answer
34 views

Facebook Profile Subscriber Count

Is there a method in the API to query the number of subscribers for one of the new profiles? I am talking about the new profiles (not pages), like this one for Tyra Banks: ...
1
vote
1answer
68 views

Plone 4 Events and Subscribers

I'm needing some help in the following situation: I need to implement a custom event/subscriber in order to be able to get the context of an object in the beginning and in the end of it's edition, ...
1
vote
1answer
29 views

observer(subscriber) Design Pattern on Web?

I'm been trying to get caught up on web 2.0 practices, and recently ran into a article about polling for changes in a database to keep a webpage up to date asynchronously (for a purpose similar to the ...
1
vote
1answer
98 views

Can I add listeners/publisher subscriber to JAXB objects?

I have a multithreaded application using JAXB. The JAXB object represent state of other system hardware. I have a thread monitoring the system hardware, and it updates the JAXB objects with the ...
1
vote
0answers
90 views

How publisher-subscriber configurations can be included in a single app.config?

I am writing a simple server (publisher) and client (subscriber) application to imagine inter-process communication between two managed C# processes. I need to write a server (that's working as a ...
1
vote
1answer
275 views

SQL Server Replication subscribers filter

Guys, I have a task to do for my colleague and I need to know if is possible to specify the filter to subscribers when using replication in SQL Server? What I mean is, I don't want to create 3 types ...
0
votes
0answers
23 views

Magento set subscriber first & last name

When someone subscribes to the Magento newsletter I also want them to fill in their first and last name. I have added the two input fields to the form. The field names are 'firstname' and 'lastname'. ...
0
votes
1answer
28 views

ZeroMQ Lost Messages with PHP Subscriber

i'm using zeromq with php bindings to connect to the zmq module in Freeswitch (a VOIP Software Switch). Short: i'm loosing Events. Long: The zmq module in Freeswitch is implemented in c++ as ...
0
votes
1answer
30 views

UDP Server Client Subscriber Publisher

I'm not exactly sure if the following scenario is possible. Using only UdpClient or a Udp Socket, i would like to achieve a one publisher and multiple client environment. Udp server is broadcasting ...
0
votes
1answer
42 views

ActiveMQ network of brokers with durable subscription topics

I have a little problem here with my sample JMS layout. I have two brokers (A, B) on two machines, which are linked via network connector. The idea is that the producer can send to any broker and ...
0
votes
0answers
24 views

What subscriber information can be collected by developers when implementing iOS subscriptions?

My app implements the iOS auto-renewing subscription to access premium content. I haven't yet submitted this for approval, because I want to know what subscriber information I'll be able to access ...
0
votes
2answers
86 views

Wordpress user dashboard custom left menu example code help needed

I need help to show the left menu item on other role users dashboard. I am using the code at plugin to add the custom admin menu items . add_action('admin_menu', 'wp_hotlel_admin_menu'); function ...
0
votes
2answers
48 views

forward message to audit queue for a publisher/subscriber

I have setup a publisher/subscriber and wanted to send the received message to audit queue. Here my app.config extract <MsmqTransportConfig InputQueue="MyPublisherInputQueue" ErrorQueue="error" ...
0
votes
1answer
92 views

activemq NoB: broker not getting messages after reconnect

We have a hub-and-spoke network topology with activemq with topic and durable subscribers. After a (embedded) broker has been disconnected, it does not get the messages that have been sent during the ...
0
votes
1answer
139 views

C# - Get a list of subscribers listening to a RoutedEvent?

I'm trying to get a list of objects that are subscribing to the PasswordBox PasswordChanged event. The PasswordBox has a static readonly RoutedEvent PasswordChangedEvent and an instance ...
0
votes
1answer
77 views

NServiceBus, subscriber stop receiving messages after a period of time

Using version 2.5.0.1446, my server will receive messages for about 5 - 10 minutes, after which, it will no longer receive, however this is only occurring on one environment a Windows Server 2008 R2 ...
0
votes
1answer
176 views

Help me to remove subscriber from mass mail php script

i need to find a way to remove subscribers from mass mail php script here is script: <?php $thisfile=basename(__FILE__, ".php"); $path = GSPLUGINPATH.'gs_massmail/lang/'; $filenames = ...
0
votes
1answer
30 views

Getting details of the subscriber in wordpress

Is it possible to download or retrieve only the subscriber details using wordpress.i can see the list of users along with the subscriber in an admin page.but i want to get only the details(email ...
0
votes
2answers
334 views

Wordpress Plugin to group subscribers

do you know a Wordpress plugin that provides the ability to group subscribers. It would be nice if there was a page for each group where a photo and some information can be inserted. The final ...
0
votes
1answer
472 views

Can a subscriber also publish/send message in NServiceBus?

Is the communication bi-directional in NServiceBus? a subscriber can also publish/send message?
0
votes
1answer
39 views

Blocking event subscription in compile time

Related to my previous question. Is there a way to block the subscription in compile time? Something like marking the event's "Add" as "private" in the implementor even though it's public in the ...
0
votes
1answer
513 views

How does a JMS Topic Subscriber in a clustered application server recieve messages?

Suppose I created a JMS Topic (PropertiesTopic) with one subscriber (PropertiesSubscriber). PropertiesSubscriber is running in a load balanced application server cluster as shown in the picture below. ...
0
votes
3answers
2k views

How to pause JMS topic subscriber from receiving messages

My setup: JBoss Messaging 1.4 running on JBoss 4.2.3 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. ...