client

Accessing parameters in a webservice from a different application.

Hi, I have C# webservice webmethods hosted on a server and accessed by different applications(web,winforms etc). Is there any way i can detect that these parameters are sent from winforms, these are from webservices on a webservice? All they do is adding a web reference and passing parameters, i wish to see in my end what parameters t...

WCF client console application deploying

Assuming serviceUrl is read from exe.config ( app.config in IDE ) var binding = new WSHttpBinding(); ... client = new ContentServiceClient(binding, new EndpointAddress(serviceURL)); Do I just need exe itself ( given no dependencies ) and exe.config for this client to invoke service on other box. I generated service reference...

Client SSL with Self Signed CA not working

I have been struggling with an SSL problem for more than 1 month. We have used openssl to generate our own CA, server and client certificates. We have also enable "SSLrequire" on the Apache web server (in htaccess this may be wrong), which means that anyone trying to connect through https on the server needs to present a valid certifica...

Grails + GWT - using the same Date Format

I am developing an app using Grails and GWT for a client side. I want to use the same date format both on the client side and on the server side (preferably defined in one file). So far i've understood that Grails got it's own mechanism for internationalization (grails-app/i18n). I know i can access these messages from any server code u...

How to upload image to facebook album using C/C++/C#?

Given a picture file, how do I programmatically upload it to one of my Facebook albums? If possible, I would like to do this using native MFC code (client side). Otherwise I'll stick to C#. I've seen that Facebook comes with different SDKs, but I'm not sure which technique is best suited. Please point me in the right direction, or bett...

Groovy Tcp client/server sending maps

I created a basic tcp client and server in groovy and I'm wanting to send maps from the server to the client, I'm wondering if I'm able send maps across and still being able to access the values. //TCP Server def book1 = [Title of Book: "Groovy Recipes", Author: "Scott Davis", Number of Pages: "241"] server = new ServerSocket(2000) p...

client side web service

Hello, I am a delphi newbie and trying to access a web service and having trouble setting up the instruments and instrument array to add into a request. I have attached the code, definition of the service below, any help would be a great advantage. Var abc:submitGetDataRequest; cc:array_of_instrument; bb:Instrument; begin abc:=submit...

How to build a SOAP Web service Client in SEAM

Hi everyone! I've been looking all over for this question... How do I build a soap web service client in SEAM?? it seems like a straightforward question-answer but I cant seem to make it work no matter how I try... If anyone has an example of what should be done I'd really apreciate it because I need to consume a web service from a legac...

RESTEasy client framework authentication credentials

I looked for the ways, how a client can send authentication credentials to a webservice (e.g. Tomcat Manager) and found this topic http://stackoverflow.com/questions/1885844/resteasy-client-framework-authentication-credentials Just have some questions after reading: 1. Are there other possibilities to do that? 2. What imports are neede...

iperf tool measure throughput server side or client

From iperf man: iperf is a tool for performing network throughput measurements. It can test either TCP or UDP throughput. To perform an iperf test the user must establish both a server (to discard traffic) and a client (to gen- erate traffic). Basically you run iperf server at one end and iperf client at ...

How do I create and execute batch file in client machine using server side code?

Hi, I googled and searched for information regarding the title but most of them couldn't help much. I need your advise. Is this possible or is there any other way to do this? FYI, the server is running on Unix OS and clients are all running on Windows OS. Thanks in advance! I really appreciate your precious advise. ...

Can we have a linux terminal chat client for gmail

Does a gmail terminal chat client exist or anyway one can write it? ...

Chunked transfer encoding ... example HTML document

Hi, I would like to know how to implement a chunked HTML document. How it looks? Can anyone post an example of an chunked HTML ducument, because I can't understand how to prepare my HTML document for using the Chunked transfer encoding. Thansk! Cheers Nik ...

google appengine datastore client

Is there a tool/client to view inside and make queries for google appengine datastore? ...

iPhone/Xcode giving: "Synchronous client exited with no response and no error!"

My iPhone app started displaying this in the xCode console/debugger window: Synchronous client exited with no response and no error! What does it all mean? What does it all mean? It's somehow bad to get "no error"? ...

(Java) A Client reading text from 2 servers in parallel. How to implement?

Hi guys, Quite new here I am, I want to implement the scenario where a client reads data (Line) from 2 servers at the same time in parallel. I have been looking at examples over the net but nearly all the cases refer to multiple clients and a single server. The client after receiving the lines which consists of strings in parallel from...

WCF client proxy exception - "Type cannot be added to list of known types"

Guys, I am having problems creating WCF client proxy for service code like in this example: // data classes [KnownType(typeof(ClassA))] [KnownType(typeof(ClassB))] public abstract class BaseClass : Dictionary<string, ITest> { } public class ClassA : BaseClass { } public class ClassB : BaseClass { } public interface ITest { } // se...

IIS 7.5 and client authentication

I have to do a proof of concept and thus far I'm finding primarily old articles that reference IIS6 which isn't helping. In short I have the following requirements. I need to secure one file/page and this one file/page only using a client certificate. The rest of the site does need to continue operating under SSL but doesn't require cl...

How to specify endpoint address that is different from service location in Java Web service client constructed with SAAJ?

I am constructing web service client in Java using SAAJ to consume Windows asmx service. I cannot use other high level tools because applying Java tools (Axis or Jax-ws) to WSDL results in WSDL errors It works good for http services but for https services I got the problem because in WSDL address location ( ...

xmpp group communication

hi all, i implemented the xmpp client in android.its working fine.the next task i focused on group communication from android.please anybody help me in the java code which related to group communication from xmpp. thnku in advance regards renuka ...