6
votes
6answers
308 views
Can I capture stdout/stderr separately and maintain original order?
I've written a Windows application using the native win32 API. My app will launch other processes and capture the output and highlight stderr output in red.
In order to accomplish this I create a …
5
votes
4answers
441 views
Why is HTML form redirection used in OpenID 2?
Why would you do an automatic HTML post rather than a simple redirect?
Is this so developers can automatically generate a login form that posts directory to the remote server when the OpenID is …
4
votes
3answers
412 views
How can I keep WWW::Mechanize from following redirects?
I have a Perl script that uses WWW::Mechanize to read from a file and perform some automated tasks on a website. However, the website uses a 302 redirect after every time I request a certain page. I …
4
votes
9answers
713 views
How to make a redirect in PHP?
Is it possible to redirect a user to a different page through the user of PHP?
Say the user goes to www.example.com/page.php and it I want to redirect them to www.example.com/index.php , how would I …
4
votes
4answers
511 views
Redirecting users from edit page back to calling page
I am working on a project management web application. The user has a variety of ways to display a list of tasks. When viewing a list page, they click on task and are redirected to the task edit …
3
votes
2answers
503 views
Redirect stdout and stderr to a single file in dos
I'm trying to redirect all output (stdout + stderr) of a dos command to a single file:
C:\>dir 1> a.txt 2> a.txt
The process cannot access the file because it is being used by another …
3
votes
3answers
151 views
Temporary Input Redirection in Bash
I am looking for a way to dump input into my terminal from a file, but when EOF is reached I would like input returned back to my keyboard. Is there a way to do this with Bash (or any other …
3
votes
1answer
176 views
Jersey - Redirection Using Get Not Put, Causes Redirection Loop
Hello chaps,
I'm working on a web app that uses Jersey. I'm trying to implement a get-after-post sort of thing using a URIBuilder and a seeOther response. The aim is to redirect to the same URI the …
3
votes
4answers
371 views
Is there a command-line shortcut for “>/dev/null 2>&1”
it's really annoying to type this whenever I don't want to see a program's output. I'd love to know if there is a shorter way to write:
$ program >/dev/null 2>&1
Generic shell is the best, but …
3
votes
3answers
539 views
How do I redirect to the previous action in ASP.NET MVC?
Lets suppose that I have some pages
some.web/articles/details/5
some.web/users/info/bob
some.web/foo/bar/7
that can call a common utility controller like
locale/change/es
or
authorization/login
…
3
votes
1answer
102 views
Sending user to a page created based on their POST request in Django
I have a form in which the user selects a few items to display on "the following page". This selection is always unique, and we will store each set of selections made using a model, indexed by the id …
3
votes
7answers
207 views
how to redirect a output of a command to two files
i need to redirect a output of a command to two files say file1 and file2
file1 is a new file and file2 is already existing file where i need to append the output
i have tried
This is not giving the …
3
votes
2answers
384 views
How can I redirect my web pages using .htaccess so old links are redirected to new ones?
I have links which has an old format as www.mydomain.com/dir/this_my_page.html and my new script needs to be forwarded to www.mydomain.com/newdir/this+my+page.htm... What am I going to edit in my …
3
votes
2answers
537 views
Detect closed pipe in redirected console output in .NET applications
The .NET Console class and its default TextWriter implementation (available as Console.Out and implicitly in e.g. Console.WriteLine()) does not signal any error when the application is having its …
3
votes
3answers
291 views
Three Layered Web Application
Is it OK - best practise wise - to use the second layer to redirect the user?
For example:
public static void ForceLogin()
{
HttpCookie cookie = HttpContext.Current.Request.Cookies[cookieName];
…
