|
¿How can I debug this problem?
(I've got full tcpdump captures)
I have a TCP server into which many clients establish persistent connections. Normally all these clients behave, and I never reach the 1024 default Linux limit connections (open files) per...
Started by Fh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Basically, you are always comparing what should be happening with what is... .
The basic process is iterative, with the results from the previous step serving as the input for the next step of the analysis .
Protocol analysis is not hard, but it is tedious.
|
|
Are there any established/popular Flash Game Creation applications? If so, what are the pros and cons of each. Thanks.
Started by Nick on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you don't have these skills (and aren't interested in spending the time to acquire them) you're looking for something wherein... .
Flash itself is setup in a way that, with a small amount of programming and art skill, you can put together pretty simple games .
|
|
Hi, could you tell me plz - how to write tests for projects, which uses in model establish_connection to connect another database?
Started by Alexey Poimtsev on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
When you do establish....
You will not need to Test the establish_connection in that DB.
I don't see a need to change the test codes after you place establish_connection in your model since you still test the same model functionality.
|
Ask your Facebook Friends
|
So far, I've seen many different naming conventions used for PHP namespaces. Some people use PascalCase\Just\Like\For\Classes , some use underscored\lower_case\names , some even use the Java convention for package names: com\domain\project\package .
The...
Started by Ignas R on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Other local variables i'm also writing lower camelcase without....
Personally I like writing classnames upper camelcase, class attributes and methods lower camelcase and class attributes prefixed with an underscore .
The recommended naming guide is here.
|
|
Ok, consider this common idiom that most of us have used many times (I assume):
class FooBarDictionary { private Dictionary<String, FooBar> fooBars; ... FooBar GetOrCreate(String key) { FooBar fooBar; if (!fooBars.TryGetValue(key, out fooBar)) {...
Started by Johann Gerell on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It sort of depends why you're doing it - the idiom is one I've seen be called memoization, caching, initialisation on demand, create on first use... .
Lazy Loading
http://en.wikipedia.org/wiki/Lazy%5Floading
I always call such functions obtainSomething().
|
|
The application uses quickfixj library, which uses Apache Mina . This application keeps a socket connection to a remote host.
Suddenly we get the following error:
[SocketConnectorIoProcessor-0.0] - ERROR quickfix.mina.initiator.InitiatorIoHandler - socket...
Started by tuler on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The connection was being dropped by some switch because the machine bandwidth was too high (above the limit) .
Most firewalls kill an idle connection after some time.
|
|
Hi,
I'm developing a client/server application in .Net 3.5 using WCF. Basically, a long running client service (on several machines) establish a duplex connection to the server over a netTcpBinding. The server then uses the callback contract of the client...
Started by Jacob on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The channel level is a bit nicer, since you can plug it... .
Nicolas Allen, from the WCF team has suggestions for this:
http://blogs.msdn.com/drnick/archive/2007/11/05/custom-transport-retry-logic.aspx
His suggestion is to handle this at the channel level .
|
|
I am using Visual Studio 2008, and I had an ASP.NET dev configuration working fine, but today when I try to launch any ASP.NET project within the development web server, the browser opens, but I get an error Can't establish a connection to localhost:6...
Started by Joannes Vermorel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I've seen the 'no breakpoint' error when the application ... .
If so, stop it so it will restart when you launch the app from VS .
In the tray, verify there is no asp.net web server running .
I've ran into this before and would start with a couple of things .
|
|
Hi, I am sorry if this sounds like a silly question, but I have googled for a while for a solution and no success. I am trying to establish a connection from VS 2008 to SQL Server. I am trying to use an user that my web application has been successfuly...
Started by Marcos Buarque on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
With Visual Studio, you're connecting through a "remote" connection, even though they're on... .
This will isolate your problem a bit.
Do you have SQL Server Management Studio Express Installed? if so try connecting as the same user through that interface .
|
|
First off, I don't know if this is possible, but let me describe my scenario.
I have a set of WCF services, a SQL Server 2008 Database all running on Windows Server 2008. All of this works fine when I am connected to my LAN, however I am going to be using...
Started by Furis on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I understand, the DTC attempted to flow the transaction, failed to establish the address.
|