Questions tagged [clients]

66 questions
1
vote
2 answers

C, Socket Programming: 1 Server 2 Clients connected by HUB, Chat Application Using TCP

I have codes for connecting and Chatting between 1 Server 1 Client as follows: /*Server Side*/ #include #include #include #include #include #include #include main() { …
Arindam
  • 33
  • 1
  • 1
  • 5
1
vote
2 answers

How can a server communiate with two clients at once (JavaScript, HTML, PHP)?

I got an assignment to do and for that I could use any www technology like HTML, JavaScript, PHP etc. I'm really sorry to say that I haven't studied any of these technologies. Therefore I took few tutorials and skimmed through them searching for…
PProudy
  • 11
  • 1
1
vote
1 answer

Java RMI NoSuchObjectException

I have a server and client using Java RMI. If I use one client all is fine with the code below. But if I connect with a client and then a second one, it throws port already in use exception. That's fine, so I disconnect the connected client and then…
Lightforce
  • 61
  • 1
  • 2
  • 5
1
vote
1 answer

provisioning hosted solution for SMEs on azure

i intend to build software for SMEs on the azure platform that can be provisioned for different clients..what i mean is, once the client signs up, a new instance is automatically created for them on the azure platform. Does anyone have any…
femi
  • 974
  • 2
  • 13
  • 44
1
vote
1 answer

Java Server having many clients connect without bottlenecking

So what I'm trying to do is have a socket that receives input from the client, put the client into the queue and then return a message to each client in the queue when my algorithm returns true. This queue should support a few hundred clients at…
Alex Pawelko
  • 414
  • 1
  • 4
  • 14
1
vote
1 answer

Sockets in .NET - Getting started with a multithreaded server

Networking in C# is something I am relatively new to and so I was wondering how to get started with it for a particular project. Ultimately, I want to develop a server which can have as many as one thousand clients connected to it concurrently (TCP…
Wapted
  • 33
  • 5
1
vote
1 answer

In Ansible, how can I fetch file from multiple nodes and store this in one file centralized?

All what I need is in title, for example I want to know how I can do somethings like that : --- - hosts: ansible-clients tasks: - name: Fetch source list from clients fetch: src=/etc/apt/sources.list …
Ilies
  • 13
  • 1
  • 4
1
vote
2 answers

C language - Sockets - A chat between two clients (using one server as middle man)

I need to write a chat program in C using sockets and I got stuck on my way. I have three files: server, client1, client2. My initial plan: - Client1 sends the messages to server Server receives it and sends it to Client2 Client2 receives…
ALar
  • 31
  • 1
  • 3
1
vote
1 answer

How do i receive messages periodically from Signalr to all Clients automatically ,without client input?

I am new to SignalR. I need to send message from SignalR to all connected clients automatically with some delay without client input ? The above process has to be repeated, while recursively? Is it possible? Without client input, the SignalR can…
Thiru Arasu
  • 293
  • 1
  • 5
  • 23
1
vote
0 answers

How do I validate more efficiently?

I don't know what everyone calls this but how do I make this piece of code shorter? I was taught to not repeat code and at the GetAddress() method the if statement I repeat the same line twice, once from the if statement and then another from the…
Static_x
  • 11
  • 1
1
vote
0 answers

How Can I Fix Reflected XSS Clients in Asp.Net

How can I fix a reflected XSS client problem on ASP.Net? Can anyone help me? The problem is below: Reflected XSS Client Method : ROW:563 Private Shared Function bindSiteMenu(TSql As String) As Data.DataTable .... 563. …
ekrem tapan
  • 147
  • 4
  • 15
1
vote
0 answers

Unity 5 Client Server Networking - Spawn and manipulate objects

I am working on a Simple Client Server system in Unity 5. I want to use the new HLAPI. But I have some questions. I can't spawn or edit objects, which are spawned on the server. I want to have 1 server, to which 2 clients will connect. On the server…
Kriss
  • 31
  • 2
1
vote
1 answer

Making Apache faster by adjusting KeepAlive, MaxClients and AllowOverride

I'm trying to configure apache to react faster. Currently I experience heavy lags and huge response times. When I googled for answers, there were articles mentioning KeepAlive, MaxClients and AllowOverride so my focus is on them for now, I guess. I…
1
vote
0 answers

Python Server Client Connection

I would like to know how to make it possible for a python server to wait for messages from 2 clients without any pre-assumption as to who would be messaging first. Can I do something like-- message=client.recv(BUFSIZ) or targetsoc.recv(BUFSIZ) Can I…
1
vote
2 answers

Can I develop an ipad app and distribute it to one client with a link?

I've read the related questions, but cannot find an answer for whether the following scenario can be solved on the apple platform. I want to create an app in Adobe Phonegap. I want this app to be deliverable to only one client with an iPad, with a…
Sevron
  • 493
  • 7
  • 18