client

Windows API CreateWindow client size mouse position

Hi, Working with OpenGL, I used CreateWindow( "app", "App Window", WS_CAPTION | WS_POPUPWINDOW | WS_VISIBLE | WS_SIZEBOX | WS_MINIMIZEBOX | WS_MAXIMIZEBOX, 0, 0, 1024, 768, NULL, NULL, hInstance, this ); to create a window and now I need to find the mouse position over the client (render) area. However, I noticed that the mouse co...

C# - Best way to store sets of data (In a table)

I have a client and a server program, and I am currently using hashtables to store the clients Name and ip address when they connect. I now need to add another variable that the client will send to the server when it connects, but as far as I understand it, hashtables only have 2 columns (Key and value). Is there another way I could stor...

Silverlight Client-Server Communication

I have a WPF application, that I want to port to Linux/Mac. The most logic way seems to split the application in two parts: client and server, and use Silverlight for the client UI, and run the server-part (as an invisible console-app) in Mono. But what's the best way to let those two parts communicate? Silverlight 4 supports COM inter...

Web service client design pattern (best practice)

Hi all, I have a web service deployed and ready to use. The client application is going to use this service synchronously and extremely frequent. The amount of data returned from the web service is also considerable. The web service client is a web application (liferay portlet). I have generated the client part with axis inside eclipse...

Why doesn't this Avahi client code work to add a CNAME alias to my Linux machine?

Hi all, I'm trying to write a little program that will add mDNS CNAME aliases to my Linux device, so that it can be accessed via more than one "something.local." domain name. This program's intended function is the same as the avahi-aliases Python script, but in order to avoid a Python dependency, I'm trying to implement it in C++ inst...

How we can check the information sent to server in a client request?

What are the information sent to server in a client request?How can we check those information? I mean can we view those information(Is there any way to check)? ...

How to i get the default mail client using applescript?

Can anyone please tell me how do i get the default mail client using applescript. ...

problem with elang (yaws_soap_lib based) soap client

Hello, I have python's based soap server and tried to call it functions using erlang (yaws_soap_lib based) soap client: 1> inets:start(). ok 2> yaws_soap_lib:call("http://127.0.0.1:90/soap/system/wsdl","cpu_count",[]). {ok,undefined,undefined} here is what I was able to see with tcpdump program (answer of server to client): HTTP/1.1....

Logout Issues with WPF and Client Application Services

I have recently been prototyping an application using WPF and Client Application Services. I am trying to use all three features of the Client Application Services : Forms Authenticiation, Role Security, and Client Profile. I have managed to get everything working, but I feel like my solution is a kludge and want a better way. For the...

web application c#

Im trying to make a a cleint/server web application where eventually the client application will be deploy on the internet. People told me to use visual studio WCF duplex but im confuse on how that works. I know for a simple server/client application using sockets, u can just use console for the server and then a windows form for the c...

tightvnc black screen server Fedora 13 , client windows XP

I get a black screen with the above setup. I have tried RealVNC and TigerVNC clients too on windows with the same result. Any ideas? Thanks ...

What would you recommend for this project?

I have a to create an application using C# for the Windows Platform. Normally all of the work I've done was on a single machine: It had Visual Studio 2010, Microsoft SQL Server and a range of other tools. If I use Entity Framework for example, I know it'll work because I have a SQL engine installed. Here comes my problem and the point...

Connect clients

Hi I am trying to connect 2 or more computers running a c# application. All TCP examples I find only show how to connect them if they are running on the same network. My question is how to connect them over the internet? I want to create a service like MSN but with direct connection (like a torrent software does), any help? regar...

Client MAC Address Wardriving

Does anybody know of an application that will only show you client wifi mac addresses? Ideally it would only tell you when a particular MAC gets detected. I dont care if its associated or just probing, i just need to be able to see if a particular MAC is detected in the air. This is why: My friend's Macbook was stolen, we decided to go ...

Communication between winform client and server's web service

Hi everyone, currently I'm an internee and about to join in a project in which I have to take responsible for implementing the server side part. The scenario: _There are many kiosks, each runs a winform application, this application read barcode from customer's card and then send the info to server. _The server has several web services,...

Is there a good library to embed a command prompt in a scala (or java) application.

I have an application that I'd like to have a prompt in. If it helps, this is a graph database implementation and I need a prompt just like any other database client (MySQL, Postgresql, etc.). So far I have my own REPL like so: object App extends Application { REPL ! Read } object REPL extends Actor { def act() { loop...

How to Get query all the lists of a SharePoint site through Silverlight Client object model

Hi All, I have a requirement in which I have to show the number of documents uploaded by a user in all the lists and libraries in a SharePoint site in a Silverlight webppart. How much ever I try I keep getting the error "The property or field has not been initialized. It has not been requested or the request has not been executed. It...

possible to connect a tcp client on windows to a server on linux ?

writing a server that runs on linux (Ubuntu) using mono. and a client that runs on windows using .net, can i connect to the server in linux. i will use c# for both server and client programming. ...

wcf client configuration

Hi, I have wcf client. It uses .NET 3.5. When I compile the client I get two files: client.exe and client.exe.config. The second file contains configuration for the wcf client. In my case I need to prevent the user sitting on the computer to see the urls and change some other parameters from the config file. So the requirements are...