implicit connection - WeOnlyDo Discussion board

implicit connection (General questions)

by cirus, Wednesday, March 17, 2010, 16:26 (5364 days ago)

I have been using your implicit smtp control. I have a question I cannot seem to figure out.

I am connecting to my smtp server, but everything is over ssl. How can I get the data recieved into readable text? I am performing a send raw command and I cannot read what is returned.

Any help will be appreciated

Re: implicit connection

by woddrazen, Wednesday, March 17, 2010, 16:46 (5364 days ago) @ cirus

Hi Cirus,


When SSL is used communication with server is encrypted. That's point of using SSL.

Can you maybe explain how exactly you are sending commands and which data you want to receive?

If some error is received you can receive it inside wodSMTP Done and Disconnected Event.


Regards,
Drazen

Re: implicit connection

by cirus, Wednesday, March 17, 2010, 16:46 (5364 days ago) @ woddrazen

I have been using your implicit smtp control. I have a question I cannot seem to figure out.

I am connecting to my smtp server, but everything is over ssl. How can I get the data recieved into readable text? I am performing a send raw command and I cannot read what is returned.

Any help will be appreciated

I mean the .statetext is only the state. I need to see what's inside of the data. If I perform a .reset then I want to be able to see the data text that is returned. On my server, performing a reset command gives me statistics of my mail server, which I need. How can I accomlish this?

Re: implicit connection

by cirus, Wednesday, March 17, 2010, 16:50 (5364 days ago) @ cirus

Hi Cirus,


When SSL is used communication with server is encrypted. That's point of using SSL.

Can you maybe explain how exactly you are sending commands and which data you want to receive?

If some error is received you can receive it inside wodSMTP Done and Disconnected Event.


Regards,
Drazen

Yes, I know it's encrypted. I want it to be encrypted. But it must be decrypted by the wod control so that you can know what steps to perform. I want to be able to I guess, read the actual smtp replies and not just a state, because I need to know the text that is replied when I send a reset command, not a state.

Re: implicit connection

by woddrazen, Wednesday, March 17, 2010, 17:23 (5364 days ago) @ cirus

Cirus,


Can you please try to check resonse inside wodSMTP Transcript Property after you send Reset Method.
[code]Debug.Print wodSmtp1.Transcript[/code]
More help for Transcript Property you can find here:
http://www.weonlydo.com/Smtp/Help/WODSMTPLib~wodSmtp~Transcript.html

Let us know how it goes.


Drazen

Re: implicit connection

by cirus, Wednesday, March 17, 2010, 17:32 (5364 days ago) @ woddrazen

Cirus,


Can you please try to check resonse inside wodSMTP Transcript Property after you send Reset Method.
[code]Debug.Print wodSmtp1.Transcript[/code]
More help for Transcript Property you can find here:
http://www.weonlydo.com/Smtp/Help/WODSMTPLib~wodSmtp~Transcript.html

Let us know how it goes.


Drazen

awesome, thanks.