client

How to Hide/Encrypt Javascript(which is visible to client in his/her browser)

Possible Duplicates: hide javascript from showing up in browser How can I obfuscate JavaScript? How to Hide/Encrypt Javascript(which is visible to client in his/her browser) ...

asynchronous client socket closing ??

hey i want to ask a question about asynchronous socket communication on c#. everything is working well for now apart from closing clients. server doesnot close immediately the worker socket for client when a client close its conneciton. it closes a few time later. how can i resolve this problem?? ...

Where can I find a good MySQL Database client?

I'm looking for a good MySQL Database client similar to phpMyAdmin only for the desktop. Anyone know of any that are free and as full feature as phpMyAdmin? It needs to be able to connect to remote MySQL servers. ...

How to get asp.net client id at external javascript file

Hello. when i use embedded javascript functions i can get client id of elements with this code for example : document.getElementById('<%=buttonXXX.ClientID%>' ) but now i am using external javascript file for caching and faster rendering but this code does not work any more for getting client id's of elements it gives error how can ...

Handling TCP Streams

Our server is seemingly packet based. It is an adaptation from an old serial based system. It has been added, modified, re-built, etc over the years. Since TCP is a stream protocol and not a packet protocol, sometimes the packets get broken up. The ServerSocket is designed in such a way that when the Client sends data, part of the data c...

WCF TCP client with Java Socket server on custom XML messages

I am trying to build a WCF client for a Java Socket server which talks on a custom XML messages. I have created my own custom binding with MessageEncoder and netTCP transport. Now what I have seen happen is on the first call to the server, server accepts the connection. However the server then waits for a specific XML packet. This is bu...

Why should I use CSS3 buttons?

I built a website recently, and decided to create buttons that depress on click with CSS3, pretty cool. But is there really a valid reason to use CSS3 over a sprite, as only the modern browsers show the CSS3 buttons? The client asked me this question, and all I could think of was less http requests, so loading would be slightly faster...

How to use thread search method in imaplib?

I want to create a gmail client with the ability to view emails as conversations (threads). In imaplib, there is a method: IMAP4.thread(threading_algorithm, charset, search_criterion[, ...]) I think it could be the solution. Anybody has experience using it? Please give an example. Thanks. ...

Best practice to close WCF Clients after async calls

Hi there, Can anybody advice me the best practice for closing WCF clients after doing a async calls? Should it be within the "completed" method or should there be a different approach? /BB ...

Sending Client Certificate though HttpWebRequest, intermittenly working.

I have created a web application that calls a web service that requires a Client Certificate for authentication. Here is a snippet of how I am building the request: // Grab Certificate X509Certificate2 cert2 = new X509Certificate2(AppDomain.CurrentDomain.BaseDirectory + GiftCardConfig.A2A_CertificateLocation, Gif...

Do I need to offer an iPhone app under GPL if the webserver software is licensed under the terms of the GPL?

I'm about to write an iPhone / Android app to have a nice GUI on my mobile devices for an Open Source project which is mainly a web software with html frontend. The server is licensed under the terms of the GPL 2. There will be an JSON API which I will implement in the server code. I will release the API on server side under the GPL 2 t...

All about wcf client

When I deploy the same service on different machines as they have different information that I need , how can I use my client gracely to consume these service . ...

FTP Get works on windows but not on linux.

I am doing an FTP Get in Java with FTP Client which if I run on windows works fine but when I run the same on a linux box it get me the file with some modifications. I have a test.tar.gz file (bunch of text files) which is of size 2872578 but it shows up as 2872541 when I run my java program on linux. Anyone faced a similar problem? //...

weblogic as ssl client (single side auth)

How can i make weblogic to work as client in ssl authentication. ...

Twisted client for a send only protocol that is tolerant of disconnects.

I've decided to dip my toe into the world of asynchronous python with the help of twisted. I've implemented some of the examples from the documentation, but I'm having a difficult time finding an example of the, very simple, client I'm trying to write. In short I'd like a client which establishes a tcp connection with a server and then ...

Retrieve Images From Server via Client Side

Hello StackOVerflow, I have a folder on the server with some images in it. I would like to have my client code read this folder's contents (images) and then display this image on a div. I thought this would be easy with AJAX, but it seems that AJAX returns some raw data embedded in the image. I have been looking all over for a way to...

Ideas-guidance for data visualization tools and plugins

Trying to bring different tools/technologies into one project, so this question is for ideas to achieve each stage. I'm currently using GraphViz and like it's simplicity in presenting data; compared to other comparable tools. Project: Computer network. Is there an alternative (javascript/client side) tool to ZGRViewer? I like its abil...

Opensocial Java Client : How to add templateParams to Activity object

Does anybody know how to add templateParams to an Activity instance while creating activities with opensocial-java-client. My code is here: Activity activity=new Activity(); activity.setTitleId("<titleId goes here>"); activity.setBodyId("<bodyId goes here>"); Request request = ActivitiesService.createActivity(activity); Response respo...

.NET client calling HTTPS Java web service

I have a HTTPS Java Web Service, I am trying to access the web service with .NET[.NET 2.0 style client / WCF client]. I am getting back this error from WS. "HTTP Status 401 - This request requires HTTP authentication ()." How do I find out what kind of security this WS has? Besides SSL, I have user name and password to send it to WS, ...

Preventing mobile API client identity theft

We're developing a REST API to be consumed by a couple of mobile applications. It's important that we're able to trust the identities of these mobile applications. In our current design, each API call is authenticated with an "API Key" parameter and secured with HTTPS. My concern is that the API Key is embedded within each copy of the ...