|
Hi,
I'm am writing a .Net application which is supposed to post data to another .Net application. I use the following code to request the login page
WebProxy proxy = new WebProxy("http://proxy:80/", true); HttpWebRequest webRequest = WebRequest.Create...
Started by Kwah009 on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Questions/1060966/big-files-uploading-webexception-the-connection-was-closed-unexpectedly
this post any use? http://blog.josh420.com/archives/2008/02/underlying-connection-closed-fix-pesky-aspnet-webexception.aspx.
|
|
I ve been doing code review (mostly using tools like FindBug) of one of our pet projects and FindBug marked following code as errorneus (pseudocode):
Connection conn = dataSource.getConnection(); try{ PreparedStatement stmt = conn.prepareStatement(); ...
Started by jb on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
I've had problems with unclosed ResultSets in Oracle, even though the connection was closed
it looks like reusing a statement will close any open resultsets, and closing a statement will close any resultsets, but i don't see....
|
|
This exception is consistently thrown on a SOAP Request which takes almost three minutes to receive and is 2.25 megs in size.
When scouring the web I find all sorts of posts which all seem to be about setting headers on the Request, some want me to not...
Started by Dave on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You tagged the post as .NET35, so are you using WCF?
If so, here is an example of the App.config we use for large data ... .
Have you tried the sugestion of this Blog Post ? The problem will most probably lie in the TCP/HTTP stack implementation of .NET .
|
Ask your Facebook Friends
|
ANYONE BUYING GOLD IN UR ANY ACC [GAME]
phillippines place only :3
ninja ninja ninja ninja ninja ninja
CLOSED CLOSED
Started by CamShot xD on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at gaiaonline):
Its against gaia law.
:O CLOSED ..
Delete mo na to.
CamShot xD
You have to delete your topic (change title to closed) and delete your post.
|
|
Sometimes you accidentily close a program but then want to retrieve it. Opera browser has a "closed pages bin" that gives access to your closed pages from this session. It would be good to have a "closed software bin" where any program that was closed...
Started by skwire on
, 25 posts
by 12 people.
Answer Snippets (Read the full thread at donationcoder):
So what you are saying....
That way system.
Features:
- Click the X or press Alt-F4 to close an application similar in WinME...not give up RAM when a program was closed right away...wait a few minutes.
Recover closed applications.
|
|
Mal closed the thread! Hey Mal you closed the thread! Hahahahahahahahahahah !
I get it. After all that talk about God, you had to see what it felt like to be omnipotent, didn'tcha.
Gee, I wish I had a Smite key on my computer.... sigh
I don't think you...
Started by Krute on
, 16 posts
by 10 people.
Answer Snippets (Read the full thread at hv20):
But yeah, it was an appropriate thread to close, whilst making it ALL ABOUT ME!!! Last thread to close, whilst making it ALL ABOUT ME!!! Yeah, but that's how some Greek myths got started goons to bring my half-brother, instead....
In the end.
|
|
In my web application a lot of popups opened from the parent window using 'window.open'. So I want to close all those popups when my application's main window is closed. How can I do that?
Started by Sauron on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It's a bit problematic to know that the user ....
There's no callback that will notify you that the user closed his browser.
You can use model popups to be sure user closed popups before closing the main window.
close event.
|
|
Before I call Close() on my WCF service, should I check to see if it is not already closed?
ie.
myWCFService.State != System.ServiceModel.CommunicationState.Closed
My code looks like:
MyServiceClient myWCFClient = null;
try { myWCFClient = new (); } catch...
Started by Blankman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
A WCF client is disposable, so except for a few caveats you can use using :
using(MyClient client = new MyClient()) { client.DoStuff(); // etc }
But there is a big problem with this; the Dispose on the WCF client actually throws if it is faulted (losing... .
|
|
For my web application I need to close the child window whenever the parent window is closed. By "closed" I mean that the browser window is actually closed, not just navigated to a new page.
I have seen the " How can I close the child window if the parent...
Started by Rob on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
So as far as the child you navigate from that ... .
The browser considers the window closed once you refresh or close):
The browser considers the window closed once you refresh or close the window.
Be to drop this requirement.
|
|
Is there anyway to reopen the last closed tab in Visual Studio? Similar to Ctrl+Shift+t in FireFox and Chrome.
Thanks
Started by Shawn Simon on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can with the Visual studio Power Commands
If you're using VS 20... .
I don't know of way to open the last closed tab, but you can open your most recent file through your File Menu and the top one should be your most recently closed tab.
|