active questions tagged communication - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T02:05:40Zhttp://stackoverflow.com/feeds/tag/communicationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1802475/what-is-the-easiest-way-to-do-inter-process-communication-in-c1What is the easiest way to do inter process communication in C#?genesys2009-11-26T09:10:14Z2009-11-26T12:27:42Z
<p>I have two C# applications and I want one of them send two integers to the other one (this doesn't have to be fast since it's invoked only once every few seconds).</p>
<p>What's the easiest way to do this? (It doesn't have to be the most elegant one.)</p>
http://stackoverflow.com/questions/1795699/reverse-engineering-of-communication-protocols4Reverse-engineering of communication protocolsJohnIdol2009-11-25T09:26:26Z2009-11-25T20:50:55Z
<p>Just curious - what are some automatic or even semi-automatic techniques for <strong>reverse-engineering of communication protocols</strong>?</p>
<p>I am particularly interested in the case when one's sniffing traffic and trying to understand the protocol.</p>
<p>I could find a <a href="http://scholar.google.com/scholar?hl=en&q=reverse-engineering+communication+protocols&btnG=Search&as%5Fsdt=2000&as%5Fylo=&as%5Fvis=0" rel="nofollow">number of papers on scholar</a>, but in my experience this is a completely manual process most of the times.</p>
<p>If anyone has experience in the field and feels like sharing it would be much appreciated.</p>
http://stackoverflow.com/questions/1790203/how-to-pass-information-from-running-code-to-visual-studio-add-in0How to pass information from running code to visual studio add-inDror Helper2009-11-24T13:53:53Z2009-11-24T13:53:53Z
<p>I've written a simple VS2008 add-in and I want to pass information to in whenever an event is called inside the code that runs within VS. </p>
<p>For example if I class A has raised an event (during debug session) I want to "tell" the add-in that an event had occurred as well as additional information.</p>
<p>Note: As part of the solution I can add custom code to the class running inside VS.</p>
http://stackoverflow.com/questions/1739142/from-a-management-pov-how-much-is-a-code-review-worth8From a Management POV: How much is a code review worth?Jorge Córdoba2009-11-15T22:46:39Z2009-11-23T20:26:36Z
<p>It's obvious to me that code reviews (peer reviews) improve the quality of the generated code.</p>
<p>I've worked hand to hand in some code with some of my coworkers and, specially with some of them, code was cleaner and a lot better. Reviewing other people code is not the same thing. You're not familiar with the code, you haven't made the vast majority of the design decisions and it can be quite frustrating until you really understand what's going on... even for the best written (non trivial) code.</p>
<p>I tend to always say that coding, no matter how fun it is, is part of a business for money so my question is: Is it really worth it? I would have two developers just to get a level of excellence that might as well be achieved by a little more time with just one of them. Have you found it useful anytime?</p>
<p><strong>Note:</strong> Altough I'm mostly a developer, I ask this from the manager point of view, from the "resource" (as in you're all just numbers) point of view :P</p>
http://stackoverflow.com/questions/1784938/what-do-you-wish-sysadmins-would-do-differently7What do you wish SysAdmins would do differently? [closed]osij2is2009-11-23T18:09:00Z2009-11-23T18:25:35Z
<p>In direct response to a post on ServerFault <a href="http://serverfault.com/questions/16698/what-do-you-wish-developers-would-do-differently">here</a>, the OP asked:</p>
<blockquote>
<p>..what do you wish I, and other
developers you deal with, would do
differently? What things would make
life easier for you, cause fewer
problems, encourage co-operation, and
reduce crashes, performance issues and
configuration nightmares?</p>
</blockquote>
<p>While the majority of my career has been as a programmer, I've also been a sysadmin. I can see issues/points from both "sides" of the IT fence. However, what would you as developers ask sysadmins to do differently to "make life easier for you, cause fewer problems, encourage co-operation, and reduce crashes, performance issues and configuration nightmares?"</p>
<p>Sorry for the plagiarism, but I thought the OP was a really good question and wondered what the developers think in contrast to the sysadmins.</p>
http://stackoverflow.com/questions/1779348/remote-servlet-comms0Remote Servlet Commsimerez2009-11-22T17:29:38Z2009-11-22T22:08:42Z
<p>I have two servlets A & B.
On B i intend to have a a method isAvailable() which A will call to check the status. If this method returns true then im going to pass it an object to B.</p>
<p>On doing a bit of reading i'm seeing a couple of options non of which im that familar with. JNDI with remote EJB , RMI or simple HTTP (not sure how youd do the last)</p>
<p>What do you guys think ? Any other options ?</p>
http://stackoverflow.com/questions/1774601/as3-and-mysql-or-xml-saving-user-votes-on-server-from-a-flash-movie1AS3 and mySQL or XML: Saving user votes on server from a flash movie.bguiz2009-11-21T05:27:00Z2009-11-22T13:05:38Z
<p>Hi,</p>
<p>A project of mine involves a flash movie (.swf) in a webpage, where the user has to pick from a number of items, and has the option to <strong>thumbs up</strong> or <strong>thumbs down</strong> (vote on) each item.</p>
<p>So far I have gotten this to work during each run of the application, as it is currently loading the data from an XML file - and the data is still static at the moment.</p>
<p>I need to persist these votes on the server using a database (mySQL), such that when the page is reloaded, the votes aren't forgotten.</p>
<p>Has anyone done this sort of thing before?</p>
<p>The two mains methods that I have found on the 'net are</p>
<ol>
<li>either direct communication between AS3 and the SQL using some sort of framework, or</li>
<li>passing the SQL query to a PHP file, which then executes the SQL query and returns the SQL to AS3.</li>
</ol>
<p>Which of these methods is the better option?</p>
<p>For the latter method (involving PHP), I have been able to find resources on how to acheive this when attempting to <strong>retrieve</strong> information from the database (i.e. a read operation), but not when attempting to <strong>send</strong> information to the database (i.e. a write operation, which is needed when the users vote). How is this done?</p>
<p>Thank you!</p>
<p><hr></p>
<h3>Edit: Implemented solution</h3>
<p>Somewhere in the PHP file:</p>
<pre><code>if ($action == "vote")
{
$id = $_POST['id'];
$upvotes = $_POST['upvotes'];
$query = "UPDATE `thetable` SET `upvotes` = '$upvotes' WHERE `thetable`.`id` = '$id' LIMIT 1 ;";
$result = mysql_query($query);
}
</code></pre>
<p>Somewhere in the ActionsScript:</p>
<pre><code> public function writeToDb(action:String)
{
var loader:URLLoader = new URLLoader();
var postVars:URLVariables = new URLVariables();
var postReq:URLRequest = new URLRequest();
postVars.action = action;
postVars.id = id;
postVars.upvotes = upvotes;
postReq.url = <NAME_OF_PHP_FILE>;
postReq.method = URLRequestMethod.POST;
postReq.data = postVars;
loader.load(postReq);
loader.addEventListener(Event.COMPLETE, onWriteToDbComplete);
}
</code></pre>
http://stackoverflow.com/questions/1773046/gui-and-windows-service-communication1GUI and windows service communicationStéphane2009-11-20T20:28:34Z2009-11-21T05:50:40Z
<p>I know since Vista, that C# can't hook a UI form directly to the windows service. This was stated on the Microsoft Site.</p>
<p>My question in this regard is: "What is the best mode of communication from a UI to the service?"</p>
<p>I have heard of Remoting, Web services, and direct TCP. Are there other methods? How do they rank against the previously mentioned methods? How complicated are they to implement?</p>
<p>My application is for intranet use, not internet. Microsoft platform will be on both sides, so interoperability is not a factor, but speed is. I mean I want to get across the smallest packet possible on the network.</p>
<p>TIA</p>
http://stackoverflow.com/questions/1774007/working-with-distributed-teams0Working with Distributed TeamsManav Sharma2009-11-21T00:12:23Z2009-11-21T00:20:07Z
<p>This question must be asked but I just want to ask it my way.</p>
<p>What is the best way to maximize engagement among members of distributed teams? Mostly in terms of communication,</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1771734/how-do-you-maintain-technical-contracts-between-development-teams0How do you maintain technical contracts between development teams?Ahmed Chaudhary2009-11-20T16:45:31Z2009-11-20T17:20:43Z
<p>For example team A and team B are working on different applications that need to implement a similar feature. The feature in question relies on a database and the database is under the control of team B. Even though the user interface of the two applications is based on different technologies, the functionality is supposed to be roughly the same. Both teams have their own requirements and design documents. The functionality can be changed based on feedback from either team but then both teams have to update their requirement and design documents.</p>
<p>The teams are geographically distributed and members of each team itself are also geographically distributed. Both teams work with the same client entity but different people. Each team has their own business analyst (requirements specialist).
I am trying to make the technical communication between the teams more formal than email so that we can avoid misunderstandings. </p>
<p>How do you make sure that if team B changes the database and or the feature functionality, the other team gets properly notified about it? Do you use some formal text based documents such as interface contracts? Can you share any templates for those? Or do you use some other mechanism?</p>
http://stackoverflow.com/questions/1437993/iphone-tcp-ip-socket-server-client-program0iPhone TCP/IP Socket Server/Client ProgramMark2009-09-17T10:35:08Z2009-11-20T11:00:06Z
<p><em>I have read a lot of questions regarding this subject on this website however they didn't quiet answer my question. If you can't be ### about my goal or background skip to the question.</em></p>
<p><strong>My Goal</strong> </p>
<p>Is to build a server that can run on Mac OS X 10.4+ and later, port it to Windows XP/Vista (no idea how to do that yet, but that's a problem for later). </p>
<p>Then let the iPhone be the client that is able to see the computer names that are running the server (through WiFi). The user of the iPhone can then select the computer name to connect to the server on that computer. </p>
<p>After that they can send simple text messages to each other. For example, the iPhone sends 'Knock Knock' and the server responds 'Who is there?'. Or a simple client: 'Ping', server responds 'Pong' will do just fine.</p>
<p><strong>Background</strong> </p>
<p>I have worked with sockets in the past, but only in Visual Basic 6 with the WINSOCKET.dll it was very easy to create a TCP/IP server.</p>
<pre><code>server.host = localhost;
server.port = 12203;
server.listen();
</code></pre>
<p>With the client I only needed to do the following to connect.</p>
<pre><code>client.connect(localhost, 12203);
</code></pre>
<p>There were some callbacks available like connect, close, dataArrival, etc. which I could use to do anything I want.</p>
<p>Perhaps for the iPhone there are libraries written for it, but is it that hard to create this simple application yourself? After doing some research I understand that I have to look in the area of CFNetwork, CFHost, CFSocket, CFStream. </p>
<p><strong>Question</strong></p>
<p>Is there anyone that could guide me to a tutorial or post the code where you have two buttons on the iPhone. [ Start Server ] and [ Connect to Server] where the first will start a TCP/IP server on a certain port and the second connects to it. </p>
<p>After a connection has been made maybe also the code to send a simple 'Ping'-message to the server after the server receives this responds with a 'Pong'-message to the client.</p>
<p>That would really be helpful. But maybe I am asking for to much here.</p>
http://stackoverflow.com/questions/1746216/two-way-communication0Two-way communication?xTohrux2009-11-17T02:26:20Z2009-11-17T02:26:20Z
<p>Hi, Now currently trying to combine a client and server application together so that the program itself can send and receive. I'm using NSNetservice for this program in xcode and anyone can teach how to make it like if I run the same program at different mac computer, one of the program will run as client another will be server and then vice versa. Thanks=)...</p>
http://stackoverflow.com/questions/1735504/tips-on-building-a-byte-protocol2Tips on building a byte protocolJeremy Rudd2009-11-14T20:33:00Z2009-11-14T21:17:01Z
<p>I'm communicating data between devices, and I have to program the protocol as an array of bytes.</p>
<p>Any tips when building protocols at a low-level? .. Eg:</p>
<ul>
<li>Use a 2 byte header, to send the length of the message before the data bytes.</li>
<li>Use a CRC/data validation scheme. (How do I do this? Any simple checksums?)</li>
</ul>
http://stackoverflow.com/questions/1472907/at-command-atcpmssm-sm-mt1 AT command AT+CPMS="SM","SM","MT"unknown (google)2009-09-24T16:49:38Z2009-11-14T18:38:37Z
<p>I needed a clarification about the AT command AT+CPMS="SM","SM","MT"</p>
<p>Although this AT command work with most of the UEs,it however gives an error msg with the Nokia N72...
I tried the AT command AT+CPMS=? & the mobile's response was "+CPMS: (),(),()" &
I tried the AT command AT+CPMS? & the response was "+CPMS: ,,,,,,,,".
Does this mean that the mobile does not allow the user to acces the memory location...</p>
<p>Also if possible could you tell me the at commands not supported by this phone or the alternate AT commands for the mobile.</p>
<p>Help on this will be very much appreciated!!!</p>
http://stackoverflow.com/questions/1724542/vocabulary-for-protocol-dataflows0vocabulary for protocol dataflows?Jason S2009-11-12T18:58:16Z2009-11-12T19:01:06Z
<p>I'm having a mental block for the words describing data flow in a communications protocol + google isn't helping, due to information glut.</p>
<p>In the following scenarios A and B are communicating to each other.</p>
<ul>
<li><strong>command</strong> or <strong>request</strong>: a packet of data going from A to B indicating that B should take some kind of action</li>
<li><strong>response</strong>: a packet of data going from B to A in response to a particular packet that A has previously sent to B.</li>
<li><strong>acknowledge</strong> or <strong>ACK</strong>: a specific kind of response that just indicates Yes I got that packet of data. (<strong>negative acknowledge</strong> or <strong>NAK</strong> indicates No there was some problem receiving data)</li>
<li><strong>{X}</strong>: unsolicited information either from A to B, or B to A, which is neither a response, nor a request for the recipient to take action. Examples: datalogging packets, notification packets, etc.</li>
</ul>
<p>I can't think of what to call {X}, I'm having a brain cramp.</p>
<p>Also are there other common words in this category? Where would you look them up? </p>
http://stackoverflow.com/questions/1722993/multiple-programs-using-the-same-udp-port-possible0Multiple programs using the same UDP port? Possible?ThantiK2009-11-12T15:22:37Z2009-11-12T16:47:22Z
<p>I currently have a small Python script that I'm using to spawn multiple executables, (voice chat servers), and in the next version of the software, the servers have the ability to receive heartbeat signals on the UDP port. (There will be possibly thousands of servers on one machine, ranging from ports 7878 and up)</p>
<p>My problem is that these servers might (read: will) be running on the same machine as my Python script and I had planned on opening a UDP port, and just sending the heartbeat, waiting for the reply, and voila...I could restart servers when/if they weren't responding by killing the task and re-loading the server.</p>
<p>Problem is that I cannot open a UDP port that the server is already using. Is there a way around this? The project lead is implementing the heartbeat still, so I'm sure any suggestions in how the heartbeat system could be implemented would be welcome also. -- This is a pretty generic script though that might apply to other programs so my main focus is still communicating on that UDP port.</p>
http://stackoverflow.com/questions/1707940/send-string-to-serial0send string to serialStefano2009-11-10T13:23:21Z2009-11-10T14:14:27Z
<p>Buongiorno,
I'm trying to send a simple string to a serial port to command an instrument for noise measures.<br>
The strings are very easy:<br>
"M 1" = instrument on<br>
"M 2" = instrument off<br>
"M 3" = begin the measure<br>
"M 4" = stop the measure<br></p>
<p>I've found this program:</p>
<pre><code>import serial
ser = serial.Serial(0) #Seleziona la porta seriale COM4
ser.baudrate = 9600 #Imposta il baudrate a 9600bps
ser.open() #apre la porta com
ser.close()
#verifica se la porta e' aperta
if ser.isOpen():
com_num = ser.portstr
print ("Porta " + com_num + " aperta")
#invia il comando alla seriale
buffer = "M 3"
ser.write(buffer)
#Loop d'attesa caratteri
num = 0
while num == 0:
num = ser.inWaiting()
#scarica il buffer della seriale
buffer = ser.read(num)
print ("Dati ricevuti dalla seriale:")
print buffer
ser.close() #chiude la porta
else:
print ("Porta seriale gia' in uso o inesistente")
s = raw_input("digita INVIA per uscire")
</code></pre>
<p>USING LINUX<br>
The program is ok and I have only some problems with the type of string. In fact I had to insert a carriage return but I can't to do it. <br>
I said that the program is okay because the instrument turn from off to on when I made my first connection, and on video I read "Porta /dev/ttyS= aperta" thet means "open". But this appens for any kind of string I send. In fact this is like an "iniatilization" of the port, not a really communication.<br>
Then I don't manage to send string in the correct way, may be for the problem of carriage return.</p>
<p>USING WINDOWS<BR>
I can't open the port, I have an error of Denied Access to the port, this is the error: <br>
<code>
Traceback (most recent call last):<br>
File "C:/d.py", line 9, in <br>
ser.open() #apre la porta com<br>
File "C:\Programmi\Python26\lib\site-packages\serial\serialwin32.py", line 53, in open
raise SerialException("could not open port %s: %s" % (self.portstr, ctypes.WinError()))
serial.serialutil.SerialException: could not open port COM1: [Error 5] Accesso negato.</code></p>
<p>Can you help me to:<br>
1. Manage to run the program under windows<br>
2. Manage to give in the exactly way the string with carriage return???<br></p>
<p>Thak you very much.<br>
Stefano</p>
http://stackoverflow.com/questions/1693021/how-are-sync-words-chosen4How are SYNC words chosen?geschema2009-11-07T13:26:55Z2009-11-08T22:42:43Z
<p>I'm using a data transmission system which uses a fixed SYNC word (0xD21DB8) at the beginning of every superframe. I'd be curious to know how such SYNC words are chosen, i.e. based on which criteria designers choose the length and the value of such a SYNC word. </p>
http://stackoverflow.com/questions/1692716/will-messages-between-wcf-services-hop-over-a-wifi-network-wlan0Will messages between WCF Services hop over a WiFi Network/WLAN?Jeremy Rudd2009-11-07T11:11:38Z2009-11-08T04:39:57Z
<p>In my office building we have laptops on multiple floors all running a WCF Service. When WCF services communicate with each other, will a message for an out-of-range device automatically reach it by multi-hopping? Does WCF/the WLAN device driver handle this? Or do I have to detect if a device is not contactable/out-of-range and implement hopping in my own service?</p>
http://stackoverflow.com/questions/1694144/can-two-application-listen-to-the-same-port0Can two application listen to the same port?nadiv2009-11-07T19:32:23Z2009-11-07T20:19:16Z
<p>As simple as it gets - can two application on the same machine bind to the same port and ip address? Taking it a step further, can one app listen to requests coming from a certain ip and the other to another remote ip?
I know I can have one application that starts off two threads (or forks) to have similar behavior, but can two applications that have nothing in common do the same?</p>
<p>thanks.</p>
http://stackoverflow.com/questions/1692748/can-multiple-wcf-services-communicate-with-each-other0Can multiple WCF services communicate with each other?Jeremy Rudd2009-11-07T11:24:22Z2009-11-07T12:06:47Z
<p>I'm just beginning WCF and so I don't understand exactly how the abstraction works. Can I write a WCF service and install the same thing on multiple machines, and have them communicate via some ID? I'm looking at sending/receiving commands, and continuous real-time data being sent between devices.</p>
http://stackoverflow.com/questions/1692092/how-can-two-c-apps-send-messages-over-a-wifi-network1How can two C# apps send messages over a WiFi Network?Jeremy Rudd2009-11-07T05:25:31Z2009-11-07T06:11:28Z
<p>Lets say I have my C# app installed on 2 laptops connected to a WiFi Wireless Local Area Network.</p>
<p>How can these apps send messages to each other? What method or library can I use? I heard of using sockets but I have no idea how to work with these.</p>
http://stackoverflow.com/questions/1691438/what-is-the-cause-of-intermittent-asyncexceptionoccurred-errors-in-a-silverlight0What is the cause of intermittent Async_ExceptionOccurred errors in a silverlight app?Craig Shearer2009-11-07T00:32:47Z2009-11-07T00:32:47Z
<p>I have a Silverlight 3 app deployed at multiple customer sites. Customers are occasionally getting a System.Reflection.TargetInvocationException with an inner exception of Async_ExceptionOccurred.</p>
<p>What is the cause of this? Is it just unreliability in the communications with the server? Is there any way to configure WCF to do an automatic retry of messages?</p>
http://stackoverflow.com/questions/1682911/reliable-bidirectional-communication-to-a-linux-process2Reliable bidirectional communication to a Linux process?jldupont2009-11-05T19:17:59Z2009-11-05T20:01:35Z
<p>What is the reliable way of implementing bidirectional communication to a Linux process?</p>
<p>I see that <a href="http://linux.die.net/man/3/popen" rel="nofollow">popen</a> does not seem to support "r" and "w" access at the same time... or at least that's what is implied:</p>
<p><code>The type argument is a pointer to a null-terminated string which must be either 'r' for reading or 'w' for writing.</code></p>
<p>(I am so missing Erlang at the moment)</p>
http://stackoverflow.com/questions/363591/why-do-programmers-have-such-ridiculously-prickly-personalities25Why do programmers have such ridiculously prickly personalities? [closed]CodingWithoutComments2008-12-12T17:47:51Z2009-11-05T18:03:29Z
<p>Originally asked on Reddit <a href="http://www.reddit.com/r/programming/comments/7j2mw/why_do_programmers_have_such_ridiculously_prickly/" rel="nofollow">here</a>, I found this question interesting. Since I've started programming 10 years or so ago, my personality has gotten <strong>more</strong> prickly as I pack on more and more years as a programmer. Why is this?</p>
<p>I'll post glomek's answer on Reddit to start the conversation. It was the answer most modded up.</p>
<blockquote>
<p>I suppose that you might have just
been unlucky enough to hang out with
the wrong programmers, but I'll give
the ones you know the benefit of the
doubt and assume that they are more or
less normal.</p>
<p>Programmers are detail oriented. If we
leave out one character by mistake we
can introduce a subtle data corruption
bug or a crashing bug.</p>
<p>We work very hard to say exactly what
we mean. When interacting with us, it
is easy to get the sense that we are
pedantic assholes because we are
frequently asking for clarification on
trivial points that you haven't
thought about or correcting what seem
like unimportant mistakes in what you
say.</p>
<p>What you need to understand is that
all of those annoying pedantic points
are things that we need to understand,
and that we need to understand
correctly, if we are to have any hope
of giving you anything useful.</p>
<p>So try to be patient with us. If we
seem to be demanding unreasonable
levels of detail, please remember that
it is because we need them in order to
give you what you want.</p>
<p>The typical computer program cannot
have judgment. It cannot "understand"
much of anything. It mindlessly
follows a bunch of instructions, no
matter how sensible or stupid those
instructions are. Getting those
instructions right is our job, but in
order to do it we need to understand
the task at hand. We need to
understand it completely,
unambiguously, down to every last
decision, without any "rules of thumb"
or "do what makes sense" type of
steps, not even any trivially
insignificant ones.</p>
<p>Also, we tend to complain when you
change your mind about what you want
after we have written it. This is
because programs are delicate things.
They tend to only be easy to change in
ways that they were designed to be
changed. Changes that were not
anticipated in the initial design can
be very difficult and time consuming,
and are dangerous as they can
introduce subtle bugs. If you think
over your experiences, I'll bet that
most of the time when a program took
longer to deliver than you wanted, you
changed your mind about something
after development had started.</p>
<p>Now you might have thought that the
change was a small one, but it
probably wasn't small at all to the
programmer.</p>
<p>So, if you want to get along with
programmers, I can offer these two
pieces of advice that will make it
much easier:</p>
<ul>
<li>Figure out what you want. Completely.</li>
<li>Don't change your mind once development begins.</li>
</ul>
<p>Obviously, these cannot be done all
the time, but do your best, and
whenever you fail, understand that it
is your fault, and not the
programmer's, that the conversation is
difficult or the product is being
delayed.</p>
</blockquote>
http://stackoverflow.com/questions/1680898/communication-between-two-separate-java-desktop-applications5Communication between two separate Java desktop applicationsWilliam2009-11-05T14:26:20Z2009-11-05T16:24:59Z
<p>I'm looking to develop two separate (but related) Java desktop applications.</p>
<p>I want the ability for one application to trigger the other, passing in data that can then be edited and passed back, i.e. the communication will be two way. If the other application is already running I want them to just communicate, i.e. I dont want to just pass arguments over the command line, etc.</p>
<p>Generally speaking, what strategies/techniques should I be looking at in order to achieve this?</p>
http://stackoverflow.com/questions/1128907/java-need-efficient-notifications-between-site-users2Java: Need efficient notifications between site users.serg5552009-07-15T01:16:19Z2009-11-05T03:25:03Z
<p>I have a simple ajax game between 2 users with java backend (tomcat, spring). I need some good way of notifying one user that his opponent made a turn. Now all communication is done through database and waiting for opponent to finish his turn looks like this:</p>
<pre><code>while(!timeout && !opponentIsDone) {
//...get the game record from db and check if opponent made turn
Thread.sleep(100);
}
</code></pre>
<p>Can I somehow get rid of this loop with sleep() and get instantly notified without a delay (but with timeout)? I can probably make some global static var and communicate through it, but I still will need similar loop only maybe timeout will be smaller. </p>
<p>I can't just call some method once the turn is done because it is all need to go to the browser through ajax and I can't push data there, only pull. So I need to have process that waits for the opponent.</p>
<p>I am looking for some light and simple solution.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/229131/java-what-are-the-best-techniques-for-communicating-with-a-batch-server3java: what are the best techniques for communicating with a batch server?Pier Luigi2008-10-23T09:41:38Z2009-10-30T20:12:34Z
<p>Hi all,
I've a WEB application (with pure Java servlet) that have some heavy computational work, with database access, that can be done in asynchronous mode.
I'm planning to use a dedicated server to execute such batch jobs and I'm wondering which tools/techniques/protocols to use for communication between servlets in the WEB server and batch jobs in the new dedicated server.
I'm looking at JMS. Is it the right choice?
There are industry standard and/or widely adopted techniques?
I need also queue and priority handling for multiple simultaneous jobs.</p>
http://stackoverflow.com/questions/1563280/programmer-not-a-blogger68Programmer, not a bloggerSomeone2009-10-13T22:22:27Z2009-10-29T21:45:02Z
<p>I need advice from people who might understand where I'm coming from. I'm the lead engineer on a software product. The company I'm working for recently expressed serious interest in having me blog about it (much to my dread). They even had someone set me up a blog.</p>
<p>I have aspergers disorder.. I'm really good at taking complex software problems and finding wonderfully elegant solutions. I don't know the first thing about writing interesting and engaging text. Writing for me is a difficult problem, one that doesn't have a defined solution.</p>
<p>I'm really struggling with this and it eats into a lot of time I could spend getting things done. I love the company I'm working for, but I'm worried what it'll mean if I tell them I can't do it.</p>
<p>I don't know how to tell my employer that what they are asking for is something that's totally beyond me.</p>
<p>Help or advice anyone?</p>
<p>UPDATE:</p>
<p>Thank you everyone! Wow, such great responses, lots of great advice!! It was very hard and took a long time, but I was able to do it. I'm going to stick with it a bit longer in hopes that it gets easier (the first post is probably the hardest, because it sets the tone and such). Thanks for the kind words, all the advice, and even for the kicks in the pants!! =)</p>
http://stackoverflow.com/questions/1569303/how-to-connect-to-a-sql-database-using-classic-asp0How to connect to a sql database using classic asp? joel2009-10-14T22:13:23Z2009-10-27T21:20:33Z
<p>Help please solve this problem.</p>
<p>Never mind</p>