client

Recommended implementation for a desktop web monitoring client?

Background I have a business idea, one component of which involves a client that would be downloaded & installed by thousands of users via a web page. Application Requirements Version 1: The application must: monitor internet usage on the user's desktop with the following areas monitored: browser used, hours used sites access...

Are there any articles or advice on creating a C++ chat server with a C# client?

My current class is planning on creating a basic networked game, but we have decided to take on the task of making a C++ server with a C# client. I understand this is probably a difficult task, but I was wondering if there is any advice on making this happen. I am sorry I do not have any more information than this. We are just getti...

MySQL Cross Server Select Query

Hi, Is it possible to write a cross server select query using MySQL Client. Basically the setup is like follows. Server IP       Database ---------       -------- 1.2.3.4       Test a.b.c.d       Test I want to write a query that will select rows from a table in the Test Database on 1.2.3.4 and inse...

client certification silverlight

Hi, i would retrieve the client certification in Silverlight from an application that accept client certification, like in ASP.NET with HttpClientCertificate cert = Request.ClientCertificates; there is something to do this in SL2? ...

What C++ library should I use to implement a HTTP client?

I'm looking for a C++ library that implements or enables the implementation of a HTTP client. It should handle cookies as well. What would you propose? Thank you in advance for your time. ...

asp.net:i want to change color of dynamically generated linkbutton on mouse cursor focus with javascript .

code: LinkButton linkButton = new LinkButton(); linkButton.OnClientClick="changecolor";--i need to change this to on mouse focus event there is no property for for link button like we have onClientClick. ...

SVN Error: Expected fs format between '1' and '3'; found format '4'

Here's what I did, I have installed svnserve as a service and I started it with the net start svn service command. I typed svn ls svn://localhost to test the service but it returned the error as stated in the title of this post. I entered svn --version and svnserve --version on my computer to find out the version numbers and the client...

php5 soap client in wsdl mode how to access different svc endpoint than the one specified in the wsdl

I´m a newbie to soap with php5... I need to use a wsdl provided by a third party company, where, for testing purposes I´m supposed to use a different access address location for the service I´m needing, than the one specified in the wsdl document. Is there any way I can create my soap client in wsdl mode, and override the specified add...

C# ftp client program create folder issue

Hello everyone, I am writing a simple FTP client using C#. I did not find any samples which could create folder on FTP server, check whether a folder already exists on FTP server. Any referred simple samples? thanks in advance, George ...

Is it possible to check in a file or add a file to an SVN repository without an SVN client?

Is it possible to check in a file or add a file to an SVN repository without an SVN client? Using a browser, I was able to access the files on an SVN server using Apache. If I don't have an SVN client on a certain computer, can I add the file (and commit it), such as by the browser's "Upload File" function? Being able to do so could b...

How to connect a Windows client to an OSX Server with AFP

We are using OSX servers and clients with AFP (Apple Filing Protocol) and want to connect the only Windows (Vista x64) client to the server shares without having to enable SMB. Is there still any AFP client for Windows available? All that I've found are Windows AFP servers, but that's not what we need. ...

.net 3.5 Client Profile. Completly useless? Am i missing something?

(NOTE: sory for my not so good English) I'm currently evaluating the .net client profile for a future project, and there are some things I've found that I think make it pretty useless, unless I am missing something of course. I've installed the client profile on a clean xp vm. When I developed a small test winform app (with compilation...

Is it possible to start a client-side app from Silverlight?

I have a simple company portal which allows users to start their apps from the browser. The URLs in the hypelinks are passed (using Javascript) to a signed applet to actually start the client-side apps. All clients are XP or Vista and all run IE6 or IE7. I have recently been looking at Silverlight and am wondering if I could do somethin...

How to create a messaging service??

I want to create a messaging service that uses the XMPP protocol. How would I implement the server-side as well as the client side aspects of this service? I know I would need a server (like Jabberd 2) that runs the messaging framework. How hard would this be to set up and get running? Also what would be the best way to hook up a cli...

PHP REST Clients

I'm trying to connect to a RESTful web service, but I'm having some troubles, especially when sending data over PUT and DELETE. With cURL, PUT requires a file to send, and DELETE is just weird. I'm perfectly capable of writing a client using PHP's socket support and writing the HTTP headers myself, but I wanted to know whether you guys h...

How does a Bugzilla server work?

We have bugzilla installed on a computer which we would like to act as a server. I have yet to install bugzilla on my computer, the client. Can you point me to some references which describes how Bugzilla works as a server? What I would like to do is file bugs from client computers and this will be reflected to the Bugzilla server. How d...

.NET or Java based small desktop app

Hi, I am trying to get a very small desktop app built - something that can be downloaded by people very quickly. I am trying to decide whether i shd build it in .net or java. I know Java will be cross platform, but I want to know if a lot of Windows users do not have JRE installed on their computers, in which case I am told they will ne...

Are there any good PostgreSQL clients for linux?

I am frustrated of not having a good Linux GUI administration and development tool for PostgreSQL. pgAdmin III is buggy and unusable piece of... hmm, software, compared to Windows-only PostgreSQL Maestro and EMS PostgreSQL manager. phpPgaAmin does not looks promising. EMS PostgreSQL manager can work under Wine, but such setup have a n...

What framework should I use for a game in Silverlight and on the client?

I made a couple simple games in Silverlight. I'm considering making a much deeper game for Windows. It would have a feature limited version available in Silverlight for use in the browser. What would you recommend I use for the client application (not in a browser or Silverlight)? If any additional information is required, I'll try...

ASP.NET Client side validation and Post back

I have an aspx page in which i have 3 asp.net text boxes and 1 asp.net button control.I want to do a client side validation before the post back happens when i click on the button . ie ; If the the page passes the validation check,then only i need to invoke the server side button click event.Can any one help me ? Thanks in advance ...