client

Good Postgres graphical client for Windows

The name pretty much says it all. Right now I'm using Squirrel - it crashes frequently and suffers from memory problems (I've tried increasing the heap size). I don't need anything particularly fancy or full-featured - just something that won't take up 2.4 GB of RAM to store a 1.5 million line, 8 column result set. ...

How to make an application client jar file for IBM's launchclient

Hi I'm facing with a bug in old ejb application which is deployed on IBM Websphere 6.1. Previously it ran but now it stopped for some reason which I have to investigate. I'm trying to get it to run locally on my desktop, and I'm trying to access the session bean with IBM's launchclient application. I pass in the ear as the argument (yes...

Unable to get project info and source control from a particular machine

From one particular machine, we are unable to get the tfs 2010 project tree via the visual studio 2010 team explorer. The connection with the tfs server is made, but only the top level project names are shown with a red cross. The tree under it remains empty. Web access is possible from this machine. From all other machines everything ...

Why ClassCastException on JMS ConnectionFactory lookup in JNDI?

What might be the cause of the following ClassCastException in a standalone JMS client application when it attempts to retrieve a connection factory from the JNDI provider? Exception in thread "main" java.lang.ClassCastException: javax.naming.Reference cannot be cast to javax.jms.ConnectionFactory Here is an abbreviated version of the...

Graphical HTTP client for windows

Hi, I am looking for a Windows graphical utility for performing HTTP operations. For example, I want to be able to say things like: POST to http://example.org/test/service With a POST body: "Data goes here" Does anyone know a good piece of software for doing this? ...

Is there a universal version control client?

Is there a version control client that would support more VCSs? I'm mainly interested in Subversion, git and Mercurial, but others like TFS would be nice too. Like a bare Eclipse with just the right plugins installed? Update: I'm looking for a GUI client although a command line one would be technically interesting too. ...

multiple clients - one server connection with sockets tcp/ip c# .net

Hello guys, I need to develop a client server system where I can have multiple clients communicating with one server at the same time. I want to communicate xml serialized objects and also need to send and receive other commands to invoke methods. Now, I am just starting with socket programming in C# and .Net and found that the asynchron...

WCF - Compact Framework - Pull data from mobile client

Hello guys, I want to communicate xml serialized objects from the server to the client and the other way arround. Now it is (probably) easy to invoke methods from a mobile client (compact framework) using WCF, but is there a way so that the server can invoke methods on the client side or some other way to pull data from the client? I kno...

setting a timeout for an InputStreamreader variable

I have a server running that accepts connections made through client sockets, I need to read the input from this client socket, now suppose the client opened a connection to my server without sending anything through the server's socket outputstream, in this case, while my server tried to read the input through the client socket's input...

Validation errors are visible when I access the page before I post the form

Hi, I have html validation using client side and server side validation. The problem is when I open the page the validation text is visible before I fill in the text box and post the form. What can I do the solve this issue? I'm using the following code: <script src="/Scripts/jquery-1.4.1.min.js" type="text/javascript"></script> ...

How can a client try to reconnect to a server after a first failed try with WCF?

Hey guys, I'm using a client - server app. When a client starts, he gets a login-screen. When the server is not up yet, the call to the server will throw an exception which i catch (EndpointNotFoundException). I show a messagebox telling the user the server is offline. When he tries to reconnect again, it will throw another exception (C...

Tutorial: Simple WCF XML-RPC client

Update: I have provided complete code example in answer below. I have built my own little custom XML-RPC server, and since I'd like to keep things simple, on both server and client side, what I would like to accomplish is to create a simplest possible client (in C# preferably) using WCF. Let's say that Contract for service exposed via ...

VB.net Simple IRC Client

How would I go about making a simple IRC client with these things What I am using: Nickname TextBox Connect Button Message TextBox Send Message Button Refresh Button ListBox Restrictions: No commands at all just being able to send messages I am using a listbox for recieving messages ...

How to parse AMF data in Ruby?

So I see that there are a few Rails plugins for serving AMF. However, is there a library that I can use in a Ruby environment to act as an AMF client: to read AMF data, and deserialize it into a Ruby object? If not, how could I best go about using tools built in other languages? I suppose I could write something in Python or Java or wha...

CSSOMParser in gwt client side

What i would like to do is to read an css file from a GET request on the client side, and then i would like to parse it to check all the classes. The problem is that I need to implement CSSOMParser for that, and here are the imports import org.w3c.dom.css.CSSRule; import org.w3c.dom.css.CSSRuleList; import org.w3c.dom.css.CSSStyleR...

WCF RESTful client endpoint address problem

I'm creating my first RESTful web service with Visual Studio/WCF and found a problem on the client site. On the web service I have an interface with this function definition: [OperationContract] [WebGet(UriTemplate = "/test/academias/{hashAcademia}", ResponseFormat = WebMessageFormat.Json)] Academia GetAcademiaByHash(string hashAcademi...

oracle connection manager Java Client example

Hi Experts, I am new to oracle connection manager. Can some help me with a Java Client code example to talk to a oracle database thru oracle connection manager. Thanks Sam. ...

readobject method throws ClassNotFoundException

Hi all, I'm trying to pick up Java and wanted to test around with Java's client/server to make the client send a simple object of a self defined class(Message) over to the server. The problem was that I kept getting a ClassNotFoundException on the server side. I think the rest of the codes seem to be alright because other objects such ...

What features do you expect from a Java (Rich) Client Framework?

I'm intending to design (and provide a reference implementation for) a new Swing Rich Client Framework. My job and personal experience covers many project-specific Swing client frameworks as well as the Eclipse RCP, and every one of them had some original and clever concepts, but also drawbacks and rigid realizations. My plan is to inco...

Apache CXF - Creating a Reliable Messaging Client to deploy in Tomcat / Weblogic

Hello everyone, I've been using Apache CXF 2.2.8 in an attempt to implement a web services client that supports WS-Reliable Messaging. To start, I built and ran the included ws-rm sample that ships with CXF (using the mvn -Pserver and mvn -Pclient commands), and it works as advertised. Now, I would like to run this sample in Tomcat (u...