Hello,
I have this prog, just a skeleton for a simple sever and client connection. I will make it a chat.
(dont mind the thread func and signals..)
server:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <time.h>
#include <string.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/socket....
Hello,
I want something similar with php/jsp in java, but not on the server side, but on the client side.
Maybe I can make a html file with i/o, or with some net.* classes. But what can I use for the button on the html page ?
Thank you
...
Possible Duplicate:
What should I ask a prospective client during initial meeting?
Hi,
What Should I ask the client in first meeting for a project? Project is about an enhancement of existing functionalities of client's product with domain Web Conferencing.
Note: I'm a software developer, so I'm looking this space for tech...
I was wondering if there were any desktop application for trying out XML-RPC calls which would show me the response.
Web based applications are also welcome. Thanks
...
I have been looking at Zend AMF and AMFPHP to see if either can operate as a client and I am not finding anything that says it definitely can or cannot operate as a client.
Is this possible withe either of these libraries? Are there other solid AMF libraries for PHP that will provide a client interface?
...
I know how to detect if Flash player is installed in a browser. I'm using the hasFlashPlayerVersion() function of swfobject for that. However, I can't seem to find any documentation on how to detect if the plug-in is installed and just disabled. I didn't see any documentation in the Flash Player Detection Kit that checks if the plug-in i...
what is maximum size of thick/thin client application(to d/w through OTA) in both Android & Samsung Bada platform ?
...
According to the documentation, the apache http client is supposed to automatically redirect. I am submitting a post to a server, and it has a redirect. Unfortunately, the response handler is giving back an empty string. It just isn't following the redirect and giving me that content directly. Is there an easy way to get the client to fo...
Hey I am not sure if this has already been asked that way. (I didn´t find anwsers to this specific questions, at least). But:
I have a program, which - at startup - creates an Login-window in a new UI-Thread.
In this window the user can enter data which has to be verified by an server.
Because the window shall still be responsive to th...
Looking at twisted.words.protocols.irc.IRCClient, it seems to me like there are some strangely redundant methods. For instance, there is a method 'privmsg' but also a method 'irc_PRIVMSG'
As another example consider 'join' and 'irc_JOIN'
What I want to know is why the redundancy, those are just two examples of many. Are the two differe...
Hello, I'm trying to write a client-server console application on C# using UDP.
And i have one question.
So, when i send command from client to server - servers must have a read IP adress.
client must get some settings from server,but in this case client must have real IP adress too. Other application like games do not require client rea...
I have read from one of the blog, for security reasons, its suggested to do the
input data validation at the server side not the client side.
From the above statement, My mind started to ask then
1) what kind of validation i can do with JS in the client side.
2) Is there any rule where any programmers can decide where the validation n...
Hi,
I am writing a client using libsoup APIs.
I have done the following.
`session = soup_session_sync_new();
msg = soup_message_new("GET","http://www.google.com");
status = soup_session_send_message(session,msg);`
However now i am getting the following error code in status. I print the reason phrase and it says the status= 4 , msg-...
I am working on a task which is to get the client certificate when the user sends a request to the server. I have to get the certificate and get the 3 pieces of information from the certificate: user name, user's email address and user's firm name.
At first it seems quite simple to just get the "Subject CN" for user name, "Subject E" fo...
In TCP Multi Threaded Server, if a client gets service ,how to find the port number of servicing socket?
From sun java tutorials
When a connection is requested and successfully established, the accept method returns a new "Socket object" which is bound to the same local port and has it's remote address and remote port set to that of th...
Hi Again,
I have managed to integrate spring security to my GWT application using the following approach:
http://technowobble.blogspot.com/2010_05_01_archive.html
Note that I used the gwtrpcspring library for basic spring integration with GWT and it works well (non-invasive and efficient).
My question for which I can't seem to find t...
I've got a WPF windows client that calls a WCF web service. The user is already logged in on the windows domain before starting the application and the WCF service uses windows authentication.
I want the WPF client to use the WindowsPrincipal of the already logged in user when calling the WCF service. I do NOT want to create a new Netwo...
Can You please give me some clear idea about Socket / Port / IP address and how they are working each other in a Client Server Program?
...
Hi all, I'm familiar with generating office documents server-side by including the following at the top of the response:
<%
Response.Buffer = True
Response.ContentType = "application/msword"
Response.AddHeader "content-disposition", "inline; filename = ASP_Word_Doc.doc"
%>
I'm currently facing the challenge of doing this purely client...
Microsoft has provided surprisingly small amounts of information regarding this issue or I do not know enough about the problem to locate the documentation.
When consuming web services using the traditional VS2005 and .NET 2.0 web service proxies, aside from FaultExceptions, what sort of communication exceptions can be thrown and throu...