servicebus

Not able to use REST API for Service Bus for Windows Server 1.1 (OnPremises)

爷,独闯天下 提交于 2019-12-29 01:18:05
问题 I am using the Window Server Service Bus 1.1. I am able to generate the OAuth token from the Window Server Service Bus using the following base address string baseAddressHttp = "https://" + ServerName + ":9355/" + Namespace + "/$STS/OAuth/"; For Window Azure Service Bus for sending a message to queue i can POST a request on the following queue address string serviceNamespace = "ServiceBusDefaultNamespace"; string queueName = "SampleQueuName"; string message ="This is my first message"; string

How can I create a windows service ACS by powershell? The server failed to authneticate the request

馋奶兔 提交于 2019-12-24 16:17:26
问题 So, I downloaded the azure powershell because I wanted to create a service bus namespace with an attached ACS by powershell, something that apparently cant be done anymore via the UI. http://msdn.microsoft.com/en-us/library/azure/dn170478.aspx Service Bus authentication through ACS is managed through a companion “-sb” ACS namespace. If you want a companion ACS namespace to be created for a Service Bus namespace, create your Service Bus namespace using the New-AzureSBNamespace PowerShell

Azure ServiceBus SAS key for a subscription

时光毁灭记忆、已成空白 提交于 2019-12-24 07:52:04
问题 I have the following architecture: 1 topic where a publisher publishes messages and 3 subscriptions. All messages are dispatched in the 3 subscriptions thanks to a "1=1" rule. The 3 subscriptions are created to provide the message published to 3 different apps. I have a SAS key for the publisher with the "Write" permission on the topic. I now need to create 3 SAS keys with "listen" permission for the 3 apps but I saw that I can't associate a key with a subscription, only with a topic or at

Sending message to Azure IoT hub partition

久未见 提交于 2019-12-24 06:58:22
问题 Does anyone know if there is a library that allows you to send a message to a specific partition on an IoT hub with Azure. I was previously able to achieve this with azuresblite library, unfortunatelly which I Cannot use. https://github.com/ppatierno/azuresblite 回答1: There is no way to send a message to a specific partition. Period. Partitions are used internally to allow scaling of the IoT (Event Hub) and allow for scaling out the consumer app (the one that reads the events out of the Hub).

Is there a messaging system for .NET+Mono with no external dependency?

和自甴很熟 提交于 2019-12-24 04:54:13
问题 I'm looking for a simple messaging system for .NET, that run as a library with no external dependency. The requirements are simple: I'd like to be able to call an external HTTP service, and if that service is offline or not responding for some reason, the system should queue the messages for later or discard previous and keep only the latest message, regular messaging stuff. But I'm looking for something that: Runs on Mono/linux Free/open source Have no external dependency, it should run as

Message bus and Message queue understanding

时光怂恿深爱的人放手 提交于 2019-12-24 04:51:14
问题 I would like to know if my understanding of Message Bus and Message Queue workings is correct. First thing first, I need to clear the naming, a service bus is used interchangeably with message bus ? It is a publisher-subscriber type of system where messages are added let's say to a message collection by any number of publishers and from where any number of subscribers can read, am i right so far ? P1 --- /``````S1 \________ Service Bus Middleware ------+------ S2 / MESSAGE-COLLECTION \_____

Connecting to Azure ServiceBus Queue

老子叫甜甜 提交于 2019-12-24 03:31:24
问题 I am developing my first Azure implementation, I have set up my azure account and i used NuGet to install The proper DLL's and configs to my application. when i set my WCF client to point to the Service Bus Queue and run the method i get this exception: Microsoft.ServiceBus.ServerErrorException at Microsoft.ServiceBus.RelayedSocketInitiator.Connect(Uri uri, TimeSpan timeout) at Microsoft.ServiceBus.ConnectivityModeConnectionInitiator.Connect(Uri uri, TimeSpan timeout) at Microsoft.ServiceBus

What exactly do we need to do to work with Service Bus on-premises from a Java client on Linux via AMQP

自古美人都是妖i 提交于 2019-12-24 03:06:38
问题 We are able to connect to an on-premises service bus (Windows Server Service Bus 1.1) using the following connection string: amqps://owner@FQDNofServer:5671/ServiceBusDefaultNamespace Writing to a topic with anonymous access enabled results in "Peer did not create remote endpoint for link, target: " Reading from a subscription results in some amqp internal error message. The Java samples from MS do not shed any light. Can someone [ from MS ] urgently provide the info? Apparently this is all

Why is it not recommended to host receive endpoints in a web application using MassTransit?

隐身守侯 提交于 2019-12-24 01:53:53
问题 I am working on an ASP.NET MVC 5 application (based on nopCommerce). I want to use MassTransit to communicate with another application that is used for inventory management, billing, etc. It would be easier if I could add receive endpoints directly into the web application and not have to create a Windows service for that. But the MassTransit documentation says it is not recommended and there is no explanation as to why that is. MassTransit in a web application Configuring a bus in a web site

Trying to communicate with azure service bus from android device using proton-j

邮差的信 提交于 2019-12-23 23:37:37
问题 I am trying to make an android app to talk to azure service bus using proton-j library When I try to add proton-j-0.11.1 jar file as library on my android project. Try to send to azure service bus but end up with an exception Broken EPIPe broken: 01-15 19:37:02.165: E/proton.messenger(822): Error processing connection 01-15 19:37:02.165: E/proton.messenger(822): java.net.SocketException: sendto failed: EPIPE (Broken pipe) 01-15 19:37:02.165: E/proton.messenger(822): at libcore.io.IoBridge