|
Can anyone explain the difference between a HTTP-GET and HTTP-POST? And why do people say that a HTTP-POST is unsecured then a GET?
Started by Brandon Michael Hunter on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
HTTP-GET is much more unsecure when you are using GET method all variables are passed by url is 'pretty links' in url like site.com/user/username....
Part 1 of your question is a duplicate of several previous questions:
http://stackoverflow.com.
|
|
Ok I have an apache IBM HTTP Server WAS 6.1 setup
I have my certs correctly installed and can successfully load http and https pages.
After a successful j_security_check authentication via https I want the now authorized page (and all subsequent pages...
Started by mugafuga on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Action=submit
This is the solution for http to https to http
You have to put the condition RewriteEngine On RewriteCond %{REQUEST_URI} /path/secure/index.jsf RewriteRule ^(.*)$ http://url/path.
|
|
I'm trying to create something similar to the diggbar : http://digg.com/http://cnn.com
I'm using Visual Studio 2010 and Asp Development server.
However, I can't get the ASP dev server to handle the request because it contains "http:" in the path. I've...
Started by mat3 on
, 8 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
In previous versions the Url character.
From Stefan on the ASP.Net team: http://forums.asp.net of a Url it rejects the request with an HTTP 400 error.
By the Ionics ISAPI Rewrite Filter.
|
Ask your Facebook Friends
|
I am using asp.net 3.5 and IIS 6.
How can we automatically redirect pages from http(s)://example.com/* to http(s)://www.example.com/* ?
thanks.
Started by Anwar Chandra on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
See this in action here:
http://doodle.co.uk http://doodlegraphics.co.uk http://www.doodle-graphics.co.uk All end up on http://www.doodle.co.uk
In general, the performance will be better if you let.
|
|
Let's say I have an app and in that app I need to view and edit "documents". I was thinking of this URL design.
To pull up the default view of document with the ID "x123":
http://domain/app/document-x123
To edit the same document:
http://domain/app/document...
Started by Chris Simmons on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Take livejournal:
http://jwz.livejournal.com/
http://jwz.livejournal....
So URL would be:
http://domain/app/documents/delete/x123
I like http://domain/app/document-x123/edit preference.
Resource.action(id) feels more natural to me...
|
|
Hi all, I have an application which is hosted on the stage server. If i use my apllication by giving the credentials it will open the site. URL => http://mysite.com
but if i change the url to http://www.mysite.com , the site will show the login page...
Answer Snippets (Read the full thread at stackoverflow):
Different issues you seem to be asking:
First off - why you get http://www.google.com when typing http to http://google.com ends up at http://www.google.com /
You can do the same, by redirecting every call to http:/....
|
|
Hi,
After a few tests, I'm starting to reach the conclusion that a browser does not send a Referer HTTP header when one clicks to a http page from a https one.
What security reason is that for? Is is defined somewhere in the standard?
Started by jeje on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
So, this is expected / standard behaviour....
HTTP request if the referring page was transferred with a secure protocol
The HTTP RFC states field in a (non-secure) HTTP request if the referring page was transferred with a secure protocol.
|
|
I am having trouble getting my ASP.NET application to start an application. For example when I type: http://my.domain.com/virtualdir or
http://my.domain.com/virtualdir/default.aspx
My application will start but I cannot get ASP.NET to start when I type...
Started by MikeJ on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Redirect http://my.domain.com to http://my.domain.com/virtualdir , so Default.aspx will be requested in a directory (application) called virtualdirectory , then the URL of your application is http://my.domain.com/virtualdirectory....
|
|
Hi all,
Does HTTP PUT have advantages over HTTP POST, particularly for File Uploads? Data transfer should be highly secure.. Your ideas / guidance on this will be of great help.
regards, Kingsley Reuben
Started by Kingsley Reuben on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Does HTTP PUT have advantages over HTTP POST, particularly for File Uploads?
You can use.
Whichever HTTP method you use, you'll be transmitting data in the clear unless you secure the connection using SSL.
|
|
I have an application written on ASP.NET MVC (V 1.0). The application runs on IIS7 and the DNS is provided by GoDaddy.
I would like to forward any request that comes from http://mydomain.com/ctrlr/act/value to a URL of this form: http://WWW.mydomain.com...
Started by xraminx on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
="(.*)" ignoreCase="true" /> <conditions> <add input="{HTTP_HOST}" pattern="^domain\.com" /> </conditions> <action type="Redirect" url="http://www.domain.com/{R:1}" redirectType="Permanent to www.domain.com by doing....
|