Tagged Questions
The fault tag has no wiki summary.
14
votes
4answers
236 views
Fault injection for .NET apps?
I am wondering if anyone knows of tools or techniques to automatically inject common faults into a running .NET program. Stuff like...
Randomly inject an OutOfMemoryException upon allocation
...
6
votes
6answers
6k views
Why do my WCF service returning a FaultException, time out after 10 calls?
I have a WCF service that sometimes has to return a Fault. For some reason, the calls to my service begins to time out with the following error:
"The request channel timed out while waiting for a ...
5
votes
3answers
965 views
Determine whether memory location is in CPU cache
It is possible for an operating system to determine whether a page of memory is in DRAM or in swap; for example, simply try to access it and if a page fault occurs, it wasn't.
However, is the same ...
4
votes
1answer
152 views
Strange segmentation fault in assembly
i have written a hexdump utility in assembly language using nasm compiler and ld linker.The programe is supposed to dump the hex values for any input file.However it segfaults at one particular ...
4
votes
1answer
280 views
When to use WCF Fault Exception
I have a simple WCF service that carries out a simple operation
[OperationContract]
DoSomething (Stuff input);
If an exception occurs inside DoSomething then a FaultException will be returned. Given ...
4
votes
4answers
485 views
Malloc, free and segmentation fault
I don't understand why, in this code, the call to "free" cause a segmentation fault:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char *char_arr_allocator(int ...
4
votes
3answers
707 views
WCF Message.CreateMessage, SOAP Faults and the “action” parameter
Greetings!
Here's the deal:
public static Message CreateMessage(
MessageVersion version,
MessageFault fault,
string action)
action: A description of how the message should be ...
3
votes
3answers
2k views
Coredata - “NSObjectInaccessibleException - CoreData could not fulfill a fault”
I am new to Core data and still figuring out the nuts and bolts and this error has been bugging me for hours and I cant seem to find a solution. Any help is greatly appreciated.
The problem is like ...
3
votes
3answers
490 views
FaultException.Detail coming back empty
I am trying to catch a given FaultException on a WCF client. I basically need to extract a inner description from the fault class so that I can then package it in another exception for the upper ...
3
votes
1answer
184 views
How to use glDrawVertex() function in ANSI C
I'm learning OpenGL, and now usage of function glDrawArrays() but I always get Segmntation fault on glDrawArrays call, i'm doing something wrong?
/*MESH*/
struct Mesh
{
GLsizei numVertices;
GLfloat ...
3
votes
1answer
400 views
WCF general fault is encrypted where protection level is sign only
If a general fault is raised on my service endpoint the fault response is undesirably and unexpectedly encrypted.
I have created an endpoint with a custom binding for interoperability reasons with a ...
3
votes
1answer
2k views
iPhone Core Data relationship fault
I am building a core data iphone app, and having trouble with retrieving one-many relationship data. Please bear with me while I explain.
I have used the data model designer to setup an entity called ...
3
votes
2answers
136 views
Software Fault Tolerance
Does anyone know how software fault tolerance is implemented in Air Traffic Control Systems?
Some URLs would be very helpful.
3
votes
2answers
682 views
Core Data cannot resolve faults when object has “description” attribute?
EDIT: see below for a fix, but I don't understand why the fix works. :)
Code:
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription ...
2
votes
2answers
109 views
Segmentation fault in file parsing code
I am getting a segmentation fault when I try to run my program that does matrix addition. I am trying to run the program separately ~1000 times (while timing each run and writing the result to a ...
2
votes
1answer
111 views
Memory fault error in LINUX but not in UNIX
We are running a ksh script that calls a ProC program that updates a table.
The program runs successfully in UNIX but when we run it in LINUX RHEL55 , it is causing a memory fault error
When we ...
2
votes
1answer
50 views
Throw exception from one-way operation
Assume that you have the following operation:
void AddCustomer(Customer)
(i.e. a Customer object as input and no output)
Complying to WS-I BP 1.1 you are not allowed to define fault messages for ...
2
votes
1answer
114 views
How do we prevent “CoreData could not fulfill a fault”?
We get "CoreData could not fulfill a fault" every once in a while. We have read through the Apple documentation but are unclear on what is allowed to be retained. We have been very careful about ...
2
votes
2answers
332 views
WCF - Throw an Exception or FaultException?
What's more efficient? Throwing an exception or throwing a fault... the way I see it is that there's 2 scenarios:
An exception occurred and is caught, do you throw that existing Exception or create ...
2
votes
1answer
180 views
How to use KSOAP fault-messages
I'm invoking a Java-based web-service with KSOAP2 for Android, and I would like to know how I can make use of the KSOAP fault-messages.
For example: The response-dump looks like this:
...
2
votes
2answers
171 views
typeinfo cause a segmentation fault
I hava a segmentation fault. debug with gdb, the first frame in the stack is
in the typeinfo for MyClass()
does someone know something about the typeinfo ?
2
votes
1answer
86 views
PHP 5.3 Windows Array assignment causes fault
I am struggling to understand why PHP is faulting without feedback or error (beyond windows error log, fault in php5 faulting module php) whilst executing the following block of code:
$projects = ...
2
votes
1answer
246 views
why segmentation fault in this program
I'm running ubuntu on x86_32...and I keep getting segmentation fault while running this program.
enter code here
#include<stdio.h>
#include<stddef.h>
char *memcp(char *dest, const char ...
2
votes
1answer
274 views
JVM Page Faults should be Zero, right? How High is OK?
OK folks, this is another "I think is a stupid question", but for clarity's sake warrants appearing foolish.
In the windows task manager for a properly-configured JVM, the page fault should be Zero ...
2
votes
1answer
168 views
What is the Practical Byzantine Fault Tolerance?
Can somebody please provide a gist of the Byzantine Fault Tolerant algorithm and Liskov's algorithm?
Thanks.
2
votes
1answer
399 views
Core data Relation Fault (not lazy loading) problem. Relations dissaper
I have a core data database which has (for now) 2 entities Product and CompetingProduct, CompetingProduct relation is set to-many with products.
I create 2 mock Products and 2 mock Competing products ...
2
votes
1answer
364 views
Custom SOAP Fault has wrong namespace http://schemas.datacontract.org/2004/07/
Hi there
I've defined a custom schema for a soap fault which looks like this:
...
...
I've genereated code in VS 2008:
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", ...
2
votes
1answer
423 views
Large number of soft page faults when assigning a TJpegImage to a TBitmap
I have a Delphi 6 Pro application that processes incoming jpeg frames from a streaming video server. The code works but I recently noticed that it generates a huge number of soft page faults over ...
2
votes
4answers
291 views
How to handle seg faults under Windows?
How can a Windows application handle segmentation faults? By 'handle' I mean intercept them and perhaps output a descriptive message. Also, the ability to recover from them would be nice too, but I ...
2
votes
2answers
119 views
How should I compensate for a bad WSDL?
I've come across several examples of SOAP-based web services where automated tooling fails to build a client that works.
Investigating these examples leads me to believe that the WSDL the service ...
2
votes
3answers
268 views
Fault Diagnostic Process
Has anyone created or seen a good fault diagnostic procedure for a web based solutions that an Operations team could use to do diagnostic and support with?
The solution is based on a C# system ...
2
votes
3answers
986 views
python web-services: returning a fault from the server using ZSI
I'm interested in writing a python client for a web-service, and for testing purposes it would be very interesting also to have a simple stub server. I'm using python 2.3, and ZSI 2.0.
My problem is ...
1
vote
1answer
67 views
Core Data -existingObjectWithID:error: causes error 133000
My app uses Core Data (with some help of Magical Record) and is rather heavily multithreaded using NSOperation.
Of course I am very careful to only pass around NSManagedObjectID between ...
1
vote
1answer
105 views
CXF WS, Interceptor: stop processing, respond with fault
I'm scratching my head over this:
Using an Interceptor to check a few SOAP headers, how can I abort the interceptor chain but still respond with an error to the user?
Throwing a Fault works regarding ...
1
vote
5answers
104 views
C using strcat getting segmentation fault
Here is my code :
char *name, name_log="log-";
------getting 'name' from user-----
strcat(name_log, name);
char ext[] = ".log";
strcat(name_log, ext);
What i need to end up with is name_log = ...
1
vote
0answers
43 views
Getting fault reason on InstanceContext fault event (WCF)
How can I get the exception that caused the channel to fault when handling the InstanceContext.Faulted event?
1
vote
8answers
145 views
Segmentation fault when running, but success when debugging
I have encountered a wired segmentation fault. I am developing a software in C using Eclipse CDT. When running my program on the terminal (Ubuntu 10, 64bits), it simply reports "Segmentation fault". ...
1
vote
1answer
115 views
Getting C++ Segmentation Fault error in recursive n-queen program
Basically, I have to write a basic program that solves the n-queen problem, which I have done, but it throws a segmentation fault if I input any number >=11.
From what I have read online, this error ...
1
vote
4answers
94 views
Newbie: Segmentation fault
Newbie to c coding.
Segmentation fault...i'm not sure what's causing it. Also, when passing the member pname into the function get_names, am I doing this correctly, or is there a better way of doing ...
1
vote
3answers
89 views
problem with OpenGL contexts
i have a program that does some GPU computing with Optional OpenGL rendering.
The use dynamic is as follow:
init function (init GLEW being the most relevant).
load mesh from file to GPU (use ...
1
vote
2answers
99 views
Need some help understanding faulting in Core Data
I have a Core Data entity that uses a custom subclass of NSManagedObject. I have a few instance variables and properties on it that aren't associated with Core Data attributes or relationships. An ...
1
vote
1answer
485 views
What exactly is a fault bucket and what causes it?
A have a Windows application which I've being running flawlessly for years, first on XP and now on Vista, just in the morning I copied the software to another Windows Vista Home 32 bits machine, and ...
1
vote
1answer
93 views
OS response to page fault
When a page fault occurs the MMU raises and exception (interrupt). The OS stops the current processes and addresses this raised interrupt.
1) Does this mean that (for 68K architecture where there ...
1
vote
1answer
77 views
JMX RMI agent fault tolerance mechanisms
I am using the JMX-RMI agent for message passing. I have a java program which sends a message having a name/id to a set of listener/listeners.Based on the message received by the listeners the client ...
1
vote
2answers
189 views
WCF F# - Handling Service Shutdown Gracefully on Client
I have some experimental code basically just trying to make a simple scenario work. I have one client that is streaming data to multiple services. The problem I have is that if one of the services ...
1
vote
2answers
232 views
Segmentation fault c++
When I run my program, I get the Segmentation Fault error. I believe it is coming from how I am using the array "string *words" which is privately declared in the class definition. I use it here in ...
1
vote
1answer
308 views
How to raise Suds.WebFault from python code?
I am trying to raise a Suds.WebFault from python code. The __init__ method\constructor takes three arguments __init__(self, fault, document). The fault has fault.faultcode and fault.detail ...
1
vote
1answer
275 views
Segmentation fault in overloaded operator>>
I'm trying to write code for an orthogonal linked sparse matrix.
Here's the question:
An alternative linked representation for sparse matrices uses nodes that have the fields down, right, row, col, ...
1
vote
2answers
133 views
Throwing a fault inside a behavior and returning it to client
I'm writing some services in WCF to be called by a Silverlight client. I change status code to 200 every time a fault is to be returned, via a IDispatchMessageInspector.
It works almost perfect, but ...
1
vote
3answers
138 views
Appended control's CSS problem
I've developed a Javascript Bookmarklet that have apeended div to current page.But problem is that, when div and its content loaded because of pages' original CSS codes (Bookmarklet has its own CSS as ...