client

Server side alerts for client side app

Here's the scenario: User interacts with Adobe flex webpage to configure reports based on some data stored server side. They configure their view and have THAT view emailed to them daily. I've got the report builder, the part I'm trying to figure out is how to render the report server side and send it out as email (native flex functio...

Unable to understand this strange MySql client behavior.

I'm not sure what's going on here with the line art output by /usr/bin/mysql here. The problem: I'm unable to redirect the line art (used in creating the table columns) to a file! First, I do this on my terminal. [sd@host:~/tmp] $ mysql -usd sd -e 'select * from loan;' +---------+--------------+--------+ | loan_no | branch_name | am...

jax-ws: setting Content-Type of request

Hi. I've been trying to consume a .net WCF rest service using JAX-WS lately. Due to security of the service, I've have to set a custom HTTP header Authorization with some signature in it. This I've solved by doing something like this: BindingProvider bp = (BindingProvider) port; bp.getRequestContext().put(MessageContext.HTTP_REQUEST_HE...

Reusing SocketAsyncEventArgs with ReceiveAsync results in infinite loop

Hi I'm writing a simple socket client which uses only one socket. So I figured I could reuse a single SocketAsyncEventArgs for all receive operations. It's working fine as long as the socket is connected. When the server disconnects, the client will enter a infinite receive loop spamming "Receive Success" in the console. Shouldn't e.So...

Hierarchical object model with property inheritance and event bubbling?

I'm writing a document-based client application and I need a DOM or WPF-like, but non-visual model that: Is a tree composed of elements Can accept an unlimited number of custom properties that get/set any CLR type, including collections. Can inherit their values from their parent Can inherit their default values from an ancestor Ca...

C# - Free FTP client library for C-sharp

Hi, Im wondering if anyone here can recommend a FTP library(class) for C#.. That is free. I've been looking around the net, but all the classes I've found are very poor written, and have very poor performance. I do not want to use classes like FtpWebRequest... Best Regards, Robin ...

android IM CLIENT not working on emulator

i am not able to test im client application on emulator...any help in this regard...? ...

How do you add scripts to custom buttons on rows in jqgrid?

I am trying to handle the click of custom button in a jqgrid. I have the buttons showing up, but when they are clicked, my function does not run. If I click a button outside the jqgrid, the script runs. Does jqgrid consume the button click? Not sure what I am missing or not understanding. Here is the grid. The reason I am not reloading t...

how to generate web service client dynamically

i got a problem. suppose on the other side, the WSDL will be always changed, for example, the web service on the otherside which descriped in the WSDL file has only method, but the name of the method might always change, today call methodABC(), tomorrow will be change to methodDEFO().. suppose in JAVA, is there anyway, i can dynamica...

Client details in webservice

How can i access client details like IP,Browser etc in a web service in java? ...

Ruby Kirbybase Server/Client Mode Problem

I'm trying to use the KirbyBase (in Ruby) in server/client mode and having some problems... Here's the setup (I'm working with a speacilized embedded linux system (explained at the bottom of post) but; I'll call those PC for the arguments sake) 2 PCs using an NFS mounted NAS drive on network (mounted on /mnt/sharedSpace), one will be s...

Advice for Managing a difficult client.

We are agile software developers, and we have a client Pm who will not accept any drop in functionality when we do a delivery. It’s a key requirement in agile software development to deliver to timelines not functionality. It seems impossible to manage his expectations - he seems a bully and will not see that his actions are already dam...

how to return arraylist of custom object from web service?

Hi, How can i get array list of custom object from web service? I define a method that returns a list like this : ArrayList<Car> getVehicle() {...} But in client ws, I receive an ArrayList of objects... It seems I can't cast it even by copying custom class to client jar file of my applet, like serialized object... How can i do that?...

A JavaScript client for consuming Axis2 sevice

Hi, I have written a service using Axis2. Now I wish to consume it using a browser based client written in JavaScript. Would appreciate if some one could give any pointers on this. Thanks ...

I made a simple WCF client and checked the "create asynchronous methods" box.. what do these methods do?

I created a server and generated my client as an asynchronous one. So when I connect, I do so asynchronously. That's fine. I have a method on my client (a callback method) that receives data from the server. The server sends this data using an asychronous method too. To receive this data on my client, I expected to have ONLY a method ...

Event-Driven Client/Server Design with C++

I am designing a game server with scripting capabilities. The general design goes like this: Client connects to Server, Server initializes Client, Server sends Client to EventManager (separate thread, uses libevent), EventManager receives receive Event from Client socket, Client manages what it received via callbacks. Now the last par...

Selecting Multiple Files for Upload in Web Page

I am building a file upload web page that has the capability to process multiple upload files. Ideally I would like to allow the user to select a folder and have the web page enumerate the files in the folder client-side, but I don't think that's possible without a browser plugin. Alternatively, would it be possible to allow the user t...

how to install microsoft .NET client profile of 30 MB size ?

Hi, i have a host pc(Vista) and virtual pc(XP). ON my virtual pc i dont have .NET framework, only Visual studio 2008. On my host pc i have Vs 2008 SP1 with all of the .NET framework components. In Prerequisite window, "Choose which prerequisite to install" i have only checked .NET Client profile. When i am using a click once ins...

Can We execute an exe that is in client side?

Is there any way to execute exe(say notepad.exe) that is in client? If so.. how can i do that from server side.? I know its a security violation..still i want to know. ...

how to design messages in a java client-server model

hello i have set up a basic client and a basic server using java sockets. it can successfully send strings between them. now i want to design some basic messages. could you give me any recommendations on how to lay them out? should i use java's serialzation to send classes? or should i just encode the information i need in a custom st...