I have an apllication written in .net C# and it sporafdically crashes (not responding) the windows event log ahd the following message.
Assume that you have the following operation: void AddCustomer(Customer) (i.e. a Customer object as input and no output)
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 ex
Say I have an Entity \'Employee\' with a to-many relationship \'departments\' to another entity \'Department\'.If I have an instance of an Employee object and the departments collection is currently a
We have a custom exception 开发者_运维问答handling behaviour (implementing IErrorHandler) in our solution which essentially uses Automapper to convert exceptions to faults.
I am on Mac OS X 10.6.8 using Xcode 4 with Cocos2D. The other day, I got an error message out of the blue when trying to run my project:
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
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 does
This piece of code is part of a large source code but the bug is here. int solve(int* unsolved_var) { int i;
I have a java server that serve many clients using Sockets In case of a failure of the main server I wanted a back server to take over automaticaly.