问题标签 [fault]

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 回答
188 浏览

java - 创建容错系统 - 使用数据文件重新加载保存数据?

编辑 - 实现语言是 Java。

我想做一个简单的容错系统。

  • 对象 A - 此对象包含系统的决策逻辑。
  • 对象 B - 此对象将用于控制容错

我最初的想法是让对象 A 使用要保存到数据文件的变量值更新对象 B。然后对象 B 将创建一个数据文件,该文件将保存到平台系统的硬盘驱动器中。

我的问题是:如何使用对象变量的值创建数据文件,然后从数据文件中检索这些变量?当他们被调用时。

我很高兴将变量值写入记事本文件,然后从文件中调用它们

0 投票
0 回答
172 浏览

wcf - 用于故障的自定义数据合约序列化程序

有没有办法替换默认的数据合同序列化程序的故障?

可以通过替换DataContractSerializerOperationBehavior每个操作的默认值来附加自定义数据协定序列化程序。但这不会序列化/反序列化错误......

0 投票
1 回答
288 浏览

perl - XML::Compile::SOAP 和错误调用

我在尝试处理 SOAP 故障时遇到问题,我无法确定它是在我的一端还是另一端。

我正在使用 WSDL 文件,并且我有以下代码:

如果我使用正确的参数调用它,那么一切都会按照您的想法进行,如果哈希引用具有我正在寻找的结果,则 $response。

但是,如果我造成了错误,那么我将一无所获。$response 中没有任何内容(根据 Data::Dumper)。

问题是,$trace 里面确实有肥皂信封。肥皂信封在成功和失败/错误的 $trace 中都有,但只有在成功时,$response 中才有东西,在失败时,信封中的“faultType”和“faultData”应该在 $response .

难道我做错了什么?从我读过的所有内容来看,听起来我不应该做任何不同的事情,在出现故障的情况下,我们应该有类似 $response->{'fault'} 的东西,但就像我说的,$response 是空的。

关于我应该寻找什么的任何想法?

蒂亚!

0 投票
1 回答
692 浏览

objective-c - Cannot FulFill a Fault Error, Possibly ARC related

I have a singleton that contains variable called currentBusiness

I wired the currentBusiness property like this

In addition, I put a category for business to trap will turn fault

So, at first everything is fine. As expected [BNUtilities currentBusiness] supply the viewcontroller with necessary information. However, at random (though almost certain) location, if I change view, say I want to activate call (with simple code). Suddenly

There is absolutely nothing that I know that would change _currentBusiness. The underlying business is not deleted.

I also put tripwire on

and notice it's not reached. So _currentBusiness, out of nowhere suddenly become fault

This is the "normal" content of _currentBusiness

When it's faulted and break at

This is the result:

So yea I do some po and

It's as if the content of _currentBusiness is changed. current_Business is still there. It still have the same address.

What the hell is going on?

And no, it's not just fault. It's a fault it can't get out.

So I added further tripwire

I bet I can't unfault.

So this is the result:

and then

So the address of _currentBusiness doesn't change. The objectID doesn't change. Somehow it becomes fault. Also calling _currentBusiness.Title results in (null)

This doesn't seem to happen before ARC update though I am not sure if the ARC caused it.

0 投票
3 回答
1006 浏览

css - IE不会识别不重复?

好吧,我有一个网站,首页一直重复着这张图片。在 Chrome 上,只重复一次,就像我想要的那样。

0 投票
2 回答
2725 浏览

iphone - 核心数据。带有错误 NSManagedObjects 的 ExecuteFetchRequest(不在 RAM 中)

我需要执行获取请求。但是当我这样做时,我没有得到 fault NSManagedObject(每个对象大约为 5 Mb,这就是我收到内存警告的原因)。Apple为 Core Data 提供了出错的可能性(当对象未加载到 RAM 中时)。我希望我的对象使用这种可能性。

这是我的代码

谓词在哪里(id < 500)

应用程序崩溃后

因为对象的所有数据都出现在 iPhone 的 RAM 中。

似乎默认选项returnsObjectsAsFaults = YES不起作用。

0 投票
1 回答
65 浏览

.net - WCF:处理哪种异常

在 WCF 服务中,我会发生异常。

我在 serviceDebug 行为中有 IncludeExceptionDetailInFaults 属性。

如果我有这样声明的方法:

让我们想象一下,我做了一些在这个 SayHello 方法中生成 NullReferenceException 的事情。

客户端,我会收到什么?一个FaultException或一个NullReferenceException

我找不到任何关于此的文档。

非常感谢你

0 投票
1 回答
896 浏览

c - C指针分配:错误的地址和分段错误

我在这里遇到了一个非常奇怪的问题,希望有人可以帮助我。这就是代码。

通常一切运行顺利,但在某些随机情况下,我会遇到分段错误。我用 GDB 调试。通常列表和节点的地址都是0x80d4000,但是当发生Segfault时,节点的地址= 0x400。(列表仍然是 0x80d4000)。
我真的不知道这可能会出错,有什么想法吗?

0 投票
1 回答
177 浏览

web-services - 当 WSDL 没有为操作定义它时,我是否应该为故障做好准备?

我想知道当 WSDL 没有为操作定义错误时,我是否应该为错误做好准备。更具体地说,有一个仅使用输入定义的操作的 WSDL(见下文)。对我来说,这意味着我不应该为任何错误消息做好准备,并且在发送请求后,我可能会更进一步而无需查看 HTTP 响应。我说得对吗?

最好的问候,塞尔登

0 投票
3 回答
2582 浏览

linux - 我的脚本应该使用 cp 或 mv 来更健壮吗?

我有一个 bash 脚本(Scientific Linux)。该脚本必须对文件进行操作。假设“file.dat”(大约 1 GB 大小)一段时间后,脚本重新启动并执行以下操作:

备份文件。然后一个进程启动并覆盖“file.dat”

为了安全起见(断电或任何意外情况)。最好的选择是什么: cp 或 mv ?谢谢。