client

Are there any good graphical git and hg/Mercurial clients on Mac OS X?

I'm searching for compelling git and Mercurial clients on Mac OS X. The most clients I've found so far were less compelling as I expected. Some of the clients are programmed even in ruby or tcl/tk, which IMO aren't good OSX citizens in regard of integration in the OS. I've clients in mind similar to Versions.app or Cornetstone which are...

Database Results in Cocoa

Hi everyone. I am creating an application that has to interact with server data and then display the results from a database accordingly. I am writing the client side app in Cocoa. Example: A user logs on to a web application. They have some options for filing a web report. Choices: single line and multiple line. They can choose ho...

save client page selected value in database

Hi I got a different problem here here i'm loading client page (ex: yahoo.com) in my page using iframesource as yahoo.com Now i want to selecte some specific lines in yahoo.com and i want to store it in my database. Can somebody help me to do this Thank you, Nagu ...

How can I remotely deploy a rich client in .Net?

Currently we run our web applications on a thin client browser IE 6 and it is slow. We are a non-profit organization. All our offices are linked via VPN. Opera 10 browser allows one to convert one's PC into a server. I am thinking of deploying our application and Opera 10 on every client, meaning that the every client would run a server ...

Do Subversion client/server versions need to be the same or close to each other?

This seems like a basic question, but I haven't found any clear answers. Essentially, we have a subversion 1.4 server with 1.5 clients. What I'd like to know is if we want to use some of the 1.5 features like branch/merge tracking, does the server need to be at least 1.5 also? I have read that 1.5 clients will sometimes auto-upgrade t...

Improve a IRC Client in Python

Hello, How i can make some improvement in my IRC client made in Python. The improvement is: How i can put something that the user can type the HOST, PORT, NICK, INDENT and REALNAME strings and the message? And here is the code of the program: simplebot.py import sys import socket import string HOST="irc.freenode.net" PORT=6667 NIC...

High-level HTTP client library for native C/C++ in Win32

Are there no "high-level" HTTP libraries for native C/C++ in Win32 or am I just looking in the wrong places? By "high-level" I mean an API that lets me do HTTP web requests/responses in C++ with "about the same" abstraction level as the .NET framework (but note that using C++/CLI is not an option for me). How to do something like this ...

Does Oracle 10g automatically escape double quotes in recordsets?

I am encountering an interesting issue with an application that was migrated from Oracle 9i to 10g. Previously, we had a problem when a field contained double quotes since Oracle recordsets encapsulated fields in double quotes. Example: "field1"||"field2"||"field "Y" 3"||"field4" Since the move to 10g, I believe that the Oracle client-...

WCF client proxy mishandling returned SOAP envelope

I have a RPC encoded PHP webservice that returns a simple soap envelope with a boolean datatype. When doing the trace on the client side, the soap envelope looks like this right before it goes into the WCF proxy: <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoa...

What books should I recommend to my client to learn about web applications?

We recently built a large ASP.NET web forms application for a client and the main point of contact has told me he wants to learn more about the technical side of web applications. He has no programming experience and has a primarily business background. I have provided him with many online resources, however he would like to get some bo...

Easy to use Git client for non-technical people?

My team consists of both software developers, business analysts, tech writers, and other non-technical people. We've started storing non-code artifacts (e.g. user manuals, technical documentation, reports, charts) in our Git repository. Our non-technical team members are having some trouble getting used to Git and its command line interf...

Develop for the customer, or for a manager?

So you're striving for a job, then you have two to choose from: Job A: You have direct contact with the customer. You get the user requirements. You design and develop being able to contact the customer for whichever issue you have. You receive the bug reports directly from the client, for whichever issue they have. Job B: You don't h...

Adding a cookie to web service port client

I'm using a web service in my app that requires a specific cookie to be set in order access it's methods. I was using a generated wrapper class for that service that was created using wsdl.exe tool. Everything is working ok using that method. // this is the instance of object generated with wsdl.exe WSWrapper service = new WSWrapper();...

An online SVN client

I am looking out for a Web-Based Svn client. I already use a SVN server. My requirement is to login anytime, anywhere and edit the source code and checkin I googled a lot for this with no satisfactory outcome, all i got were web-server installable services (i do not own a webserver to install these stuffs) This same question is posted...

Specify the port precisely for a webservice in Web.config

I want to precisely set the port for a .NET 3.5 web service using the client services api I have been trying to get this to work using http://msdn.microsoft.com/en-us/library/bb546195.aspx to no avail I have my domain mydomain .com / Appservices where is Appservices is an app root. I can login to my web site using the login page but t...

Caching using Axis 1.4 + web service response caching at client side

I want to cache web services response XML at client side. How can i cache response XML at client side, so we don't have to wait for Server side response ? Is there any mechanism available in Axis 1.4 that helps to caching server side response XML at client side ? Scenario : I am consuming 1 search detail service method, which hits the ...

RTSP client in android

I am writing a RTSP client in Android. I am able to receive the Responses for all the requests i.e., DESCRIBE it sends back the 200 OK SETUP with transport: RTP/AVP:unicast:client_port=4568:4569 got the 200 OK Message back Sent PLAY, and got the OK Message After that how to get the audio and video frames? I have searched on blogs, b...

mysqlclient on shared server

how do i install libmysqlclient.so on ubuntu ...

JSP client's date and time

Is there any specific way of getting client's date and time without using any Javascript at all,but only using a JSP, As I know there are ways to get clients IP using some of the methods below. getRemoteAddr, getRemoteHost and getRemotePort So I'm asking other way around,Is there any way please post it here. Thanks. ...

Sending floating point number from server to client.

I am using TCP/IP socket programming. I have a floating point value stored in a variable ret_val in my server code which I want to send to the client which is waiting to receive it. How can I do it? ...