问题标签 [wsat]

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 投票
1 回答
194 浏览

algorithm - 为什么 WSAT 优于模拟退火?

在一些期刊上,我读到 WSAT(步行 SAT)算法在解决 SAT 问题方面比模拟退火算法具有更好的性能。

所以我的问题是,有人可以解释为什么我们得到这个结果吗?可能是因为 SA 更像是一种通用算法?


编辑: 可能是我读到的最相关的文件。

0 投票
1 回答
32 浏览

jboss - 集群 WS-AT Web 服务

有谁知道是否可以使用 JBoss 集群 WS-AT Web 服务?

提前致谢

莱安德罗

0 投票
1 回答
581 浏览

azure - 如何为 Azure 应用服务启动网站管理工具 (WSAT)?

当您的网站作为应用服务托管在 Azure 中时,是否可以启动 WSAT?

我正在尝试管理 ASP.NET 成员系统(基于 SQL)中的用户和角色。根据这篇 MSDN 文章(下面的链接),您可以从 Visual Studio 启动 WSAT。我认为这只有在 VS 与 IIS 安装在同一台机器上时才有效。没有提到与 Azure 应用服务相关的 WSAT。我的 Visual Studio 2015 中没有这样的选项(是的,我将项目转换为网站)。似乎我应该能够从 Azure 门户启动 WSAT,但我在那里找不到它。

https://msdn.microsoft.com/en-us/library/yy40ytx0.aspx 如何访问网站管理工具 要访问网站管理工具,请在网站菜单上单击 ASP.Net 配置。

0 投票
1 回答
18 浏览

msdtc - MSDTC WS-AT, HTTP could not register URL https://+:2372/WsatService/. Your process does not have access rights to this namespace

On a Windows Server 2012 machine, I have a local DTC and a clustered DTC, as you can see here:

Component Services showing local and clustered DTC

Here you can see the clustered DTC in the Failover Cluster Manager:

Failover Cluster Manager showing DTC resource

I have enabled WS-AT with the following command on the clustered DTC:

For the endpointCert, I gave the thumbprint of the certificate for ftsappdev (the cluster role), and for accountscerts, I gave the thumbprint of the certificate of a JBOSS server.

I also have configured WS-AT for the local DTC through the WS-AT tab in Component Services:

Component Services DTC node WS-AT tab

In Failover Cluster Manager, when I take the clustered DTC resource offline and then online, I get the following entry in the Eventviewer/Application:

Event viewer showing entry upon clustered DTC restart

In Component Services, when I restart the local DTC I get the following entry in the Eventviewer/Application:

Event viewer showing entry upon local DTC restart

Both DTCs run under the user Network Service:

Component services, Services node, showing DTC services

Task manager showing MSDTC processes

  1. Why does the clustered DTC not have access rights to this namespace, whereas the local DTC has? Both run under the same user.
  2. How can I make the clustered DTC to register the URL https://+:2372/WsatService/ successfully?
0 投票
0 回答
31 浏览

java - 抛出异常时,Weblogic 12c 不提供 SOAP 错误的详细信息

我们正在使用原子事务在 Weblogic 12c 上运行 Web 服务。当抛出异常时,错误消息不会通过 SOAP 故障传播到客户端。

已经尝试抛出 WebServiceException、RuntimeException 和 SOAPFaultException,总是相同的行为,客户端只收到一个 HTTP ERROR 500,但缺少详细原因:

0 投票
2 回答
37 浏览

.net-4.0 - IBM MQ 不会在 WS-AT 事务中回滚

我有一个与MQ Queue transaction not rolling back in a 2 phase transaction 中描述的情况类似的问题。我有一个 .NET 客户端,它在一个事务中执行以下操作:

  1. 将一条记录写入第一个数据库。
  2. 将一条消息放入 IBM Websphere 8.0 MQ 系列队列。
  3. 使用 WS-AT 调用 Web 服务,如https://developers.redhat.com/quickstarts/eap/wsat-simple中所述。
  4. 将一条记录写入第二个数据库。

当 Web 服务回滚时,两个数据库回滚,但 IBM MQ Series 队列不回滚。当一个数据库出现故障时,IBM MQ Series 队列会回滚。

RestaurantTransactionPOC 方法在继承自 System.EnterpriseServices.ServicedComponent 的类中运行,也就是说,它在 COM+ 下运行。

下面是 RestaurantTransactionPOC 的代码:

当 WS-AT makeBooking 服务回滚时,为什么 IBM MQ Series 队列不回滚?