Tagged Questions
0
votes
1answer
23 views
FileUpload Without Servlet
I have a very small web server in an Android app which I want to POST a file to in a Multipart POST request. I believe that FileUpload makes this possibly however it requires a servlet which I do not ...
0
votes
0answers
33 views
Send and Accept HTTP POST Python, Apache
I am new to web servers and I am trying to create a python script that sends a POST message to my local apache server and then the server acknowledges its receipt.
I am having trouble with the latter ...
-1
votes
1answer
16 views
What version of Apache to download [closed]
I'm just beginning to program and I don't know which version of Apache to download. I need Apache to run my code is my understanding.
"Python web scripts are server-side scripts, meaning they must ...
0
votes
1answer
32 views
French characters encoding issues è is displayed as è in java
I am using a html form to input strings in French. When I read the strings on the server side (Java), some French characters don't get displayed properly.
For example,
è has turned to è
I am ...
0
votes
2answers
14 views
Downside(s) of using HTTPs only on parts of the site
I am managing a shop that forces HTTPs on the register/login/account/checkout pages, but that's it, and I've been trying to convince people to force HTTPs on everything.
I know that it's recommended ...
0
votes
1answer
18 views
HttpPost request with cookies
I need to make two requests to the server. In the first request I send parameter userID = 1 and the server returns a cookie _session_ID. Now I send a second request with no parameters and the result ...
0
votes
1answer
18 views
Share Rails 3 Phusion Passenger Deployment Between HTTP and HTTPS
I have an apache virtual host for port 80 that hosts a rails 3 phusion passenger application. I would like some actions of the application to switch to https (port 443). What is the best way to share ...
0
votes
1answer
30 views
Apache Http Client in Android
I'm trying to get the whole html from a web page in Android.
In java console aplication I used to do like this:
DefaultHttpClient httpclient = new DefaultHttpClient();
String busca = "kindle"; ...
0
votes
1answer
13 views
Bad requests for WordPress RSS and author URLs
On a popular WordPress site, I'm getting a constant stream of requests for these paths (where author-name is the first and last name of one of the WordPress users):
GET ...
-1
votes
0answers
22 views
Apache server reached MaxClients setting [closed]
I'm using Apache/2.2.15 (Unix) in CentOS release 6.3 (Final) 2.6.32-279.1.1.el6.x86_64.
I have some HTTP requests from specific referer with diferrent ip adresses and i want to block these requests ...
1
vote
1answer
43 views
Why https is faster than http in my apache server?
Server information:
$ httpd -v
Server version: Apache/2.2.24 (Unix)
Server built: May 8 2013 15:17:37
I create a self-signed SSL Certificate with openssl.
Test Code(Java with selenium ...
0
votes
0answers
13 views
How simulate error “empty response from the server”
I develop http library for html scraping, and now at least I start to write unit tests. Currently i want to check empty response handler, but for this i need simulate this error on server side, but i ...
0
votes
2answers
17 views
How do I know the offset for each limit?
When I use LIMIT to make pages of results, how do we usually know the offset i.e. which page should be retrieved for each request?
Via cookies?
0
votes
1answer
26 views
Apache LimitRequestBody - no effect on SSL/binary data
I have a service that accepts attachments as multipart form-data in POST requests. I want to limit the size of attachments the server accepts to prevent abuse.
But I can't get Apache LimitRequestBody ...
0
votes
0answers
15 views
Apache: Password Protect Multiple URL Paths
I need to set up HTTP authentication for multiple URL paths (not actual directories). I have a WordPress installation with a couple of pages that have sub-pages and attachments, all of which fall ...
0
votes
0answers
22 views
VLC HTTP Streaming logs
I'm trying HTTP streaming with vlc, and it works fine.
The point is, I want the streaming info to be saved in some kind of log.. like apache logs.
Is that already available? if yes, where can I find ...
0
votes
2answers
60 views
How to Intercept a css get request [closed]
I'm building a custom Themeroller and in order to reflect the styling changes in the page I was thinking that once the client makes a styling change ,I'll add a link:
...
0
votes
0answers
18 views
Setting keep-alive when using HttpConnectionManager
I'm using org.apache.commons.httpclient.MultiThreadedHttpConnectionManager and getting clients from there using HttpClient
I'm trying to disable Keep-Alive
What is the right way to do this? I ...
0
votes
0answers
71 views
Java Uploading text file to Apache server
I have been trying to upload a simple text file to a Apache server installed in my local computer.
I Have a Java code to send the file content to the server. And a php server script to receive file in ...
0
votes
0answers
39 views
Apache server cannot be accessed outside of local host
I have installed the apache-tomcat server on my local win7. The port I specified is 9999.
I can access my service by http://localhost:9999 and http://myIPAddress:9999
But I cannot access my apache ...
0
votes
1answer
22 views
reload image/page after computation is complete from the server side
I have a python code that performs some fairly intense computations, and then generates a plot (png file) for display on the web. I'm using python, flask, mod_wsgi, and apache. Since the computation ...
0
votes
2answers
28 views
Creating an index with REST API
I'm trying to create an index within a set under a specific namespace, but am unsure how to do it.
My resources have this as an HTTP example:
POST /example/v1/index/{namespace}/{set}/{indexName}
...
0
votes
1answer
27 views
Redirect subdirectory to 404 page with status code
I am trying to redirect a subset of pages that have been removed from a website to a specific 404 page using htaccess.
I currently have this rule in my htaccess:
RewriteRule ^de/Engineering.*$ ...
0
votes
1answer
72 views
HttpClient exception: java.lang.IllegalArgumentException: host parameter is null
I have next code
URL targetUrl = ...
HttpClient client = new HttpClient(connectionManager);
GetMethod getMethod = new GetMethod();
getMethod.setPath(targetUrl.getPath());
...
1
vote
0answers
18 views
Is it possible to have a nested MultipartEntities or FormBodyPart in a multipart POST?
I'm trying to make something the following server POST request using MultipartEntity:
parameters: {"parameter1"=>"parameter1", "parameter2"=>{"sub_parameter1"=>"sub_parameter1", ...
0
votes
0answers
26 views
Recursively try all urls alphabetically and download files
Is there a way to recursively and alphabetically test all possible urls inside a folder and recursively download all the files to a local machine?
I am aware of curl and wget, but I'm not sure if ...
-3
votes
0answers
40 views
Your homepage is not returning a 200 (OK) http status [closed]
My script seams working but google can not index pages. 500 error
The google bot gives me the folowing report
"HTTP/1.1 500 Internal Server Error
Date: Tue, 16 Apr 2013 10:38:16 GMT
Server: Apache
...
1
vote
2answers
123 views
Can PHP (with Apache or Nginx) check HTTP header before POST request finished?
Here is a simple file upload form HTML.
<form enctype="multipart/form-data" action="upload.php" method="POST">
Send this file: <input name="userfile" type="file" />
<input ...
0
votes
1answer
21 views
Forbidding external domain access
Question: I would like to allow only my website's form; <form action="link" to navigate to www.domain.com/link when my form is submitted. But to deny direct access to the URL www.domain.com/link.
...
0
votes
0answers
62 views
Apache HTTP Client - Download HTML only
I have implemented an Apache Http Client in my android application, I only need to download the actual HTML of a page, not of the images, scripts or css. Is there a way I can turn those off? Something ...
0
votes
1answer
97 views
Android HTTP Request with HttpClient and AsyncHttpClient
I am developing an android application which make a HTTP request to a php file and then give me a String. The code works fine in android 2.x and lower, but when I run it in an android os higher then ...
0
votes
1answer
24 views
How to specify ip and domain with a http request?
I have a apache server and configure some vhosts.
Apache server with ip 172.20.20.20.
A domain url is 'http://www.atest.com/' and another domain url is 'http://www.btest.com/'
In test enviroment, ...
0
votes
0answers
20 views
PHP undefined index connecting Android with Apache [duplicate]
I have this code and no reason why it doesn't work. I'm trying to connect to a remote database with android/ php.
JAVA CODE
private void httppostconnect(ArrayList<NameValuePair> ...
0
votes
1answer
66 views
Extracting the post body from an HTTP response
I am trying to use httpClient (by apache) to post and get data. Posting is absolutely fine and my code for that has no issues, however, I cannot say the same for getting data.
The website I am ...
0
votes
1answer
32 views
Android and JSP Communication Error
I Have this JSP which just check the username and password and "out.write" 1 or 0 based on true or false.
<%@ page import="java.io.*" %>
<%
...
0
votes
1answer
27 views
Can I disable apache mod_setenvif if I'm using as reverse proxy NGinx?
I've installed Nginx as a reverse proxy in front of my existing apache server. All my requests are routed from Nginx server to Apache.
Can I disable mod_setenvif in my apache server?
...
0
votes
1answer
84 views
Java - Consume Web Service
I have the following Imports
import java.awt.List;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import ...
0
votes
0answers
46 views
How do I make apache SNI hosts without certificates redirect to http address?
I have an apache server with multiple named hosts all working fine for port 80 http traffic.
(A VPS with one unique IP address)
I have one domain that has a SSL certificate and that domain is ...
0
votes
1answer
39 views
Missing files listed in error.log
Today I stumbled upon a folder on my web host called 'error.log'. I thought I'd take a look.
I see multiple 'file does not exist' errors - there are three types of entries:
robots.txt
missing.html
...
-1
votes
1answer
48 views
Url rewrite for a domain name [closed]
Ok so i have hosting with godaddy and i have 2 websites hosted with them. I make a htaccess rule and add it into my main dir and it effect both domain names. Im just wondering if there anything i can ...
0
votes
0answers
30 views
Forbidden response in large url
I need to generate a large url like this:
/backend.php/Inscription/export/1577,1578,1579,..., 1580 etc....
But when the URL has more than 400 IDs, I obtain the following error:
You don't have ...
0
votes
1answer
19 views
Programming Apache VirtualHosts to make site accessible from two ports
I have my server side at http://example.co.uk, which is accessible in a web browser (or via a normal http request) to http://example.co.uk. However, for my app to be able to access the server side, ...
0
votes
0answers
70 views
Apache HTTP Client Cookie interacting with rails
I am trying to communicate with a rails server that is expecting the session hash to include the field [:user_id]
I am trying to store a cookie to be saved once a user logs in before this request is ...
-6
votes
1answer
48 views
HTTP query without waiting for a response [closed]
This question should appear stupid but still...
Is it possible to send an HTTP query without waiting for an HTTP response ?
Many thanks,
Ced.
0
votes
0answers
47 views
web application returns empty responses from time to time
From time to time my web application would return an empty response. The details:
It's a well tested web application, so I am sure it's a problem on the environment level and not the code level. It ...
-1
votes
2answers
121 views
accessing local webserver on lan with simaple name like http://example.intranet.com [closed]
I have a small network , with one ubuntu 12.04 (on which I am trying to host a local intranet website) server machine and several desktops . What I essentially want is to access the deployed pages on ...
0
votes
1answer
41 views
Working with HLS and Push contect to Apache
I have customer that have a envivio encoder. Today they push live HLS streams to Akamai.
Now the they want to try to push the stream to us. Buw wat kind of webserver do i need and how do i config the ...
0
votes
0answers
28 views
Parsing String Response into Apache HttpResponse?
I'm trying not to have to reinvent the wheel. In particular I'm already using Apache HttpClient for all my Http requests. A lot of the responses I get are being stored in a DB. Therefore, later I pull ...
0
votes
1answer
61 views
Force Apache to send 200 instead of 404 in .htaccess
I thought this would be a simple task but either I am worng or am just missing the easy answer!
I need a way for Apache to return a 200 for any page including a 404 page. Is there any easy ...
0
votes
0answers
49 views
ImproperlyConfigured: Requested setting MIDDLEWARE_CLASSES, but settings are not configured
i am confuring the apache mod_wsgi to django project
and here is my djangotest.wsgi file
import os
import sys
sys.path = ['/home/pavan/djangoproject'] + sys.path
os.environ['DJANGO_SETTINS_MODULE'] ...


