client

When the Client asks for something ludicrous and insists

Ok, so the client is insisting that I make a control that is essential to the website I am doing (it's the nav) into something that, frankly, no one would know what it was much less would click on it. I mean, this isn't an opinion issue, he is straight out wrong. It's not revolutionary. It's not different. I just think if we took a .jp...

How to remove the border of the client area of a window?

I don't want the border of a window's client area to be seen. Is there any way to remove them? The window is a SDI(Single Document) window. I also noticed that the border appeares only on the top and left side of the client area (no on the right and bottom). I was very confused. Thank you very much! ...

Is it impractical to put an HTML form into an email?

I've had several clients ask this, and I've never been able to get or give a satisfactory answer. Can you (practically) put a working form into an HTML email? My understanding is that you can, but that there's no guarantee of email clients properly handling it, so that method would only be practical with individual recipients that you'd...

The process that must occur between the client and servers, Kerberos authentication.

Im trying to learn and understand Kerberos, i need to understand the process that must occur between the client and server — Windows and non-Windows platforms — to enable Kerberos authentication. looking for some help to explain the process better. thank you ...

Is there a way to password protect HTML pages without using a server side language?

I have a series of interlinked web pages, and I want to restrict access to these pages by asking the user to provide a login and password. However, my hosting account currently does not provide any facility for server side scripting - is there any way I can accomplish this objective using only client side scripts? I was wondering how th...

Using parameters in a Restlet Client Request

I have: Request request = new Request(Method.GET, "https://www.awebsite.com/login"); Client client = new Client(Protocol.HTTPS); Response response = client.handle(request); ... response.getEntity().write(System.out); But I don't know how to set the login parameters... I want code that does the escaping etc can switch between get/po...

Sending form without mail client

Hi,everubody! can you help me with my trouble? I'm trying to create form for filling resume. User should not use mail client to submit form. How can I realize this idea on javascript or PHP? ...

Get Raw XML from java web service call in .NET

Hi, I am calling a Java web service using a .NET client, the return message is badly formatted since the deserialzation process throws an exception. Is there a way to view the raw xml data being returned by the web service in the .NET Client. Many thanks ...

Is it possible to get a subversion client log file?

At the moment, we have a problem that exists only for a few subversion clients. We would like to get a subversion client log file, which contains information what command was send to the server, what response came back and so on. Is there the possibility to switch on logging to get that information on the client? I found tons of informa...

Client Server programming in python?

Here is source code for multithreaed server and client in python. PROBLEM: In the code client and server closes connection after the job is finished. I want to keep the connections alive and send more data over the same connections to avoid overhead of closing and opening sockets everytime. What is the best way to do this? I am new to...

GWT Toolkit: preprocessing files on client side

If there's a way for the client side GWT code to pre-process a file on the client computer? For example, to calculate a checksum of it before submitting the file to the server. ...

Web service client (.NET 2008), exception handling?

I have a standard (?) web service client solution in .net 2008 = classes created by wsdl.exe tool after downloading the wsdl-file from web service I'm using. I then just call the method of this automatically created class that inherits System.Web.Services.Protocols.SoapHttpClientProtocol and its' invoke method. which I have tested a lot ...

Implementing captcha in a stateless REST web-service environment

The project I'm working on is a piece of static HTML with some inline JavaScript that will call a REST web-service, which I'm creating myself using .NET 3.5 WCF. The JavaScript will grab some details from the user including an email address, then send those details off to the web-service through Ajax. The web-service will then store the...

Implementing client - masterserver/slaveserver application java

We have a string processing service (c++, uses stdin/out for in/output) that has different layouts, each layout runs separately (eventually will run on separate machines), each layout takes time to load, thats why it must keep running after first run. I must implement a system with client that will ask the master server to connect it ...

What are the Pitfalls of using a shared static WCF Proxy Client?

I am considering using a Shared (read static) WCF proxy client for a high throughput application. I believe there is a performance gain in doing this, but I have not benchmarked this as yet. Are there some serious pitfalls to this idea? From my research I can see that there is the issue of handling the fault state, it is not clear wh...

Web programming: Get rid of Javascript or convince me to dive into this mess

I'm looking for alternatives to client side Javascript in web programming, because for me this language just plain sucks. I mean I am indeed impressed of the capabilities jquery or other javascript-frameworks accomplish, but for myself programming in javascript is a pain in the rump. I would like to replace it without sacrifice functiona...

Alternatives to EntLib caching application block?

I'm developing a windows client app and would like to cache some data. It's a pretty simple scenario, basically just keeping some data in memory so the app can avoid crashing if the network connection drops out. I could roll my own cache solution, or use the EntLib caching block, but am looking for a few more alternatives before committ...

Java TCP Socket Sniffing

I am using TCP sockets to communicate data between a server and client program using a specific port number on the same computer (localhost). I need a software that can capture the data being sent/received through that socket? (or) What's the simplest way of sniffing packets from a specified port in Java? ...

Microsoft AJAX client library vs jQuery

A lot of discussion are going on with jQuery and MS Ajax after the jquery integrated news. I'm currently in the process of convincing my team to consider jQuery, but I'm not a pro on either of them. I really want some good comparisons between jQuery and MS Ajax "Client" library, as my team is arguing that we can what jQuery can if we j...

How do you retrieve the client user's time zone for a web application?

The question is as it sounds - how to retrieve the client user's time zone based on their browser input? If it matters, server side, J2EE is used - but I don't think that really matters in this case. Right now, HTTP is the protocol, it may use HTTPS when it goes live. ...