Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
1k views

rails 3 response format and versioning using vendor MIME type in the Accept header

Preamble: I investigated how to version an API and found several ways to do it. I decided to try peter williams' suggestion and created new vendor mime types to specify version and format. I could ...
6
votes
7answers
5k views

jquery droppable accept

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 and div b in accept ...
5
votes
3answers
2k views

Socket listen doesn't unbind in C++ under linux

I have a socket that listens on some port. I send the SIGSTOP signal to the thread that waits on the port(using accept) and terminate it. then I close the fd of the socket that I waited on. But for ...
4
votes
1answer
103 views

Xcode will not accept user input!

my xcode will compile but not let me input anything #include <iostream> using namespace std; bool truthStatement; int main (int argc, const char * argv[]) { string name; cout << ...
4
votes
2answers
2k 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?
3
votes
2answers
815 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 (due to it's ...
2
votes
2answers
267 views

Server & client socket connection issue re. send(), accept() and multi-threading

I'm designing a server program in C++ to receive multiple client connections and pass them into threads, however I've reached an impasse. The socket connections all work fine, as does the ...
2
votes
1answer
113 views

IE9 Acceptheader breaks when CSS is rewritten to PHP file

My application relies entirely on mod_rewrite rewriting image / JS / CSS urls to PHP documents with the filename in one of the arguments. E.g: /account/accountname/path/to/file rewrites to: ...
2
votes
1answer
70 views

pthread_join causes termination on accept()

I have an attached server thread blocked on an accept() waiting for connections. Externally I try to terminate the thread by calling pthread_cancel(), followed by pthread_join(). Upon calling the ...
2
votes
1answer
286 views

Is accept() thread-safe?

I'm currently writing a simple webserver in C for a course I'm doing. One requirement is for us to implement a thread pool to handle connections using pthreads. I know how I would go about doing this ...
2
votes
1answer
2k 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, so I'm trying to get ...
1
vote
2answers
72 views

accept returns existing connection, causing seg fault

I am creating a server daemon in c that accepts numerous simultaneous connections, and the clients will be sending data to the server. I currently have each client connection being spawned into a new ...
1
vote
3answers
88 views

why we cannot accept() a socket on some process and recv() data from its child?

I'm trying to implement a simple web server on Linux that connects to the client (the browser) ,receives some requests from the client (e.g GET), and then sends back the response with desired file. I ...
1
vote
1answer
58 views

How the kernel continues with the three way handshake after it sets the state to TCP_SYN_RECV

I am trying to understand how the TCP three way handshake is implemented in Linux kernel, version 2.6.33. I started with function accept() which leads me to: ...
1
vote
2answers
63 views

what's the host port number when we use accept() and connect() in C socket programming

the Beej's Guide to Network Programming explains the accept() as follows: What's going to happen is this: someone far far away will try to connect() to your machine on a port that you are listen()ing ...
1
vote
1answer
272 views

rails media file stream accept byte range request through send_data or send_file method

I have the following problem. Sounds are hidden from the public folder, cause there are only certain Users who should have access to the sound files. So I made a certain method, which acts like a ...
1
vote
1answer
291 views

Dealing with listening socket by epoll

All below is from man epoll page: The function do_use_fd() uses the new ready file descriptor until EAGAIN is returned by either read(2) or write(2). Code example for ET triggered ...
1
vote
1answer
711 views

twitter api returning: Not authorized to use this endpoint

EDIT: I was hoping abraham was wrong, but unfortunately for the time being he is absolutely correct. Its not part of the official API. I'm trying to use the twitter api to accept a follow request on ...
1
vote
4answers
125 views

Socket communication of server with two different applications, Java

I am writing the code for a server that would help two different applications in different platforms communicate with each other. To visualize it a bit it would be something like this : ...
1
vote
0answers
328 views

Android BluetoothServerSocket accept encounter an exception but endpoint device has connected?

I'm developing a program on Android to establish connections between my phone and outer devices. The code that establishes ServerSocket and accept connection from peers is like this: while ...
1
vote
3answers
142 views

Socket programming - API doubt

There was this question posted in class today about API design in socket programming. Why are listen() and accept() provided as different functions and not merged into one function? Now as far as I ...
1
vote
2answers
310 views

AcceptEx without WSAIoctl

Is there any difference between using AcceptEx direct call or using function pointer obtained by WSAIoctl. MSDN doesn't fully covers this question regarding performance issue and other problems that ...
1
vote
0answers
1k views

Android Bluetooth Server socket will be blocked on accept() if it processes more than one conntion

I have studied the android bluetooth example. What I'm confused is that other devices has sent a connection request, and the server is just blocked so long without accepted if previous connection ...
1
vote
1answer
173 views

jQuery Drag and Drop to highlighted boxes

so i have this script..well i wanted the soldier to be dropped only at the highlighted boxes i tried accept: $(selector) and revert: "invalid" but it seems that it disallows it to be dropped even on ...
1
vote
2answers
353 views

Why does the socket accept function not release after closesock called?

I have a server application that opens a socket and listen for a connection. In the application, I have a separate thread that creates a socket, binds it and calls the listen and accept functions on ...
1
vote
2answers
74 views

Creating a local server visible through firewalls

I have a local server written in C++ listening to inbound TCP connects using plain socket ::accept() and UDP recvfrom(). I have two problems with this that I wish to solve: Can I programatically ...
1
vote
2answers
797 views

WinSock best accept() practices

Imagine you have a server which can handle only one client at a time. The server uses WSAAsyncSelect to be notified of new connections. In this case, what is the best way of handling FD_ACCEPT ...
1
vote
1answer
118 views

WSACONNREFUSED when connecting to server

I'm currently working on a server. I know that the client side is working (I can connect to www.google.com on port 80, for example), but the server is not functioning correctly. The socket has ...
1
vote
3answers
1k views

in socket programming, can accept() the same listening socket in multi-process(thread)?

i.e. open a listening socket in parent process call epoll_wait(listening_socket) in child1,child2,child3.... call accept in each child if there is connection request
1
vote
1answer
2k views

socket.accept error 24: To many open files

I have a problem with open files under my Ubuntu 9.10 when running server in Python2.6 And main problem is that, that i don't know why it so.. I have set ulimit -n = 999999 net.core.somaxconn = ...
1
vote
2answers
359 views

Why would Linux reuse a file descriptor allocated by pipe()

I'm seeing an issue using both sockets and pipes in Linux. Specifically, we call pipe(), which allocates the next two available file descriptors... let's say 10 and 11. Then we call accept() on a ...
1
vote
2answers
1k 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 request to accept it's ...
1
vote
2answers
339 views

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

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, not outside(not with ...
1
vote
2answers
614 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 as the accept button. ...
0
votes
0answers
6 views

New App Accept Dialogue - how to get maximum accept %'s?

With the new Facebook App Accept Dialogue upon us - just wondering what has worked for people to date? Here it is Have people seen the new app accept dialogue up app accept %'s? Other than standard ...
0
votes
0answers
23 views

Adding gzip and deflate to my project

I have a project built on html,javascript and jquery.When i tested my website speed in google speed test it recommended using gzip,deflate. But Since I am beginner in coding part i dont know how to ...
0
votes
1answer
25 views

Is there a website that will allow me to filter tweets from my Twitter feed?

I need to approve/reject tweets from my Twitter feed, and display on our website. Any websites out there that will provide this functionality? I've looked into TidyTweet.com, but I can't tell if ...
0
votes
1answer
37 views

Disclosing geolocation positions to all users makes an app ineligible for the Apple Store?

I would like to know if the app I'd like to create has any chance to be eligible for the App Store. The app would temporarily store each user's geolocation information on a server and make it ...
0
votes
0answers
147 views

Adding a QSpacer to QGridLayout more than once is causing myChildDialog.accept() to close the parent MainWindow too

I have a QMainWindow, which has a tab called ToolTab which has a Widget called Tool Widget. Tool widget has a few buttons that launch a few QDialogs with myCustomDialog.exec_() This all works well ...
0
votes
1answer
237 views

how to use danymic accept value in jqueryui droppable?

I'm using the Jquery-ui. I have different droppable ul(s) in one page, and different draggable li(s) too. What I wanted was that: 1. ul differ from each other by their title, like "FUNCTION", "BUG", ...
0
votes
1answer
38 views

Conventional way of accepting connections in a proactive web-server (using asynchronous IO)

I'm currently exploring the aio on linux to use it for implementing a web-server. As I have already discovered, there are not too many resources that cover in detail the usage of aio. The question is ...
0
votes
3answers
244 views

Socket programming accept() in C

Okay I'm brand new to socket programming and my program is not behaving like I'd expect it to. In all the examples that I see of socket programming they use accept() and all the code after assumes ...
0
votes
1answer
193 views

TCP server accept call does not return

We need some help with a TCP client server code. The client timesout from its connect call and the server does not return from accept. Here's the strace. strace -p 7167 -p 7168 -p 7297 Process 7167 ...
0
votes
1answer
96 views

FilterIterator bitmask (or bitfield)

I'm struggling with bitmasks (or is it bitfields?). I'm not sure how to do it anymore. I want to create a DirectoryFilterIterator that accepts flags of what to filter. I thought I'd use these bits ...
0
votes
0answers
173 views

Client Accepting strange problem. C++ Linux

I'm making a multi-threaded server and i just ran into a strange problem. When the very first client connects to the server (after i run the application), the accept command returns ip address at ...
0
votes
2answers
240 views

AcceptEx returns 1022 (WSAEINVAL)… What did I do wrong?

I am trying to code a small test-server for completion ports. But when I try to call AcceptEx... it always returns WSAEINVAL as the winsock error code... I don“t really get what was my mistake ...
0
votes
4answers
411 views

C++ Failing at SOCKET accept() Method

I am currently make a Server, I learned to make something like this: while(true) { SOCKET s = accept(s, ....) // do something with the connection printf("connection\n"); } I learned ...
0
votes
1answer
329 views

how to do non blocking accept() in Python?

I cannot use threads thus I want to write a server program that can be interrupted after a while: d = show_non_modal_dialog("serving clients") s = socket(...) s.bind(...) s.listen() while ...
0
votes
2answers
266 views

Unblocking accept()

I have a blocking call to accept(). From another thread I close the socket, hoping that it'll unblock the accept() call, which it does but I have a case when it doesn't: e.g. thread A enters accept(), ...
0
votes
2answers
2k views

Java “Printer is not accepting jobs” old Brother printers

I have client which has a problem with printing from JAVA applications, using old Brother printers. The exception he gets is "Printer is not accepting jobs". Other applications (not java ...

1 2