Tagged Questions

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 ...
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
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
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
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" ...