HighTechTalks DotNet Forums  

An established connection was aborted by the software in your host machine

Dotnet Framework (Remoting) microsoft.public.dotnet.framework.remoting


Discuss An established connection was aborted by the software in your host machine in the Dotnet Framework (Remoting) forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
MajorTom
 
Posts: n/a

Default An established connection was aborted by the software in your host machine - 12-12-2004 , 10:39 AM






Hello, I getting this error

An established connection was aborted by the software in your host machine

here:
TcpClient smtpSocket = new TcpClient(_serverSmtp, _portSmtp)

port = 25 (smtp server)
and my smtp server is working fine from the outlook program

any help ? please

TIA



Reply With Quote
  #2  
Old   
Sam Santiago
 
Posts: n/a

Default Re: An established connection was aborted by the software in your host machine - 12-12-2004 , 11:25 AM






This is a somewhat generic error message with connectivity issues. Try to
connect to the server via Telnet to verify you can get to the port outside
of your application. Does your SMTP server need authentication? Outlook
might connect, but it could be using authentication prior to connecting.
Also, do you have a proxy or firewall in the picture.

Thanks,

Sam

--
_______________________________
Sam Santiago
ssantiago (AT) n0spam-SoftiTechture (DOT) com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote

Quote:
Hello, I getting this error

An established connection was aborted by the software in your host machine

here:
TcpClient smtpSocket = new TcpClient(_serverSmtp, _portSmtp)

port = 25 (smtp server)
and my smtp server is working fine from the outlook program

any help ? please

TIA





Reply With Quote
  #3  
Old   
MajorTom
 
Posts: n/a

Default Re: An established connection was aborted by the software in your host machine - 12-12-2004 , 11:50 AM



Thanks Sam

1.- whow do i check from telnet the port ?
(get to the port outside of your application)

2.- my Outlook does not have the check for the SMTP server requires
authentication
the server name is mail.verizon.net.do
and I get the error at the:
smtpSocket.Connect(_serverSmtp, _portSmtp);
only when try to open de connection
for that reason I think the problems is not with the autenthication ?

3.- No proxy

4.- No firewall, using W server 2003 ?

Thanks very much Sam

I still waiting for help

MajorTom

"Sam Santiago" <ssantiago (AT) n0spam-SoftiTechture (DOT) com> wrote

Quote:
This is a somewhat generic error message with connectivity issues. Try to
connect to the server via Telnet to verify you can get to the port outside
of your application. Does your SMTP server need authentication? Outlook
might connect, but it could be using authentication prior to connecting.
Also, do you have a proxy or firewall in the picture.

Thanks,

Sam

--
_______________________________
Sam Santiago
ssantiago (AT) n0spam-SoftiTechture (DOT) com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote in message
news:emBfkkG4EHA.2316 (AT) TK2MSFTNGP15 (DOT) phx.gbl...
Hello, I getting this error

An established connection was aborted by the software in your host
machine

here:
TcpClient smtpSocket = new TcpClient(_serverSmtp, _portSmtp)

port = 25 (smtp server)
and my smtp server is working fine from the outlook program

any help ? please

TIA







Reply With Quote
  #4  
Old   
Alvaro Thompson
 
Posts: n/a

Default Re: An established connection was aborted by the software in your host machine - 12-12-2004 , 12:33 PM



Try opening up a command prompt, typing "telnet", then in telnet, type the
following:

open <ip or address of server> 25

This should attempt to open a connection on port 25 (assuming that the
server is using a standard SMTP port), if you get a bit of text welcoming
you, then the mail server is fine - if on the other hand, you get something
like "connection refused", then it's a server problem, rather than a code
problem.

Regards,
Alvaro


"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote

Quote:
Thanks Sam

1.- whow do i check from telnet the port ?
(get to the port outside of your application)

2.- my Outlook does not have the check for the SMTP server requires
authentication
the server name is mail.verizon.net.do
and I get the error at the:
smtpSocket.Connect(_serverSmtp, _portSmtp);
only when try to open de connection
for that reason I think the problems is not with the autenthication ?

3.- No proxy

4.- No firewall, using W server 2003 ?

Thanks very much Sam

I still waiting for help

MajorTom

"Sam Santiago" <ssantiago (AT) n0spam-SoftiTechture (DOT) com> wrote in message
news:uBasC#G4EHA.2156 (AT) TK2MSFTNGP10 (DOT) phx.gbl...
This is a somewhat generic error message with connectivity issues. Try
to
connect to the server via Telnet to verify you can get to the port
outside
of your application. Does your SMTP server need authentication?
Outlook
might connect, but it could be using authentication prior to connecting.
Also, do you have a proxy or firewall in the picture.

Thanks,

Sam

--
_______________________________
Sam Santiago
ssantiago (AT) n0spam-SoftiTechture (DOT) com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote in message
news:emBfkkG4EHA.2316 (AT) TK2MSFTNGP15 (DOT) phx.gbl...
Hello, I getting this error

An established connection was aborted by the software in your host
machine

here:
TcpClient smtpSocket = new TcpClient(_serverSmtp, _portSmtp)

port = 25 (smtp server)
and my smtp server is working fine from the outlook program

any help ? please

TIA









Reply With Quote
  #5  
Old   
MajorTom
 
Posts: n/a

Default Re: An established connection was aborted by the software in your host machine - 12-12-2004 , 01:20 PM



Thanks Alvaro

I get the server error, Could not open connection to the host...
Now I know its'nt code problem, but I using this SMTP server regulary from
outlook without problems
At the outlook configuration it use the standar port, and not authentication
mode

The only abnormal thing "for me" is if I send a ping to mail.verizon.net.do
it resolve to 196.3.81.55 but get Request timed out, is that correct ?

Please, any thing more I can do ?

TIA
MajorTom

"Alvaro Thompson" <albiro (AT) gmail (DOT) com> wrote

Quote:
Try opening up a command prompt, typing "telnet", then in telnet, type the
following:

open <ip or address of server> 25

This should attempt to open a connection on port 25 (assuming that the
server is using a standard SMTP port), if you get a bit of text welcoming
you, then the mail server is fine - if on the other hand, you get
something
like "connection refused", then it's a server problem, rather than a code
problem.

Regards,
Alvaro


"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote in message
news:eHbsCMH4EHA.1192 (AT) tk2msftngp13 (DOT) phx.gbl...
Thanks Sam

1.- whow do i check from telnet the port ?
(get to the port outside of your application)

2.- my Outlook does not have the check for the SMTP server requires
authentication
the server name is mail.verizon.net.do
and I get the error at the:
smtpSocket.Connect(_serverSmtp, _portSmtp);
only when try to open de connection
for that reason I think the problems is not with the autenthication ?

3.- No proxy

4.- No firewall, using W server 2003 ?

Thanks very much Sam

I still waiting for help

MajorTom

"Sam Santiago" <ssantiago (AT) n0spam-SoftiTechture (DOT) com> wrote in message
news:uBasC#G4EHA.2156 (AT) TK2MSFTNGP10 (DOT) phx.gbl...
This is a somewhat generic error message with connectivity issues.
Try
to
connect to the server via Telnet to verify you can get to the port
outside
of your application. Does your SMTP server need authentication?
Outlook
might connect, but it could be using authentication prior to
connecting.
Also, do you have a proxy or firewall in the picture.

Thanks,

Sam

--
_______________________________
Sam Santiago
ssantiago (AT) n0spam-SoftiTechture (DOT) com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote in message
news:emBfkkG4EHA.2316 (AT) TK2MSFTNGP15 (DOT) phx.gbl...
Hello, I getting this error

An established connection was aborted by the software in your host
machine

here:
TcpClient smtpSocket = new TcpClient(_serverSmtp, _portSmtp)

port = 25 (smtp server)
and my smtp server is working fine from the outlook program

any help ? please

TIA











Reply With Quote
  #6  
Old   
Sam Santiago
 
Posts: n/a

Default Re: An established connection was aborted by the software in your host machine - 12-12-2004 , 08:23 PM



You can contact your ISP, Verizon, and ask them what you need to do to
connect to your mail server. I'm still guessing it's an authentication
issue. I don't think Verizon would allow anonymous access to their servers.
This link seems to indicate authentication is enabled, but I'm not sure
where you're connecting from:
http://www2.verizon.net/help/dsl/?case=5824

Thanks,

Sam

--
_______________________________
Sam Santiago
ssantiago (AT) n0spam-SoftiTechture (DOT) com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote

Quote:
Thanks Alvaro

I get the server error, Could not open connection to the host...
Now I know its'nt code problem, but I using this SMTP server regulary from
outlook without problems
At the outlook configuration it use the standar port, and not
authentication
mode

The only abnormal thing "for me" is if I send a ping to
mail.verizon.net.do
it resolve to 196.3.81.55 but get Request timed out, is that correct ?

Please, any thing more I can do ?

TIA
MajorTom

"Alvaro Thompson" <albiro (AT) gmail (DOT) com> wrote in message
news:#xduQkH4EHA.3368 (AT) TK2MSFTNGP10 (DOT) phx.gbl...
Try opening up a command prompt, typing "telnet", then in telnet, type
the
following:

open <ip or address of server> 25

This should attempt to open a connection on port 25 (assuming that the
server is using a standard SMTP port), if you get a bit of text welcoming
you, then the mail server is fine - if on the other hand, you get
something
like "connection refused", then it's a server problem, rather than a code
problem.

Regards,
Alvaro


"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote in message
news:eHbsCMH4EHA.1192 (AT) tk2msftngp13 (DOT) phx.gbl...
Thanks Sam

1.- whow do i check from telnet the port ?
(get to the port outside of your application)

2.- my Outlook does not have the check for the SMTP server requires
authentication
the server name is mail.verizon.net.do
and I get the error at the:
smtpSocket.Connect(_serverSmtp, _portSmtp);
only when try to open de connection
for that reason I think the problems is not with the autenthication ?

3.- No proxy

4.- No firewall, using W server 2003 ?

Thanks very much Sam

I still waiting for help

MajorTom

"Sam Santiago" <ssantiago (AT) n0spam-SoftiTechture (DOT) com> wrote in message
news:uBasC#G4EHA.2156 (AT) TK2MSFTNGP10 (DOT) phx.gbl...
This is a somewhat generic error message with connectivity issues.
Try
to
connect to the server via Telnet to verify you can get to the port
outside
of your application. Does your SMTP server need authentication?
Outlook
might connect, but it could be using authentication prior to
connecting.
Also, do you have a proxy or firewall in the picture.

Thanks,

Sam

--
_______________________________
Sam Santiago
ssantiago (AT) n0spam-SoftiTechture (DOT) com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote in message
news:emBfkkG4EHA.2316 (AT) TK2MSFTNGP15 (DOT) phx.gbl...
Hello, I getting this error

An established connection was aborted by the software in your host
machine

here:
TcpClient smtpSocket = new TcpClient(_serverSmtp, _portSmtp)

port = 25 (smtp server)
and my smtp server is working fine from the outlook program

any help ? please

TIA













Reply With Quote
  #7  
Old   
MajorTom
 
Posts: n/a

Default Re: An established connection was aborted by the software in your host machine - 12-13-2004 , 06:45 AM



Thank Sam, I will do that...

MajorTom

"Sam Santiago" <ssantiago (AT) n0spam-SoftiTechture (DOT) com> wrote

Quote:
You can contact your ISP, Verizon, and ask them what you need to do to
connect to your mail server. I'm still guessing it's an authentication
issue. I don't think Verizon would allow anonymous access to their
servers.
This link seems to indicate authentication is enabled, but I'm not sure
where you're connecting from:
http://www2.verizon.net/help/dsl/?case=5824

Thanks,

Sam

--
_______________________________
Sam Santiago
ssantiago (AT) n0spam-SoftiTechture (DOT) com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote in message
news:OVTZp%23H4EHA.1396 (AT) tk2msftngp13 (DOT) phx.gbl...
Thanks Alvaro

I get the server error, Could not open connection to the host...
Now I know its'nt code problem, but I using this SMTP server regulary
from
outlook without problems
At the outlook configuration it use the standar port, and not
authentication
mode

The only abnormal thing "for me" is if I send a ping to
mail.verizon.net.do
it resolve to 196.3.81.55 but get Request timed out, is that correct ?

Please, any thing more I can do ?

TIA
MajorTom

"Alvaro Thompson" <albiro (AT) gmail (DOT) com> wrote in message
news:#xduQkH4EHA.3368 (AT) TK2MSFTNGP10 (DOT) phx.gbl...
Try opening up a command prompt, typing "telnet", then in telnet, type
the
following:

open <ip or address of server> 25

This should attempt to open a connection on port 25 (assuming that the
server is using a standard SMTP port), if you get a bit of text
welcoming
you, then the mail server is fine - if on the other hand, you get
something
like "connection refused", then it's a server problem, rather than a
code
problem.

Regards,
Alvaro


"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote in message
news:eHbsCMH4EHA.1192 (AT) tk2msftngp13 (DOT) phx.gbl...
Thanks Sam

1.- whow do i check from telnet the port ?
(get to the port outside of your application)

2.- my Outlook does not have the check for the SMTP server requires
authentication
the server name is mail.verizon.net.do
and I get the error at the:
smtpSocket.Connect(_serverSmtp, _portSmtp);
only when try to open de connection
for that reason I think the problems is not with the autenthication ?

3.- No proxy

4.- No firewall, using W server 2003 ?

Thanks very much Sam

I still waiting for help

MajorTom

"Sam Santiago" <ssantiago (AT) n0spam-SoftiTechture (DOT) com> wrote in message
news:uBasC#G4EHA.2156 (AT) TK2MSFTNGP10 (DOT) phx.gbl...
This is a somewhat generic error message with connectivity issues.
Try
to
connect to the server via Telnet to verify you can get to the port
outside
of your application. Does your SMTP server need authentication?
Outlook
might connect, but it could be using authentication prior to
connecting.
Also, do you have a proxy or firewall in the picture.

Thanks,

Sam

--
_______________________________
Sam Santiago
ssantiago (AT) n0spam-SoftiTechture (DOT) com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.pulgarNO (AT) NOverizon (DOT) net.do> wrote in message
news:emBfkkG4EHA.2316 (AT) TK2MSFTNGP15 (DOT) phx.gbl...
Hello, I getting this error

An established connection was aborted by the software in your
host
machine

here:
TcpClient smtpSocket = new TcpClient(_serverSmtp, _portSmtp)

port = 25 (smtp server)
and my smtp server is working fine from the outlook program

any help ? please

TIA















Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.