The faults tag has no wiki summary.
0
votes
0answers
23 views
Which code smells are the most difficult to automate? [closed]
When using a automated bad smell detection tool such as one integrated in Eclipse.
Which of Fowler's bad code smells would be considered the most difficult to detect ?
1
vote
2answers
312 views
What literally means coreserviceshell.exe has 481.510 page faults?
This is the service which has the most Page faults on the services list in Win XP Professional. Also it is the most RAM consuming service i have running.
Page faults have to do something with paging ...
1
vote
1answer
204 views
Can't catch Java custom faults on WCF client
The problem is similar to this question: Does WCF FaultException<T> support interop with a Java web service Fault. However, in my case, the custom fault is indeed returned from the service.
...
0
votes
1answer
99 views
To retrieve the values for only one property of an entity in Core Data of iOS
I have an entity called "Records", and it has an attribute named "amount" of NSDecimalNumber class.
And of course "Record" has other attributes such as "name","date", and so on.
Now I need to fetch ...
0
votes
2answers
132 views
returnsObjectsAsFaults method of Core Data on iOS
I've read the document several times, but I still don't get what the "Fault" means?
Is it an Object or just a value?
And as a verb what would "Fault" do?
Thanks a lot!
1
vote
1answer
469 views
throwing exceptions->faults from SOAP service Java with GlassFish [duplicate]
Possible Duplicate:
JAX-WS - Map Exceptions to faults
I do not normally use java, but I being forced to write a service wrapper around a 3rd party library that I need. (So I can call it ...
1
vote
1answer
400 views
how to reduce page faults in this program?
I'm gating more then 1000 page faults in this program.
can i reduce them to some smaller value or even to zero ?
or even any other changes can speed up the execution
#include <stdio.h>
...
-4
votes
1answer
87 views
Java program with two or more exceptions caused by similar values [closed]
I am working on project where I am trying to find programs which give any exception but because of close values. Let me explain by an example. I will highly appreciate any help and support. In the ...
1
vote
1answer
168 views
Changing page mapping for a user process in the linux kernel
So lets say I have access to a process and its mm_struct, is there a way that I can change one of the mappings or remove a mapping and create a temporary one so that I can allocate an amount smaller ...
10
votes
5answers
510 views
To fault or not to fault
I'm having a discussion with a colleague about when to throw faults and when not to throw faults in a WCF service.
One opinion is, that we only throw faults when the service operation could not do ...
3
votes
3answers
832 views
Silverlight Faults
I;m trying to get WCF Silverlight faults working as per this :
MSDN aricle
After adding the SL fault to my Web.config file I get the following warning:
The element 'behavior' has invalid child ...
3
votes
1answer
290 views
WCF faults with SOAP
I'm confused on how I should return errors to a client using SOAP.
I have a wcf service, but I'm not sure what technology the client is using, so I'd like to stick to the SOAP specification.
As far ...
31
votes
10answers
23k views
“The creator of this fault did not specify a Reason” Exception
I have the following code in WCF service to throw a custom fault based on certain situations. I am getting a "The creator of this fault did not specify a Reason" exception. What am I doing wrong?
...
5
votes
4answers
218 views
How are you generating tests from specifications?
I came across a printed article by Bertrand Meyer where he states that tests can be generated from specifications. My development team does nothing like this, but it sounds like a good technique to ...