azureservicebus

Azure service bus ACS issuer and key is missing

别等时光非礼了梦想. 提交于 2019-12-12 23:23:32
问题 I created some Service Buses today and besides having a specific type ("Messaging", my older buses are "Mixed") they don't give me any ACS information that I need. My old Service Buses do have this information. What I understand from this: Azure: How to createa a Access Control Service namespace for a Service Bus namespace? is that I might need to use Powershell Cmdlet which I have no knowledge of. Is there a way to add ACS to the Service Bus? And how? 回答1: Yes, you will need to use

Azure Servicebus AutoDeleteOnIdle

杀马特。学长 韩版系。学妹 提交于 2019-12-12 20:43:01
问题 I'm trying to figure out the correct behavior when setting AutoDeleteOnIdle. I have a topic called MyGameMessages (not disclosing the game name since it might be considered advertisement). What I do is that I create a subscription on each node in my server farm. var manager = GetNameSpaceManager(); _subscriptionId = Guid.NewGuid().ToString(); var description = new SubscriptionDescription(topic, _subscriptionId); description.AutoDeleteOnIdle = TimeSpan.FromHours(1); manager.CreateSubscription

send a full brokered message in azure service bus from an azure function

陌路散爱 提交于 2019-12-12 16:26:51
问题 I'm facing issue to send a complete brokered message to an azure service bus output in azure function in javascript. The documentation only show a simple body message https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus without any customerProperties. My attempts to create a full brokered message failed so far, everything goes into the body. var message = {'body' : 'test', 'customProperties' : {'fromsystem':'sap'}}; context.bindings.outputSbMsg = message;

Listen to Queue (Event Driven no polling) Service-Bus / Storage Queue

允我心安 提交于 2019-12-12 11:23:12
问题 I'm trying to figure out how can I listen to an events on a queue (especially an enqueue event). Say I have a Console Application and a Service Bus Queue/Topic, how can I connect to the Queue and wait for a new message ? I'm trying to achieve this without While(true) and constant polling, I'm trying to do it more in a quite listener way something like a socket that stay connected to the queue. The reason I don't want to use polling is that I understand that its floods the server with requests

Where is the Log for Azure Service Bus Topic Subscriptions Messages Sent/Delivered?

隐身守侯 提交于 2019-12-12 11:19:01
问题 After searching in vain... where can I see a log/list of which Azure Service Bus Messages (content?) have been sent to a given Topic+Subscription and which ones have been delivered? Do I have to activate a special feature? If so, which? New or "classic" Azure Management Portal? Thanks! 回答1: You can't do that in either portal to my knowledge. You can use something like Service Bus Explorer http://blogs.msdn.com/b/paolos/archive/2015/03/02/service-bus-explorer-2-6-now-available.aspx to see

Is Azure Service TopicClient Thread Safe & Reusable?

旧巷老猫 提交于 2019-12-12 11:18:07
问题 We are using Azure SDK to publish message to Service Bus. In Web API call we're doing these tasks repeatedly for each incoming request MessagingFactory factory = MessagingFactory.CreateFromConnectionString(conStr); factory.RetryPolicy = new RetryExponential(TimeSpan.FromSeconds(1), TimeSpan.FromSeconds(2), 3); var namespaceManager = NamespaceManager.CreateFromConnectionString(conStr); TopicClient topicClient = factory.CreateTopicClient(topicName); Can topicClient be converted into Singleton &

Worker - having trouble to choose the best technology [closed]

心不动则不痛 提交于 2019-12-12 09:27:42
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 3 months ago . I want to create a micro-service for parallel processing some tasks which I get via push by an Azure Service Bus. This micro-service will notify the Azure Service Bus if the task where complete with success or not. See the following diagram: I already have this three options

How to receive JSON object from the azure service bus topic subscriptions

余生颓废 提交于 2019-12-12 06:38:45
问题 I have doubt about to implement azure service bus receive messages from topic subscriptions. We are using multiple applications in our organization and we need to share data between one to other subsystems so that we are using azure service bus. Here one of my application has sent a message frequently to the service bus topic subscription. Whenever a new user account is created in our application every time the user profile data will be sending the data to the corresponding service bus topic

Error with Azure Function Service Bus Output Binding

℡╲_俬逩灬. 提交于 2019-12-12 04:37:17
问题 I'm having an issue with an Azure Service Bus output binding that I'm uncertain about how to proceed with. I've had no luck finding a similar question, so I apologize if this is a duplicate. I'm trying to use the local VS 2017 development process, so the function.json bindings should be generated automatically. The function signature is as follows: [FunctionName("RequestNewPaladinInvitation")] public static HttpResponseMessage Run( [HttpTrigger(AuthorizationLevel.Anonymous, "post")

Setup a Azure Service Fabric Listener for Service Bus Relay Binding

依然范特西╮ 提交于 2019-12-12 04:36:56
问题 I want to setup a Azure Service Bus Relay between my Service Fabric cluster hosted in Azure and my Private Network. I can't get the configuration of the Service Bus Relay to work from a Service Fabric WCF service. protected override IEnumerable<ServiceInstanceListener> CreateServiceInstanceListeners() { return new[] { // Standard WCF Listener new ServiceInstanceListener(context => new WcfCommunicationListener<IFooService>( wcfServiceObject: this, serviceContext: context, endpointResourceName: