473,404 Members | 2,114 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,404 software developers and data experts.

CDO + Cookies

I found that a number of my sites that send email using CDO failed
withing the past 30 days. Consider the following. I know its not the
best coding practice to open and close the connection so many times but
Im curious why this would all of a sudden become an issue.

1. Have a few large sites essentially all variables such as SMTP server
are set using cookies so I can deploy multiple sites quickly.

2. Within the site email appears to work correctly across all pages
with 1 exception.

3. The exception is below, Im wondering if it has to do with cookies
having to be retrieved multiple times from the client machine

--Call db run search loop data build array
--Based on data in array call another search alter and finalize array
--Do while <= uBound(myArray)
--Call Email sub (from,to,sub,body) ' Sub contains a request
cookies for SMTP server.
--Loop

Doesnt matter if its 2 or 50 emails always fails when using
request.cookies to set the SMTP in the sub. Works fine if I hard code
the IP. This same sub is used multiple times throughout the website and
works fine with cookies.

Just curious why it needs might need to be hard coded in the loop. Has
been running for about 6 months fine and have recently started noticing
failures.

Thanks,
Earl

Jun 12 '06 #1
4 1629

surf_doggie wrote:
I found that a number of my sites that send email using CDO failed
withing the past 30 days. Consider the following. I know its not the
best coding practice to open and close the connection so many times but
Im curious why this would all of a sudden become an issue.

1. Have a few large sites essentially all variables such as SMTP server
are set using cookies so I can deploy multiple sites quickly.

2. Within the site email appears to work correctly across all pages
with 1 exception.

3. The exception is below, Im wondering if it has to do with cookies
having to be retrieved multiple times from the client machine

--Call db run search loop data build array
--Based on data in array call another search alter and finalize array
--Do while <= uBound(myArray)
--Call Email sub (from,to,sub,body) ' Sub contains a request
cookies for SMTP server.
--Loop

Doesnt matter if its 2 or 50 emails always fails when using
request.cookies to set the SMTP in the sub. Works fine if I hard code
the IP. This same sub is used multiple times throughout the website and
works fine with cookies.
I'm confused - it either works with cookies or it doesn't.

Just curious why it needs might need to be hard coded in the loop. Has
been running for about 6 months fine and have recently started noticing
failures.


You should never rely on storing info like this in cookies. People
delete them, and your application depends on them. Application level
information should be stored on the server - application
variables/db/xml/etc...

Have you checked to see if the cookie exists?

--
Mike Brind

Jun 13 '06 #2
> I'm confused - it either works with cookies or it doesn't.

Just curious why it needs might need to be hard coded in the loop. Has
been running for about 6 months fine and have recently started noticing
failures.


You should never rely on storing info like this in cookies. People
delete them, and your application depends on them. Application level
information should be stored on the server - application
variables/db/xml/etc...

Have you checked to see if the cookie exists?

--
Mike Brind


Hey Mike Ive seen your posts I respect your opinion. Please let me
clarify.

1. I agree either it works or it doesnt. Thats why I dont understand.
2. I only store the cookies on the client machine for the session when
they close their browser the cookies are gone. These are not
application level cookies just plain jane.

consider this I have 100 webpages.
<!-- some include file with cookies that expire when you close browser
(mailhost included)>
-->You have successfully logged in mailhost cookie is set.

On about 50 of those pages if you want to send and individual
email it calls
--call SendMail(efrom,eto,subject,body)

Works great for an email or 2.

This may be where the rub is at Mike.

Now every night I had scheduled a bat file to run and send multiple
emails from a db. Failed mail couldnt be sent. At first I thought it
was the permissions on the bat file or the permissions the AT Scheduler
from windows was using but when I went to the url from my browser it
died with smtp errors.

I did trouble shooting for a month. When I hard coded the url it
worked... O YES the connection for the cookies was in the loop file
because I did a response.write to make sure the smtp server was correct
in the loop file before I hard coded the IP of the SMTP server.

Now Im just curious I have the solution, I agree either it works or it
doesnt but why does it work sometimes? Is it because the loop cant grab
the request.cookies off the client machine fast enough to keep up with
what the CDO needs for the SMTP server config?

These sites had been working up until about 1 to 3 months ago for a
year and started cascade failing on the CDO. Once I figured to hard
code the IP instead of cookies alls well.

Thanks for your time.
Earl

Jun 17 '06 #3
Sorry forgot to point out all of the emails are based off of the same
function
surf_doggie wrote:
I'm confused - it either works with cookies or it doesn't.

Just curious why it needs might need to be hard coded in the loop. Has
been running for about 6 months fine and have recently started noticing
failures.


You should never rely on storing info like this in cookies. People
delete them, and your application depends on them. Application level
information should be stored on the server - application
variables/db/xml/etc...

Have you checked to see if the cookie exists?

--
Mike Brind


Hey Mike Ive seen your posts I respect your opinion. Please let me
clarify.

1. I agree either it works or it doesnt. Thats why I dont understand.
2. I only store the cookies on the client machine for the session when
they close their browser the cookies are gone. These are not
application level cookies just plain jane.

consider this I have 100 webpages.
<!-- some include file with cookies that expire when you close browser
(mailhost included)>
-->You have successfully logged in mailhost cookie is set.

On about 50 of those pages if you want to send and individual
email it calls
--call SendMail(efrom,eto,subject,body)

Works great for an email or 2.

This may be where the rub is at Mike.

Now every night I had scheduled a bat file to run and send multiple
emails from a db. Failed mail couldnt be sent. At first I thought it
was the permissions on the bat file or the permissions the AT Scheduler
from windows was using but when I went to the url from my browser it
died with smtp errors.

I did trouble shooting for a month. When I hard coded the url it
worked... O YES the connection for the cookies was in the loop file
because I did a response.write to make sure the smtp server was correct
in the loop file before I hard coded the IP of the SMTP server.

Now Im just curious I have the solution, I agree either it works or it
doesnt but why does it work sometimes? Is it because the loop cant grab
the request.cookies off the client machine fast enough to keep up with
what the CDO needs for the SMTP server config?

These sites had been working up until about 1 to 3 months ago for a
year and started cascade failing on the CDO. Once I figured to hard
code the IP instead of cookies alls well.

Thanks for your time.
Earl


Jun 17 '06 #4
Sorry would also like to point out its on multiple web servers in
multiple networks.

Mike if you want to see a demo Ill set up a webex

Earl
surf_doggie wrote:
I'm confused - it either works with cookies or it doesn't.

Just curious why it needs might need to be hard coded in the loop. Has
been running for about 6 months fine and have recently started noticing
failures.


You should never rely on storing info like this in cookies. People
delete them, and your application depends on them. Application level
information should be stored on the server - application
variables/db/xml/etc...

Have you checked to see if the cookie exists?

--
Mike Brind


Hey Mike Ive seen your posts I respect your opinion. Please let me
clarify.

1. I agree either it works or it doesnt. Thats why I dont understand.
2. I only store the cookies on the client machine for the session when
they close their browser the cookies are gone. These are not
application level cookies just plain jane.

consider this I have 100 webpages.
<!-- some include file with cookies that expire when you close browser
(mailhost included)>
-->You have successfully logged in mailhost cookie is set.

On about 50 of those pages if you want to send and individual
email it calls
--call SendMail(efrom,eto,subject,body)

Works great for an email or 2.

This may be where the rub is at Mike.

Now every night I had scheduled a bat file to run and send multiple
emails from a db. Failed mail couldnt be sent. At first I thought it
was the permissions on the bat file or the permissions the AT Scheduler
from windows was using but when I went to the url from my browser it
died with smtp errors.

I did trouble shooting for a month. When I hard coded the url it
worked... O YES the connection for the cookies was in the loop file
because I did a response.write to make sure the smtp server was correct
in the loop file before I hard coded the IP of the SMTP server.

Now Im just curious I have the solution, I agree either it works or it
doesnt but why does it work sometimes? Is it because the loop cant grab
the request.cookies off the client machine fast enough to keep up with
what the CDO needs for the SMTP server config?

These sites had been working up until about 1 to 3 months ago for a
year and started cascade failing on the CDO. Once I figured to hard
code the IP instead of cookies alls well.

Thanks for your time.
Earl


Jun 17 '06 #5

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

Similar topics

4
by: Brian Burgess | last post by:
Hi all, Anyone know of any special issues with storing cookies with ASP? I'm trying this with two browsers: One is IE 6.0 with cookies set to 'prompt'. This has been working properly as any...
20
by: Brian Burgess | last post by:
Hi all, Anyone know if this is possible? If so, on which page would the cookie be? .. On the page calling a function defined in the include file? thanks in advance.. -BB
9
by: | last post by:
Is it possible for a user to enable permanent cookies but disable session cookies.....this seems like a contradition yet this is what I appear to be reading in online articles?
1
by: John Taylor-Johnston | last post by:
I'm a University academic looking for a proper definition of JavaScript Cookies. http://www.CollegeSherbrooke.qc.ca/languesmodernes/604-HAE_Grammar_Practice/ I'm trying to decipher what...
6
by: Mark | last post by:
Hi... I've come across some weird bug with Response.Cookies. Or maybe it will be called "by design" but for the life of me I can't figure out what purpose it would serve. If you're setting a...
8
by: CDARS | last post by:
Hi all, I have a confusing question on ASP.NET cookies usage: 1> Response.Cookies("test").value = Now 2> Response.Write(Request.Cookies("test").value) 3> 4> Response.write("<hr>") 5>...
6
by: Stephane | last post by:
Hi, I have a login page where if the user wants his access codes to be saved are set into a cookie. In the logout page, I want to delete those cookies. I tried this and this is not working at...
1
by: Alex Nitulescu | last post by:
I have the following very simple colde (while learning about cookies and session state): Private Sub cmdAddCookie_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
0
by: Claudio | last post by:
I have a demo app where cookies does not work. The first page create a cookies. The second read the contet. If I browse the pages via IE6.0 the pages does not work. If I browse the pages via...
0
by: rn5a | last post by:
This is how I am creating & then reading cookies: <script runat="server"> Sub Page_Load(ByVal obj As Object, ByVal ea As EventArgs) 'create cookies Response.Cookies("UserName").Value = "Ron"...
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: 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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...

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.