问题标签 [azureservicebus]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
1615 浏览

azure - 从 Silverlight 使用 Windows Azure 服务总线

是否可以从 Silverlight 应用程序调用托管在服务总线上的服务?我试着用谷歌搜索,但没有任何结果有帮助。

查看示例(EchoService),他们使用特定的 microsoft DLL 来设置服务的身份验证。我似乎无法将此 DLL 添加到我的项目中(呃,它适用于完整的 CLR),并且不确定如何在客户端复制其行为。

感谢您的帮助。

0 投票
3 回答
13386 浏览

azure - Azure:无法加载文件或程序集“Microsoft.ServiceBus”

我有一个要测试的应用程序结构服务。( http://xxx.cloudapp.net:8081/service.svc )。
我创建了一个控制台应用程序并向该服务添加了一个服务引用,并收到以下错误:

无法加载文件或程序集 'Microsoft.ServiceBus, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' 或其依赖项之一。该系统找不到指定的文件。

我从 C:\Program Files (x86)\Windows Azure platform AppFabric SDK\V1.0\Assemblies\NET4.0 添加了对 Microsoft.ServiceBus 的引用

我将项目中的所有程序集设置为 Copy Local = True,如下所示:http: //msdn.microsoft.com/en-us/library/ee706702.aspx

额外的尽职调查:我在 red-gate 的反射器中打开了 Microsoft.ServiceBus 并确认它是正确的版本。只是为了好玩,我还添加了对反射器中引用的每个程序集的引用,并将所有引用设置为 copy local = true。

还有其他想法吗?

…彼得

0 投票
1 回答
569 浏览

azure - 通过 Azure 服务总线发送对象列表

我正在尝试通过 Azure 服务总线发送对象列表,并想检查这是正确的方法。最初我尝试发送:

Listener 端点在集合中有产品对象,但是当它到达调用端点时,计数为 0。 List 也是如此(我预期的)

我已经通过使用 BrokeredMessage 列表让它工作了

我想检查这是正确的方法,或者 IEnumerable 是否应该工作......

谢谢

缺口

0 投票
1 回答
674 浏览

azure - Azure appfabric 服务总线负载均衡 + 会话亲和性(粘性会话)

我正在通过 Internet 进行搜索,我发现在 Azure 外部/内部端点上是不可能的...... Windows Azure 如何执行负载平衡?

但我正在寻找的是,服务总线上是否可以使用会话亲和性。我什至做了自己的研究,修改后EchoSample,但没有成功。我已经尝试ws2007HttpRelayBindingnetTcpRelayBinding最终得到:

System.ServiceModel.CommunicationException:远程端点不再识别此序列。这很可能是由于远程端点上的中止。srm:Identifier 的值不是已知的序列标识符。可靠会话出现故障。

那么,问题来了:可以做到“服务总线负载均衡+会话亲和”吗?

0 投票
5 回答
3233 浏览

sql-server - 通过 Azure 服务总线连接到本地 SQL Server

这可以通过一些 tcp 重定向实现吗?如果是这样,怎么做?

编辑:我想从辅助角色连接到本地 SQL 以执行一些自定义 ATS-SQL 同步。

0 投票
1 回答
1234 浏览

c# - How do I disable keep-alive for a basicHttpRelayBinding to the Azure service bus?

I'm trying to disable HTTP keep-alive, and I can't seem to find any documentation on how to achieve that. Ultimately, I am occasionally getting:

System.ServiceModel.CommunicationException: The underlying connection was closed: A connection that was expected to be kept alive was closed by the server

I've heard the best approach is simply to disable HTTP keep-alive.

0 投票
1 回答
576 浏览

f# - F# 方法指针“无法从此代码位置访问”

清单 Script.fsx:

我收到了这个错误:Script.fsx(22,43): error FS0503: The member or object constructor 'BeginCreateQueue' taking 3 arguments are not accessible from this code location. All accessible versions of method 'BeginCreateQueue' take 3 arguments.

所以它告诉我带有 3 个参数的方法是不可访问的,但是有一个带有 3 个参数的可访问版本?

0 投票
4 回答
4003 浏览

.net - 为什么 Azure 服务总线不受防火墙和代理的影响?

我想知道为什么 Windows Azure 服务总线通过 NAT、防火墙、代理工作。微软经常提到这个事实,但他们没有提到为什么会这样。

我认为每个参与者都会发起连接,好的,但这还不够。他们是否“滥用”了一些开放的端口,80?

谢谢

0 投票
8 回答
32729 浏览

.net - Clearing azure service bus queue in one go

We are using a service bus queue in our project. We are in need of a functionality to remove all the messages from the queue when the administrator chooses to clear the queue. I searched on the net but could not find any function which does this inside the QueueClient class.

Do I have to pop all the messages one by one and then marking them complete to clear the queue or is there a better way?

0 投票
3 回答
2548 浏览

azure - Azure 服务总线中的竞争消费者消息模式

我刚刚开始使用 Windows Azure 服务总线(主题和队列),我正在尝试实现竞争消费者消息传递模式。

本质上,我想要一组消息Producers和一组消息Consumers。生成消息后,我希望第一个可用的消费者处理消息。其他消费者不应收到该消息。

有没有办法在 Azure 中做到这一点?