[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

Multi Thread PHP Port listener script.

Asked by phenixfilms in PHP Scripting Language

Tags: php, port, listener

Alrighty.....
To the person who can help i offer... 1 million dollars (contract subject to change as soon as you answer the question hehee)

so heres the idea... i need a script that sits on the server listening away for ever.  I connect via a socket to the server (using flash) Flash sends a command to the php listening script.  The script does some parsing magic etc and then echos results back to the swfs listening.  At the moment I have a script that listens and responds as mentioned above.... the problem however is if I have to swfs connected and listening at once.... the swf that connects to the socket first maintains priority until its closed... there for all requests for data by the second swf is ignored by the listener... I need to have multiple swfs make requests at virtually the same time and receive results back....  

Any help would be greatly appreciated.... below is what I have for the listener.

set_time_limit(100);

// Create the instance of the xml parse object //
$socket = socket_create( AF_INET , SOCK_STREAM , SOL_TCP);
   $isbind = socket_bind($socket, "10.10.0.103", 8787);
   if (!($isbind)){
      echo "Trouble Binding";
      return 0;
   }
   
   while($socket){
     socket_listen($socket, 10);
     $newsock = socket_accept($socket);
     $aSockets .= $newsock;
     $socketsCount = count($aSockets);
      if ($newsock){
          $indata = socket_read($newsock, 512);
          $xmlstring = $parse->parseinputxml("<xmls>" . $indata . "</xmls>",$xmlobject); //
          $string = "$xmlstring \0";
          socket_write($newsock, $string);
          socket_close($newsock);
      }else{
        echo "screwed up\n";
         
      }
 }
     
   socket_close($socket);
   echo "done\n";
[+][-]12/19/02 07:07 AM, ID: 7607876Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: PHP Scripting Language
Tags: php, port, listener
Sign Up Now!
Solution Provided By: fetak
Participating Experts: 5
Solution Grade: A
 
[+][-]12/17/02 11:54 AM, ID: 7597304Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/17/02 11:51 PM, ID: 7599795Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/17/02 11:56 PM, ID: 7599816Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/18/02 06:03 AM, ID: 7601092Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/19/02 10:27 AM, ID: 7608916Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/20/02 02:58 AM, ID: 7612718Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/20/02 03:12 AM, ID: 7612757Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/22/02 07:07 PM, ID: 7622413Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/23/02 12:20 AM, ID: 7623134Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/03/03 02:02 AM, ID: 7661215Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/25/03 03:05 PM, ID: 8206714Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92