client

Has anyone compared iPhone MySQL clients

I am looking for the best MySQL client for my iPhone. I see several like Flipper and iMy and several others, but before I invest a bunch of time and a little money trying them out, I would like to just start with the best most feature rich one. I would link to the others but don't have permission yet. ...

My java server stops in the middle of its code.

For some reason my server stops running in the marked area of my code, and I can't figure out why. import java.net.*; import java.io.*; public class SlickServer{ public static void main(String[] args) throws IOException { int MAX_PLAYERS = 3; int playerNum = 0; Player[] players = new Player[MAX_PLAYERS]; ...

Can someone help me speed up my netcode in Java?

Okay, So I'm working on a game (like not even alpha yet) and it's suppose to be a 1 on 1 fighting game where one person hosts the server and the other one connects. But right now the code is too laggy to do anything with. Can someone take a look at it and tell me how to speed it up? PS: I'm also using the Slick2D lib. Server: import ja...

if cookies are disabled, does asp.net store the cookie as a session cookie instead or not?

basically, if cookeis are disabled on the client, im wondering if this... dim newCookie = New HttpCookie("cookieName", "cookieValue") newCookie.Expires = DateTime.Now.AddDays(1) response.cookies.add(newCookie) notice i set a date, so it should be stored on disk, if cookies are disabled does asp.net automatically store this cookie as...

Does PHP's date() function return the date and time on the server or on the client's computer?

Does PHP's date() function return the date and time on the server or on the client's computer? ...

IRC client library in C#

I want to embed a small chat window in my program that will function as a basic IRC client. Are there any well-known, simple, and secure C# libraries that will allow me to do basic things such as connect, disconnect, list users, and private message? It seems like some of the more popular libraries are overkill for such a modest applica...

Does Facebook have some sort of API that I can make a client?

For example...I would like to make a "client". First, people post to my client, and then to Facebook. (I want to make a client so that I can store posts) ...

WCF, ChannelFactory, "Could not find endpoint element..."

I'm trying to call a WCF service from within another service, in part using an example I found here on StackOverflow which implements ChannelFactory. I've created a separate console app project within my solution for testing (VS 2008, btw), namespace MyService.Test { class Program { static void Main(string[] args) ...

WCF Duplex Channel: Check if callback channel is still available

Hi guys. I have the following problem. I'm writing chat software. The client/server mechanism is based on DualHttpBinding of WCF. This means that if a user sends a message, all clients that are in the room where the message has been sent, are notified by the server. I want to ensure, that if a client's application crashes (whyever), th...

PSQL 8.3+ client query results display

Rather silly question, but I can't seem to find the answer in the docs or man pages. Starting with 8.3 I think, the psql CLI client will not display the results of a large query inline. It pipes to a 'less-like' result viewer that disappears when you hit q. This makes it very difficult to use data from the first query in subsequent que...

Best way to send an ArrayList<String[]> over TCP in Java?

Hello, I'm writing a client/server application in Java and I'm using TCP to transfer data which I'm storing in an ArrayList (i.e. An ArrayList of arrays of Strings). What is the best way to transfer that data from one to the other? Should I make one long string and use a PrintWriter's println() or is there a better way? Thanks very mu...

client server communication using xml

Hi, I need to do xml based client server interaction. As per my knowledge, steps in client server communication through xml may include: 1. client prepares the xml 2. transmittal of the xml 3. server processes the xml client can send request to the server through xml document. The XML parser at the server will parse the xml file...

ASP.NET Validation server side

Hi, I have an ASP.NET webform which I want to validate Client-Side and Server-Side, using the same validation controls. I can't seem to find the solution for this - the client validation works great, but when I disable javascript - It ignores the validation. Help would much be appreciated. Roman ...

Send email through Gmail using c++, Linux

Hello. I would like to send an email via Gmail with C++ as one would send an email from a desktop mail client configured to use a Gmail account. I have been looking at a few like jwSMTP and popen+sendmail, but those look like they only work if the host is a mail server. I know this task is a well-tread path in Python, but have never tr...

Need help in zeroing on webbased xmmp group chat client

Hi , I need a webbased group chat client that can interact with various xmpp servers. I did some research and found muckl , speeqe and tigase minichat but I have one more issue I am deploying my site on shared hosting. So want to know if anybody has installed any group chat software on shared hosting ( like bluehost ) and which will b...

download file from server asp.net

I want to download a file from server to a local host. i have a code from the net which should work but is not working protected void Button4_Click(object sender, EventArgs e) { //To Get the physical Path of the file(test.txt) string filepath = Server.MapPath("test.txt"); // Create New instance of FileInfo class ...

Are there any GOOD Chef, Chef-Server and Chef-Client tutorials out there?

Hi there, Chef from Opscode seems to be really useful for configuring servers and such, but trying to follow their documentation is a little difficult. Some terms are defined after they are used, and definitions sometimes reference new terms that you haven't yet encountered. Anyone know of any GOOD tutorials/walk-throughs for getting a ...

Multiple return type in Jersey Client request

Hi, I'm using Jersey Client API in the following way :- User user = webRsrc.accept(MediaType.APPLICATION_XML).post(User.class, usr); So I'm expecting the response in object of User class which is a JAXB annotated class. However, at times I might also get an error xml and for that I've created a JAXB class ErrorResponse. Now the pro...

Firefox basic modification

Hello friends, I have to modify firefox to make it an automated client for testing some personal servers. I have to:1.Have firefox connect normaly, send the GET HTTP, and run all scripts on that web page. 2.Firefox does not display the page but save it to a file. I have not yet red the documentation, or the source, sorry. I want some hin...

eclipse howto start a application client on java ee glassfish appl srv

i have installed the glassfish eclipse tools bundle... i can start a project like dynamic web & a ear project and deploy them on the glassfish... it works perfect & under the localhost url i will get an hello world but how i do this if i want to make an application client. please help... at the moment i simply created an "app client pr...