client

Generating jax-ws client using eclipse plugin

I'm using eclipse (eclipse-jee-galileo-win32). I generated ws clients by using eclipse build in plug-in (right click on wsdl -> web services -> generate client) and they working fine. For a automatic builds I need ant scripts that will generate such client's code automatically. I tried using wsimport (of glassfish and jdk6), but I've got...

Detection of browser version in WPF

Is it possible to find out in what browser version a browser hosted application (XBAP) runs (eg. IE6, IE7 or IE8)? I want to find out the browser version from within the XBAP. ...

Client ping to servers

Hi, I am wondering what would the best way to let visitors of a website ping various remote servers. Example: I am a visitor, I choose from a lsit of locations Paris, France and the script would ping from my location to Paris and return an average of x number of ping attempts. Any ideas? ...

Opinions on Client Server communication in a very restricted environment.

I have a server that needs to receive information from a client, web services was my first thought until a limitation was imposed. I am not allowed to setup a normal client/server interaction, because the server is not allowed to listen on any ports. The server is allowed to call out, so I'm left with : Having the server poll from the...

Where can I find a definitive reference on HTML 5 database SQL syntax support?

Does anyone know of a good online resource which gives a clear reference on the SQL syntax supported by HTML 5 client-side databases? I've looked about and cannot seem to locate one. Thanks ...

Client side thumb creation OR Server side?

Hy, I have two options to choose from: Client side(with FLASH or Javascript): pro: image manipulations occurs on the client side, so no load on the server cons: more uploaded data Server side(Ruby on rails): pro: less uploaded data cons: image manipulations occurs on the server side, so there are some load and will be queried... F...

Sharepoint.OpenDocuments Control Compatible with Forms Authentication?

We are using the Sharepoint.OpenDocuments.EditDocument2 ActiveX control and method. The method is being called from JavaScript in an IE6 client on a Windows XP SP3 client (fully patched). The server is running IIS6 on Windows Server 2003 SP1 Fronting the IIS server is Tivoli Access Manager (TAM) which proxies access to the web applic...

What is the best method to call an arbitrary JSON server from .NET (Specifically Windows Phone 7)

Hi, I have a server that I have no control over, it's JSON based and I've put together a simple proof of concept that calls the server using HTTPWebRequest etc and it works fine (if a little wordy since MS have removed all Synchronous I/O calls). Is there a better way of doing this? I've been looking at WCF as an option but any stable ...

TinyMCE client validation problem

Hi, I have problem with TinyMCE editor. I have form with few text fields and textarea (tinymce), and enabled client validation. When I click save button validation occures on all text fields, but it takes 2 click to validate tinymce content. Furthermore, validation shows message only when field is empty, or if condition is not satisfied ...

Detecting permission errors in django tests

I'm writing detailed functional tests for my views to complement the unit tests on my models. It's a Django project and I'm using the built in Django test framework with unittest. Obviously, one of the important things to check in these functional tests is that the permissions are set up correctly. With that in mind, I'm attempting somet...

How can an SVN::Error callback identify the context from which it was called?

I've written some fairly extensive Perl modules and scripts using the Perl bindings SVN::Client etc. Since the calls to SVN::Client are all deep in a module, I have overridden the default error handling. So far I have done so by setting $SVN::Error::handler = undef; as described in the docs, but this makes the individual calls a bi...

How can I call VC# webservice methods without ArgumentException?

Currently, I'm trying to write a small tray application that will show the status and provide control of a server-side application exposed over webservice. The webservice only has 3 operations: start, stop and status. When I call any of these operations in code, they throw an ArgumentException citing "An item with the same key has alread...

How i can convert client for Axis 1.4 to Axis2 in JAVA ?

Hello, First of all i success to programming a client for an Axis 1.2 web service, but for Axis2 i don't know how i can do, and the tutorial in Apache don't really help me. Here my code : import java.net.URL; import javax.xml.namespace.QName; import org.apache.axis.client.Call; import org.apache.axis.client.Service; public class E...

Help with SOAP request using PHP

I'm having a SOAP related problem in PHP. I'm trying to create arbitrary SOAP request using Nusoap_client class. The complete request including headers should look like the example below. Ofcourse the placeholders (string) should be replaced with actual values. POST /services/RecipeCouponAPI11.asmx HTTP/1.1 Host: example.com Content-Typ...

Soap Delphi Client end with a timeout for a 1MB call

Hi, we are developing a SOAP webservice (Apache/PHP). All run well for small size calls, but with a 1Mb soap call (the HTTPS call size is 1MB) our Delphi Soap client stop with a timeout on all PC but one, and our PHP clients run well with a default_socket_timeout=300, but stop with a "Error Fetching http headers" with default_socket_ti...

general socket question

Hi guys I'm building a client that "talks" to the http server. Now my client needs to download files simultaneously. Right now my client just opens a socket (actually Async Socket) for every connection, but I was wondering whether I could do that with just one socket? Thanks Alex ...

download file only with sockets

Hi I want to write a simple client on the iPhone that downloads a file from an http server using only bsd sockets. I searched the web but couldn't find anything helpful. Can you give me a direction? Thanks Alex ...

How cookies are handled if you use a proxy between a client and server in HTTP

How cookies are handled if you use a proxy between a client and server in HTTP ...

How cookies are handled if you use a proxy between a client and server in HTTP

How cookies are handled if you use a proxy between a client and server in HTTP ...

c# send recive object over network?

Hello, I'm working on a server/client project the client will be asking the server for info and the server will send them back to the client the info may be string,number, array, list, arraylist or any other object I found allot of examples but I faced issues!!!! the solution I found so far is to serialize the object (data) and send ...