473,379 Members | 1,530 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,379 software developers and data experts.

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

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
Nov 16 '05 #1
6 28423
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
ss*******@n0spam-SoftiTechture.com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.********@NOverizon.net.do> wrote in message
news:em**************@TK2MSFTNGP15.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

Nov 16 '05 #2
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" <ss*******@n0spam-SoftiTechture.com> wrote in message
news:uB**************@TK2MSFTNGP10.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
ss*******@n0spam-SoftiTechture.com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.********@NOverizon.net.do> wrote in message
news:em**************@TK2MSFTNGP15.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


Nov 16 '05 #3
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.********@NOverizon.net.do> wrote in message
news:eH**************@tk2msftngp13.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" <ss*******@n0spam-SoftiTechture.com> wrote in message
news:uB**************@TK2MSFTNGP10.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
ss*******@n0spam-SoftiTechture.com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.********@NOverizon.net.do> wrote in message
news:em**************@TK2MSFTNGP15.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



Nov 16 '05 #4
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" <al****@gmail.com> wrote in message
news:#x**************@TK2MSFTNGP10.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.********@NOverizon.net.do> wrote in message
news:eH**************@tk2msftngp13.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" <ss*******@n0spam-SoftiTechture.com> wrote in message
news:uB**************@TK2MSFTNGP10.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
ss*******@n0spam-SoftiTechture.com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.********@NOverizon.net.do> wrote in message
news:em**************@TK2MSFTNGP15.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
>
>



Nov 16 '05 #5
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
ss*******@n0spam-SoftiTechture.com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.********@NOverizon.net.do> wrote in message
news:OV****************@tk2msftngp13.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" <al****@gmail.com> wrote in message
news:#x**************@TK2MSFTNGP10.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.********@NOverizon.net.do> wrote in message
news:eH**************@tk2msftngp13.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" <ss*******@n0spam-SoftiTechture.com> wrote in message
> news:uB**************@TK2MSFTNGP10.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
> > ss*******@n0spam-SoftiTechture.com
> > http://www.SoftiTechture.com
> > _______________________________
> > "MajorTom" <m.********@NOverizon.net.do> wrote in message
> > news:em**************@TK2MSFTNGP15.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
> > >
> > >
> >
> >
>
>



Nov 16 '05 #6
Thank Sam, I will do that...

MajorTom

"Sam Santiago" <ss*******@n0spam-SoftiTechture.com> wrote in message
news:#x**************@TK2MSFTNGP11.phx.gbl...
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
ss*******@n0spam-SoftiTechture.com
http://www.SoftiTechture.com
_______________________________
"MajorTom" <m.********@NOverizon.net.do> wrote in message
news:OV****************@tk2msftngp13.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" <al****@gmail.com> wrote in message
news:#x**************@TK2MSFTNGP10.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.********@NOverizon.net.do> wrote in message
news:eH**************@tk2msftngp13.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" <ss*******@n0spam-SoftiTechture.com> wrote in message
> news:uB**************@TK2MSFTNGP10.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
> > ss*******@n0spam-SoftiTechture.com
> > http://www.SoftiTechture.com
> > _______________________________
> > "MajorTom" <m.********@NOverizon.net.do> wrote in message
> > news:em**************@TK2MSFTNGP15.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
> > >
> > >
> >
> >
>
>



Nov 16 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
by: Charlie | last post by:
Hi: My host will not allow me use a trusted connection or make registry setting, so I'm stuck trying find a way to hide connection string which will be stored in web.config file. If I encrypt...
4
by: Paul Wilkinson | last post by:
Sorry if this is a multiple post, but Google crashed when I posted. I'll be briefer this time. I've seen plenty of posts on this topic, but I'm still searching for a solution. I can't create...
5
by: Lars-Erik Aabech | last post by:
Hi! Guess it's my day again.. Tried to deploy a test release of a new asp.net web today, and got a terrible error. The web is running swell on three development computers, but when it's copied...
26
by: Rajeev Tipnis | last post by:
http://support.microsoft.com/default.aspx?scid=kb;en- us;819450 Questions: 1) Is this patch (fix) applicable to the .NET 1.1 Framework as well? That is, if we have Framework 1.1 (On...
0
by: Apu Nahasapeemapetilon | last post by:
Why do I get the following two error messages, intermittently, when I issue a "SendRequestResponse(methodName, requestEnvelope);" command on a class derived from...
0
by: Buddy Home | last post by:
Hello, I'm trying to upload a file programatically and occasionally I get the following error message. Unable to write data to the transport connection: An established connection was aborted...
7
by: Bill Nguyen | last post by:
I have this connection string using ODBC DSN Dim FactorJaco As String = "dsn=jaco;catalog=factor;uid=user;pwd=passord" This requires an ODBC DSN (jaco) at every client PC. I need to use DSN-less...
3
by: danielmcinerney | last post by:
i am trying to set up internet connection sharing between a vista machine (host) and an XP machine (client). i have followed guidelines from various pages on the internet but i still cannot get it...
0
by: raids51 | last post by:
I have a program that sends some data on a networkstream through a tcp connection. Dim networkstream As NetworkStream = Client.GetStream networkstream.Write(message, 0, message.Length)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.