Tagged Questions

2
votes
2answers
57 views

Rejecting a TCP connection before it’s being accepted?

There are 3 different accept versions in winsock. Aside from the basic accept which is there for standard compliance, there's also AcceptEx which seems the most advanced version (d …
0
votes
2answers
29 views

Accept SSL Certificate in vb6 using the Webbrowser control.

The Problem: I am creating a vb6 application that will connect to a particular web service located on a a HTTPS site. The problem is, the HTTPS site I'm accessing requires all requ …
0
votes
0answers
20 views

Set Response format inside a function according to Accept header and not outside with ResponseFormat = WebMessageFormat.Json in REST

Hi there, i am using the Plain old XML template from WCF REST Starter Kit Preview 2 to build a REST service and i would like to set the ResponseFormat inside the OperationContract, …
0
votes
3answers
64 views

what ip address does accept return

see the following code: accept(sockfd, (struct sockaddr*)&cliaddr, &slen); cout << inet_ntop(AF_INET, cliaddr.sin_addr, ipv4addr, 100); my client connects from loc …
0
votes
1answer
100 views

accept() with sockets shared between multiple processes (based on Apache preforking)

I'm working on some Python code modeled on Apache's MPM prefork server. I am more an applications programmer than a network programmer and it's been 10 years since I read Stevens, …
0
votes
2answers
155 views

jquery droppable accept

Hi All, Can anyone tell me how can i write a function in accept condition and then how does it finds out that what to accept and what not to accept. Fo r eg i want to accept div a …
0
votes
1answer
289 views

How does Restlet handle the HTTP Accept header?

The Restlet framework is supposed to handle automatic content negotiation; however, it doesn't seem to do it properly. When a client sends and HTTP GET request with the Accept hea …
0
votes
2answers
237 views

WinForms Accept Button Annoyance

I have a base panel class that has (among other things) three buttons. I use subclasses of this base class in two different config dialogues. Both dialogues have an OK button set a …
0
votes
2answers
352 views

How do I send a custom header with urllib2 in a HTTP Request?

I want to send a custom "Accept" header in my request when using urllib2.urlopen(..). How do I do that?