client

Dynamics AX 2009 Client config file start path problem

I need to start the MS Dynamics AX 2009 client with different configurations to connect to different AOS. To achieve this, I exported the client configuration into an axc-file, which works pretty well. Now I want to share this file for all clients in our network, but it does not work on some because for some funny reason, the path to the...

JAX-RS is perfect for implementing REST. What do you use to call REST services in Java?

Ideally, I am looking for something like JAX-RS (using annotations to describe the services I want to call), but allowing to call REST services implemented using other technologies (not JAX-RS). Any suggestion? ...

What is the best way getting new clients that need programming?

My question is directed at any of you that run small development shops. How do you go about finding clients that need web based development? Thus far, we've had numerous clients but the bulk of them have been for simple out-of-the-box CMS or e-commerce sites. Do you contribute to open-source projects (which I am currently doing, we just ...

Simple client/server, TCP/IP encrypting the message stream, SSL

Hi, Writing a little TCP/IP client server app. Basically it creates a server, and then you can create several different clients and set up a bit of a chat session. What I am wondering is there is any way to incorporate, using standard .net libraries some form of encryption? m_mainSocket = new Socket(AddressFamily.InterNetwork, ...

How will the client access the Bugzilla server?

I have just installed Bugzilla on my laptop and I will be the Bugzilla server. I would like to know how my team mates will be able to access the Bugzilla server? I know that Apache is the web server but can you point me to a reference on how clients can access the server? Thank you. ...

Can anyone provide a rational explanation as to why a web server must assist in the creation of upload progress bars?

I've been putting together a small personal website in rails and have gotten to the point where I need to be able to upload files. This is an almost trivial task and took no time at all. What is taking time - and is slowly sapping my sanity - is the task of providing the user with an upload progress bar. I've seen at least a dozen sol...

Do we have to buy a domain to serve Bugzilla?

I tried putting my IP from whatismyip.com in the urlbase of Bugzilla but it did not work. I wasn't able to create a new account for my team mate, and he wasnt able to access the server by typing the my ip address in his browse. And surely, when I connect again, my IP address will change. Do we have to buy a www address to host Bugzilla? ...

How to extract information from client/server communication with no documentation?

What are methods for undocumented client/server communication to be captured and analyzed for information you want and then have your program looking for this information in real time? For example, programs that look at online game client/server communication and get information and use it to do things like show location on a 3rd party m...

Client-Server application for Windows CE

Does anyone know where I can find simple Client-Server application for Windows Mobile? If anybody has code or something like that, that would be very useful for me. Thanks Marko ...

How to determine client pc date format

Is there any way by which we can find Date Format as set in the computer where web pages are loading? I want to show date in my web pages according to what is set in client machine system. I have seem an ASP based web page which lists all the system setting of a clients system including information of drivers installed! So if it is po...

Sample code for JSON-RPC client in C#

I need a simple JSON-RPC 1.0 client in C#, preferably using .NET 2.0 or later. I checked out JRock 0.9 They have several samples including Yahoo reader, but the samples demo JSON, not JSON-RPC. I understand I could implement RPC part using any of the available JSON parsers, like JRock or two from Microsoft. I would prefer a ready sample....

Servlet to act like a client

I need to write a simple servlet which will be the client, and it should be sending some simple strings to server written in java. However I have a problem and I don't know how to solve it. I was trying to put the code in servlet methods but it ain't working. Here is the code which works great in my standard (non servlet) java client: ht...

log4j.xml in client jars

I have some jar files that will be distributed to clients that are using log4j for logging. My question is should I include a log4j.xml configuration in the jar file or have the client provide one if they want logging? My feeling is to leave the log4j.xml configuration file out of the client jars, since the apache jar files all come wi...

Basic SIP client to provide VoIP in Win32 application?

Hello I'd like to write a small IVR application with Asterisk, and provide a Delphi client that can SELECT all unanswered calls from a database and provide a "Call" option when the user right-clicks on a record. So I need a basic SIP client just to dial out, and also handle incoming calls for those users who are OK with a headset inste...

Programmatic interaction with gdbserver

The gdbserver program allows for the remote debugging of programs. Typically, a local copy of gdb is used to interact with the remote gdbserver instance, and the program running under that remote gdbserver. My question is: Are there client implementations of the gdb remote serial protocol (RSP) that allow programs other than gdb to int...

Does “Client-only Framework subset" not include client application services?

After recently discovering how insanely long the .net 3.5 framework was to install I searched for and found what I thought was a solution - the 'client only framework subset'. This claims to include WPF etc, all the typical things required by 'Client Applications'. Our application makes use of Client Application Services (see here: h...

Is there a good GUI Mercurial Client for Windows?

Other than Tortoise HG, what is a good GUI client on windows? I've already looked at: http://mercurial.selenic.com/wiki/OtherTools ...

How to design a server with many persistent connections

Hello, I am designing a application where many clients connect to a central server. This server keeps these connections, sending keep-alives every half-hour. The server has a embedded HTTP server, which provides a interface to the client connections (ex. http://server/isClientConnected?id=id). I was wondering what is the best way to go a...

WCF Service Client with svcutil ( no "extra" clientside-datatype def. )

Hi, i got the problem, that a WCF service ( generated with svcutil.exe ) generates it's own datatypes, instead of using the ones i already defined.. for example: The svcutil generated something like this: public partial class EmailTransactionRequestMsg : object, System.Runtime.Serialization.IExtensibleDataObject { private Sys...

JQuery's appendTo is very slow!

I have a html table that I reorder based on a CSV list of custom attribute values that I have for each table row. I am using the following function to do it: for (var i = 0; i < arrCSV.length; i++) { $('#' + tableId) .find('[fname = ' + arrCSV[i] + ']') .eq(0) .parents('tr') .eq(0) .appendTo('#' + tableId...