wodPOP3 Generic error for access violation - WeOnlyDo Discussion board

wodPOP3 Generic error for access violation (General questions)

by Edwin, Tuesday, June 28, 2011, 17:16 (4708 days ago)

Dear Sir:

I bought wodPOP3 component, I have some question and need help.
I want to get mail from gamil.
1. When I set port to port 995
pop3.port = 995 , then I call response.write pop3.port. It's still port 110.
2. When I call pop3.Connect, just return 'Generic error for access violation '.

Can you help me?
Tks a lot.

Re: wodPOP3 Generic error for access violation

by woddrazen, Tuesday, June 28, 2011, 17:22 (4708 days ago) @ Edwin

Hi Edwin,


Most probably this happens because you add Port Property inside your code before Security property. In that case port is overwritten with default security port.

You need to add Port Properly after Security Property.

Here is example how you can connect to Gmail server with wodPOP3 and read emails:
http://www.weonlydo.com/code.asp?did=Reading-email-messages-from-Gmail-using-POP3-protocol

Let us know how it goes.


Regards,
Drazen

Re: wodPOP3 Generic error for access violation

by Edwin, Tuesday, June 28, 2011, 17:49 (4708 days ago) @ woddrazen

It's works.
Tks a lot.