|
Home > Archive > SQL Anywhere database replication > April 2005 > FTP
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Priyanka 2005-04-04, 8:03 pm |
| I have a general idea about FTP, but how FTP is used in FTP
message Type, for SQL Remote I cannot understand.
What are the requirement for FTP Message System.
DO I have to install FTP Server on the Database which has to
be synchronized?
Regards,
| |
| Reg Domaratzki \(iAnywhere Solutions\) 2005-04-04, 8:03 pm |
| You can use any FTP server, as long as you have permission to create, read,
rename and delete files on the server. You'll also need to create a few
directories on the server to store incoming messages. Here's some sample
code that uses the SET REMOTE ftp option to tell SQL Remote to use an ftp
server called "testiis5.sybase.com" (you can't see this machine, it's in my
office). You login to the server using the anonymous user, with the given
password, and the change directories into the "msgs" folder once logged in.
set remote ftp option public.host = 'testiis5.sybase.com';
set remote ftp option public."user" = 'anonymous';
set remote ftp option public.password = 'regd@whatever.com';
set remote ftp option public.root_directory = 'msgs';
On testiis5, I have IIS5 installed. The default directory to be placed in
when anybody logs in is "c:\inetpub\ftproot". In this directory, I created
a directory called "msgs" and then two other directories inside the "msgs"
folder called "cons" and "rem1" which are the addresses I used to define the
location of incoming messages.
On the consolidated :
CREATE REMOTE MESSAGE TYPE ftp ADDRESS 'cons';
GRANT REMOTE TO rem1 TYPE ftp ADDRESS 'rem1';
On the remote :
CREATE REMOTE MESSAGE TYPE ftp ADDRESS 'rem1';
GRANT CONSOLIDATE TO cons TYPE ftp ADDRESS 'cons';
--
Reg Domaratzki, Sybase iAnywhere Solutions
Sybase Certified Professional - Sybase ASA Developer Version 8
Please reply only to the newsgroup
iAnywhere Developer Community : http://www.ianywhere.com/developer
iAnywhere Documentation : http://www.ianywhere.com/developer/product_manuals
ASA Patches and EBFs : http://downloads.sybase.com/swx/sdmain.stm
-> Choose SQL Anywhere Studio
-> Set "Platform Preview" and "Time Frame" to ALL
<Priyanka> wrote in message news:42515763.40ef.1681692777@sybase.com...
> I have a general idea about FTP, but how FTP is used in FTP
> message Type, for SQL Remote I cannot understand.
>
> What are the requirement for FTP Message System.
>
> DO I have to install FTP Server on the Database which has to
> be synchronized?
>
> Regards,
| |
| priyanka 2005-04-05, 8:03 pm |
| Hi,
I have used the FTP Message type as you have described, but
it is not working. Here I am sending you the SQL Remote Log
for that on consolidated database.
There I have Given my username and Password as I have an
access to that server, but not working saying enable to
connect.
And DB remote statment for FTP is same or different, can you
give me example?
Log from Consolidate Database:
I. 04/05 17:02:58. SQL Remote Message Agent Version
8.0.2.3601
I. 04/05 17:02:58.
I. 04/05 17:02:58. Copyright =a9 1989-2002 Sybase, Inc.
Portions Copyright =a9 2002, iAnywhere
Solutions, Inc.
I. 04/05 17:02:58. All rights reserved. All unpublished
rights reserved.
I. 04/05 17:02:58.
I. 04/05 17:02:58. This software contains confidential and
trade secret information of
I. 04/05 17:02:58. iAnywhere Solutions, Inc.
Use, duplication or disclosure of the
software and documentation
I. 04/05 17:02:58. by the U.S. Government is subject to
restrictions set forth in a license
I. 04/05 17:02:58. agreement between the Government and
iAnywhere Solutions, Inc. or
I. 04/05 17:02:58. other written agreement specifying the
Government's rights to use the
I. 04/05 17:02:58. software and any applicable FAR
provisions, for example, FAR 52.227-19.
I. 04/05 17:02:58.
I. 04/05 17:02:58. Sybase, Inc., One Sybase Drive, Dublin,
CA 94568, USA
I. 04/05 17:02:58.
I. 04/05 17:02:58. Unable to open connection!.
I. 04/05 17:02:58. Unable to open connection!.
I. 04/05 17:02:58. Unable to open connection!.
I. 04/05 17:02:58. Unable to open connection!.
I. 04/05 17:02:58. Unable to open connection!.
E. 04/05 17:02:58. Unable to initialize FTP link
I. 04/05 17:02:59. Execution completed
Regards,
Priyanka
> You can use any FTP server, as long as you have permission
> to create, read, rename and delete files on the server.
> You'll also need to create a few directories on the server
> to store incoming messages. Here's some sample code that
> uses the SET REMOTE ftp option to tell SQL Remote to use
> an ftp server called "testiis5.sybase.com" (you can't see
> this machine, it's in my office). You login to the server
> using the anonymous user, with the given password, and the
> change directories into the "msgs" folder once logged in.
>
> set remote ftp option public.host =3d
'testiis5.sybase. com';
> set remote ftp option public."user" =3d 'anonymous';
> set remote ftp option public.password =3d
> 'regd@whatever.com'; set remote ftp option
> public.root_directory =3d 'msgs';
>
> On testiis5, I have IIS5 installed. The default directory
> to be placed in when anybody logs in is
> "c:\inetpub\ftproot". In this directory, I created a
> directory called "msgs" and then two other directories
> inside the "msgs" folder called "cons" and "rem1" which
> are the addresses I used to define the location of
> incoming messages.
>
> On the consolidated :
>
> CREATE REMOTE MESSAGE TYPE ftp ADDRESS 'cons';
> GRANT REMOTE TO rem1 TYPE ftp ADDRESS 'rem1';
>
> On the remote :
>
> CREATE REMOTE MESSAGE TYPE ftp ADDRESS 'rem1';
> GRANT CONSOLIDATE TO cons TYPE ftp ADDRESS 'cons';
>
> --
> Reg Domaratzki, Sybase iAnywhere Solutions
> Sybase Certified Professional - Sybase ASA Developer
> Version 8 Please reply only to the newsgroup
>
> iAnywhere Developer Community :
> http://www.ianywhere.com/developer iAnywhere Documentation
> : http://www.ianywhere.com/developer/product_manuals ASA
> Patches and EBFs :
> http://downloads.sybase.com/swx/sdmain.stm
> -> Choose SQL Anywhere Studio
> -> Set "Platform Preview" and "Time Frame" to ALL
>
> <Priyanka> wrote in message
> message Type, for SQL Remote I cannot understand. >
>
>
| |
| Reg Domaratzki \(iAnywhere Solutions\) 2005-04-05, 8:03 pm |
| Please execute the following command against the consolidated database and
re-run dbremote. Some FTP specific debug information will be printed to the
dbremote log, which you can post to the forum. Note that the userid and
password will be printed in the log, so you may want to change that
information in the log before posting it here.
set remote ftp option public.debug = 'on';
--
Reg Domaratzki, Sybase iAnywhere Solutions
Sybase Certified Professional - Sybase ASA Developer Version 8
Please reply only to the newsgroup
iAnywhere Developer Community : http://www.ianywhere.com/developer
iAnywhere Documentation : http://www.ianywhere.com/developer/product_manuals
ASA Patches and EBFs : http://downloads.sybase.com/swx/sdmain.stm
-> Choose SQL Anywhere Studio
-> Set "Platform Preview" and "Time Frame" to ALL
<priyanka> wrote in message news:4252aa22.5705.1681692777@sybase.com...
Hi,
I have used the FTP Message type as you have described, but
it is not working. Here I am sending you the SQL Remote Log
for that on consolidated database.
There I have Given my username and Password as I have an
access to that server, but not working saying enable to
connect.
And DB remote statment for FTP is same or different, can you
give me example?
Log from Consolidate Database:
I. 04/05 17:02:58. SQL Remote Message Agent Version
8.0.2.3601
I. 04/05 17:02:58.
I. 04/05 17:02:58. Copyright © 1989-2002 Sybase, Inc.
Portions Copyright © 2002, iAnywhere
Solutions, Inc.
I. 04/05 17:02:58. All rights reserved. All unpublished
rights reserved.
I. 04/05 17:02:58.
I. 04/05 17:02:58. This software contains confidential and
trade secret information of
I. 04/05 17:02:58. iAnywhere Solutions, Inc.
Use, duplication or disclosure of the
software and documentation
I. 04/05 17:02:58. by the U.S. Government is subject to
restrictions set forth in a license
I. 04/05 17:02:58. agreement between the Government and
iAnywhere Solutions, Inc. or
I. 04/05 17:02:58. other written agreement specifying the
Government's rights to use the
I. 04/05 17:02:58. software and any applicable FAR
provisions, for example, FAR 52.227-19.
I. 04/05 17:02:58.
I. 04/05 17:02:58. Sybase, Inc., One Sybase Drive, Dublin,
CA 94568, USA
I. 04/05 17:02:58.
I. 04/05 17:02:58. Unable to open connection!.
I. 04/05 17:02:58. Unable to open connection!.
I. 04/05 17:02:58. Unable to open connection!.
I. 04/05 17:02:58. Unable to open connection!.
I. 04/05 17:02:58. Unable to open connection!.
E. 04/05 17:02:58. Unable to initialize FTP link
I. 04/05 17:02:59. Execution completed
Regards,
Priyanka
> You can use any FTP server, as long as you have permission
> to create, read, rename and delete files on the server.
> You'll also need to create a few directories on the server
> to store incoming messages. Here's some sample code that
> uses the SET REMOTE ftp option to tell SQL Remote to use
> an ftp server called "testiis5.sybase.com" (you can't see
> this machine, it's in my office). You login to the server
> using the anonymous user, with the given password, and the
> change directories into the "msgs" folder once logged in.
>
> set remote ftp option public.host =
'testiis5.sybase. com';
> set remote ftp option public."user" = 'anonymous';
> set remote ftp option public.password =
> 'regd@whatever.com'; set remote ftp option
> public.root_directory = 'msgs';
>
> On testiis5, I have IIS5 installed. The default directory
> to be placed in when anybody logs in is
> "c:\inetpub\ftproot". In this directory, I created a
> directory called "msgs" and then two other directories
> inside the "msgs" folder called "cons" and "rem1" which
> are the addresses I used to define the location of
> incoming messages.
>
> On the consolidated :
>
> CREATE REMOTE MESSAGE TYPE ftp ADDRESS 'cons';
> GRANT REMOTE TO rem1 TYPE ftp ADDRESS 'rem1';
>
> On the remote :
>
> CREATE REMOTE MESSAGE TYPE ftp ADDRESS 'rem1';
> GRANT CONSOLIDATE TO cons TYPE ftp ADDRESS 'cons';
>
> --
> Reg Domaratzki, Sybase iAnywhere Solutions
> Sybase Certified Professional - Sybase ASA Developer
> Version 8 Please reply only to the newsgroup
>
> iAnywhere Developer Community :
> http://www.ianywhere.com/developer iAnywhere Documentation
> : http://www.ianywhere.com/developer/product_manuals ASA
> Patches and EBFs :
> http://downloads.sybase.com/swx/sdmain.stm
> -> Choose SQL Anywhere Studio
> -> Set "Platform Preview" and "Time Frame" to ALL
>
> <Priyanka> wrote in message
> message Type, for SQL Remote I cannot understand. >
>
>
| |
| priyanka 2005-04-06, 8:02 pm |
| SQL Remote Log --
is here I tried to find it out but not working,About Firwell
thing required on server you can tell me;
One more thing if I have set some remote option,I can
delete, or modify it?
I. 04/06 15:47:19. SQL Remote Message Link Version
8.0.2.3601
I. 04/06 15:47:19. socket
I. 04/06 15:47:19. connect ftp
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 220 Microsoft FTP Service
I. 04/06 15:47:19. USER Bart_Huysmans
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 331 Password required for Bart_Huysmans.
I. 04/06 15:47:19. User accepted with a password needed.
I. 04/06 15:47:19. PASS
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 230 User
I. 04/06 15:47:19. Password Accepted.
I. 04/06 15:47:19. PWD
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 257 "/" is current directory.
I. 04/06 15:47:19. TYPE A N
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 200 Type set to A.
I. 04/06 15:47:19. Type set.
I. 04/06 15:47:19. PASV
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 227 Entering Passive Mode
(10,40,40,16,9,136).
I. 04/06 15:47:19. PASV command accepted.
I. 04/06 15:47:19. NLST msgs/cons/
I. 04/06 15:47:19. socket
I. 04/06 15:47:19. connect
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 125 Data connection already open;
Transfer starting.
I. 04/06 15:47:19. 0 byte read...socket is closed
I. 04/06 15:47:19. closesocket
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:20. 226 Transfer complete.
I. 04/06 15:47:20. closesocket
I. 04/06 15:47:20.
I. 04/06 15:47:20. Scanning logs starting at offset
0655056372
I. 04/06 15:47:20. Processing transaction logs from
directory "P:\Priyanka Kohli\trs\"
I. 04/06 15:47:20. Transaction log "P:\Priyanka
Kohli\trs\050406AA.LOG" starts at offset 0655045397
I. 04/06 15:47:20. Processing transactions from transaction
log "P:\Priyanka Kohli\trs\050406AA.LOG"
I. 04/06 15:47:20. Transaction log ends at offset 0655060321
I. 04/06 15:47:20. Processing transactions from active
transaction log
I. 04/06 15:47:20. Sending message to "rem2"
(0-0000000000-0655060295-0)
I. 04/06 15:47:20. STOR "msgs/rem1/.cons"
I. 04/06 15:47:20. TYPE I
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 200 Type set to I.
I. 04/06 15:47:20. Type set.
I. 04/06 15:47:20. PASV
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 227 Entering Passive Mode
(10,40,40,16,9,137).
I. 04/06 15:47:20. PASV command accepted.
I. 04/06 15:47:20. STOR msgs/rem1/.cons
I. 04/06 15:47:20. socket
I. 04/06 15:47:20. connect
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 550 msgs/rem1/.cons: Access is denied.
I. 04/06 15:47:20. Data Transfer Failed.
I. 04/06 15:47:20. closesocket
I. 04/06 15:47:20. STOR Failed!
I. 04/06 15:47:20. DELE msgs/rem1/.cons
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/06 15:47:20. Server denied permission to DELE file.
I. 04/06 15:47:20. QUIT
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 221
I. 04/06 15:47:20. Socket Closed in FTPClose.
I. 04/06 15:47:20. closesocket
I. 04/06 15:47:20. socket
I. 04/06 15:47:20. connect ftp
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 220 Microsoft FTP Service
I. 04/06 15:47:20. USER Bart_Huysmans
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 331 Password required for Bart_Huysmans.
I. 04/06 15:47:20. User accepted with a password needed.
I. 04/06 15:47:20. PASS
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 230 User Bart_Huysmans logged in.
I. 04/06 15:47:20. Password Accepted.
I. 04/06 15:47:20. STOR "msgs/rem1/.cons"
I. 04/06 15:47:20. TYPE I
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 200 Type set to I.
I. 04/06 15:47:20. Type set.
I. 04/06 15:47:20. PASV
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 227 Entering Passive Mode
(10,40,40,16,9,138).
I. 04/06 15:47:20. PASV command accepted.
I. 04/06 15:47:20. STOR msgs/rem1/.cons
I. 04/06 15:47:20. socket
I. 04/06 15:47:20. connect
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 550 msgs/rem1/.cons: Access is denied.
I. 04/06 15:47:20. Data Transfer Failed.
I. 04/06 15:47:20. closesocket
I. 04/06 15:47:20. STOR Failed!
I. 04/06 15:47:20. DELE msgs/rem1/.cons
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/06 15:47:20. Server denied permission to DELE file.
I. 04/06 15:47:20. QUIT
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 221
I. 04/06 15:47:20. Socket Closed in FTPClose.
I. 04/06 15:47:20. closesocket
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect ftp
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 220 Microsoft FTP Service
I. 04/06 15:47:21. USER Bart_Huysmans
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 331 Password required for Bart_Huysmans.
I. 04/06 15:47:21. User accepted with a password needed.
I. 04/06 15:47:21. PASS
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
I. 04/06 15:47:21. Password Accepted.
I. 04/06 15:47:21. STOR "msgs/rem1/.cons"
I. 04/06 15:47:21. TYPE I
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 200 Type set to I.
I. 04/06 15:47:21. Type set.
I. 04/06 15:47:21. PASV
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 227 Entering Passive Mode
(10,40,40,16,9,139).
I. 04/06 15:47:21. PASV command accepted.
I. 04/06 15:47:21. STOR msgs/rem1/.cons
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: Access is denied.
I. 04/06 15:47:21. Data Transfer Failed.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. STOR Failed!
I. 04/06 15:47:21. DELE msgs/rem1/.cons
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/06 15:47:21. Server denied permission to DELE file.
I. 04/06 15:47:21. QUIT
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 221
I. 04/06 15:47:21. Socket Closed in FTPClose.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect ftp
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 220 Microsoft FTP Service
I. 04/06 15:47:21. USER Bart_Huysmans
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 331 Password required for Bart_Huysmans.
I. 04/06 15:47:21. User accepted with a password needed.
I. 04/06 15:47:21. PASS
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
I. 04/06 15:47:21. Password Accepted.
I. 04/06 15:47:21. STOR "msgs/rem1/.cons"
I. 04/06 15:47:21. TYPE I
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 200 Type set to I.
I. 04/06 15:47:21. Type set.
I. 04/06 15:47:21. PASV
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 227 Entering Passive Mode
(10,40,40,16,9,140).
I. 04/06 15:47:21. PASV command accepted.
I. 04/06 15:47:21. STOR msgs/rem1/.cons
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: Access is denied.
I. 04/06 15:47:21. Data Transfer Failed.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. STOR Failed!
I. 04/06 15:47:21. DELE msgs/rem1/.cons
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/06 15:47:21. Server denied permission to DELE file.
I. 04/06 15:47:21. QUIT
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 221
I. 04/06 15:47:21. Socket Closed in FTPClose.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect ftp
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 220 Microsoft FTP Service
I. 04/06 15:47:21. USER Bart_Huysmans
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 331 Password required for Bart_Huysmans
I. 04/06 15:47:21. User accepted with a password needed.
I. 04/06 15:47:21. PASS
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
I. 04/06 15:47:21. Password Accepted.
I. 04/06 15:47:21. STOR "msgs/rem1/.cons"
I. 04/06 15:47:21. TYPE I
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 200 Type set to I.
I. 04/06 15:47:21. Type set.
I. 04/06 15:47:21. PASV
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 227 Entering Passive Mode
(10,40,40,16,9,141).
I. 04/06 15:47:21. PASV command accepted.
I. 04/06 15:47:21. STOR msgs/rem1/.cons
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: Access is denied.
I. 04/06 15:47:21. Data Transfer Failed.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. STOR Failed!
I. 04/06 15:47:21. DELE msgs/rem1/.cons
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/06 15:47:21. Server denied permission to DELE file.
I. 04/06 15:47:21. QUIT
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 221
I. 04/06 15:47:21. Socket Closed in FTPClose.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect ftp
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 220 Microsoft FTP Service
I. 04/06 15:47:21. USER Bart_Huysmans
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 331 Password required for Bart_Huysmans
I. 04/06 15:47:21. User accepted with a password needed.
I. 04/06 15:47:21. PASS
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
I. 04/06 15:47:21. Password Accepted.
I. 04/06 15:47:21. Resend requests are being queued
I. 04/06 15:47:21. QUIT
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 221
I. 04/06 15:47:21. Socket Closed in FTPClose.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. Execution completed
regards,
Priyanka
> Please execute the following command against the
> consolidated database and re-run dbremote. Some FTP
> specific debug information will be printed to the dbremote
> log, which you can post to the forum. Note that the
> userid and password will be printed in the log, so you may
> want to change that information in the log before posting
> it here.
>
> set remote ftp option public.debug =3d 'on';
>
> --
> Reg Domaratzki, Sybase iAnywhere Solutions
> Sybase Certified Professional - Sybase ASA Developer
> Version 8 Please reply only to the newsgroup
>
> iAnywhere Developer Community :
> http://www.ianywhere.com/developer iAnywhere Documentation
> : http://www.ianywhere.com/developer/product_manuals ASA
> Patches and EBFs :
> http://downloads.sybase.com/swx/sdmain.stm
> -> Choose SQL Anywhere Studio
> -> Set "Platform Preview" and "Time Frame" to ALL
>
> <priyanka> wrote in message
> news:4252aa22.5705.1681692777@sybase.com... Hi,
>
> I have used the FTP Message type as you have described,
> but it is not working. Here I am sending you the SQL
> Remote Log for that on consolidated database.
>
> There I have Given my username and Password as I have an
> access to that server, but not working saying enable to
> connect.
>
> And DB remote statment for FTP is same or different, can
> you give me example?
>
>
> Log from Consolidate Database:
>
> I. 04/05 17:02:58. SQL Remote Message Agent Version
> 8.0.2.3601
> I. 04/05 17:02:58.
> I. 04/05 17:02:58. Copyright =a9 1989-2002 Sybase, Inc.
> Portions Copyright =a9 2002, iAnywhere
> Solutions, Inc.
> I. 04/05 17:02:58. All rights reserved. All unpublished
> rights reserved.
> I. 04/05 17:02:58.
> I. 04/05 17:02:58. This software contains confidential and
> trade secret information of
> I. 04/05 17:02:58. iAnywhere Solutions, Inc.
> Use, duplication or disclosure of the
> software and documentation
> I. 04/05 17:02:58. by the U.S. Government is subject to
> restrictions set forth in a license
> I. 04/05 17:02:58. agreement between the Government and
> iAnywhere Solutions, Inc. or
> I. 04/05 17:02:58. other written agreement specifying the
> Government's rights to use the
> I. 04/05 17:02:58. software and any applicable FAR
> provisions, for example, FAR 52.227-19.
> I. 04/05 17:02:58.
> I. 04/05 17:02:58. Sybase, Inc., One Sybase Drive, Dublin,
> CA 94568, USA
> I. 04/05 17:02:58.
> I. 04/05 17:02:58. Unable to open connection!.
> I. 04/05 17:02:58. Unable to open connection!.
> I. 04/05 17:02:58. Unable to open connection!.
> I. 04/05 17:02:58. Unable to open connection!.
> I. 04/05 17:02:58. Unable to open connection!.
> E. 04/05 17:02:58. Unable to initialize FTP link
> I. 04/05 17:02:59. Execution completed
>
> Regards,
> Priyanka
>
>
> directories into the "msgs" folder once logged in. >
> 'testiis5.sybase.com';
> "Time Frame" to ALL >
>
>
| |
| Reg Domaratzki \(iAnywhere Solutions\) 2005-04-06, 8:02 pm |
| It looks like you either don't have permissions in the directories you've
created, or you haven't placed the msgs directory in the root directory of
the FTP server. When you FTP to the server (just use the DOS ftp command)
and login as Bart_Huysmans, when you type in "pwd" what directory is
returned? Is this the directory where you created the msgs folder?
This problem doesn't look to have anything to do with a firewall to me. You
wouldn't be able to login if it were a firewall problem.
You can re-execute the SET REMOTE ftp OPTION command to change the value.
If you want to delete the value, just specify an empty string as the value :
SET REMOTE ftp OPTION "Public"."debug" = '';
--
Reg Domaratzki, Sybase iAnywhere Solutions
Sybase Certified Professional - Sybase ASA Developer Version 8
Please reply only to the newsgroup
iAnywhere Developer Community : http://www.ianywhere.com/developer
iAnywhere Documentation : http://www.ianywhere.com/developer/product_manuals
ASA Patches and EBFs : http://downloads.sybase.com/swx/sdmain.stm
-> Choose SQL Anywhere Studio
-> Set "Platform Preview" and "Time Frame" to ALL
<priyanka> wrote in message news:4253eb15.68f9.1681692777@sybase.com...
SQL Remote Log --
is here I tried to find it out but not working,About Firwell
thing required on server you can tell me;
One more thing if I have set some remote option,I can
delete, or modify it?
I. 04/06 15:47:19. SQL Remote Message Link Version
8.0.2.3601
I. 04/06 15:47:19. socket
I. 04/06 15:47:19. connect ftp
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 220 Microsoft FTP Service
I. 04/06 15:47:19. USER Bart_Huysmans
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 331 Password required for Bart_Huysmans.
I. 04/06 15:47:19. User accepted with a password needed.
I. 04/06 15:47:19. PASS
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 230 User
I. 04/06 15:47:19. Password Accepted.
I. 04/06 15:47:19. PWD
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 257 "/" is current directory.
I. 04/06 15:47:19. TYPE A N
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 200 Type set to A.
I. 04/06 15:47:19. Type set.
I. 04/06 15:47:19. PASV
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 227 Entering Passive Mode
(10,40,40,16,9,136).
I. 04/06 15:47:19. PASV command accepted.
I. 04/06 15:47:19. NLST msgs/cons/
I. 04/06 15:47:19. socket
I. 04/06 15:47:19. connect
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:19. 125 Data connection already open;
Transfer starting.
I. 04/06 15:47:19. 0 byte read...socket is closed
I. 04/06 15:47:19. closesocket
I. 04/06 15:47:19. Getting server response:
I. 04/06 15:47:20. 226 Transfer complete.
I. 04/06 15:47:20. closesocket
I. 04/06 15:47:20.
I. 04/06 15:47:20. Scanning logs starting at offset
0655056372
I. 04/06 15:47:20. Processing transaction logs from
directory "P:\Priyanka Kohli\trs\"
I. 04/06 15:47:20. Transaction log "P:\Priyanka
Kohli\trs\050406AA.LOG" starts at offset 0655045397
I. 04/06 15:47:20. Processing transactions from transaction
log "P:\Priyanka Kohli\trs\050406AA.LOG"
I. 04/06 15:47:20. Transaction log ends at offset 0655060321
I. 04/06 15:47:20. Processing transactions from active
transaction log
I. 04/06 15:47:20. Sending message to "rem2"
(0-0000000000-0655060295-0)
I. 04/06 15:47:20. STOR "msgs/rem1/.cons"
I. 04/06 15:47:20. TYPE I
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 200 Type set to I.
I. 04/06 15:47:20. Type set.
I. 04/06 15:47:20. PASV
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 227 Entering Passive Mode
(10,40,40,16,9,137).
I. 04/06 15:47:20. PASV command accepted.
I. 04/06 15:47:20. STOR msgs/rem1/.cons
I. 04/06 15:47:20. socket
I. 04/06 15:47:20. connect
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 550 msgs/rem1/.cons: Access is denied.
I. 04/06 15:47:20. Data Transfer Failed.
I. 04/06 15:47:20. closesocket
I. 04/06 15:47:20. STOR Failed!
I. 04/06 15:47:20. DELE msgs/rem1/.cons
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/06 15:47:20. Server denied permission to DELE file.
I. 04/06 15:47:20. QUIT
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 221
I. 04/06 15:47:20. Socket Closed in FTPClose.
I. 04/06 15:47:20. closesocket
I. 04/06 15:47:20. socket
I. 04/06 15:47:20. connect ftp
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 220 Microsoft FTP Service
I. 04/06 15:47:20. USER Bart_Huysmans
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 331 Password required for Bart_Huysmans.
I. 04/06 15:47:20. User accepted with a password needed.
I. 04/06 15:47:20. PASS
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 230 User Bart_Huysmans logged in.
I. 04/06 15:47:20. Password Accepted.
I. 04/06 15:47:20. STOR "msgs/rem1/.cons"
I. 04/06 15:47:20. TYPE I
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 200 Type set to I.
I. 04/06 15:47:20. Type set.
I. 04/06 15:47:20. PASV
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 227 Entering Passive Mode
(10,40,40,16,9,138).
I. 04/06 15:47:20. PASV command accepted.
I. 04/06 15:47:20. STOR msgs/rem1/.cons
I. 04/06 15:47:20. socket
I. 04/06 15:47:20. connect
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 550 msgs/rem1/.cons: Access is denied.
I. 04/06 15:47:20. Data Transfer Failed.
I. 04/06 15:47:20. closesocket
I. 04/06 15:47:20. STOR Failed!
I. 04/06 15:47:20. DELE msgs/rem1/.cons
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/06 15:47:20. Server denied permission to DELE file.
I. 04/06 15:47:20. QUIT
I. 04/06 15:47:20. Getting server response:
I. 04/06 15:47:20. 221
I. 04/06 15:47:20. Socket Closed in FTPClose.
I. 04/06 15:47:20. closesocket
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect ftp
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 220 Microsoft FTP Service
I. 04/06 15:47:21. USER Bart_Huysmans
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 331 Password required for Bart_Huysmans.
I. 04/06 15:47:21. User accepted with a password needed.
I. 04/06 15:47:21. PASS
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
I. 04/06 15:47:21. Password Accepted.
I. 04/06 15:47:21. STOR "msgs/rem1/.cons"
I. 04/06 15:47:21. TYPE I
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 200 Type set to I.
I. 04/06 15:47:21. Type set.
I. 04/06 15:47:21. PASV
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 227 Entering Passive Mode
(10,40,40,16,9,139).
I. 04/06 15:47:21. PASV command accepted.
I. 04/06 15:47:21. STOR msgs/rem1/.cons
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: Access is denied.
I. 04/06 15:47:21. Data Transfer Failed.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. STOR Failed!
I. 04/06 15:47:21. DELE msgs/rem1/.cons
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/06 15:47:21. Server denied permission to DELE file.
I. 04/06 15:47:21. QUIT
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 221
I. 04/06 15:47:21. Socket Closed in FTPClose.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect ftp
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 220 Microsoft FTP Service
I. 04/06 15:47:21. USER Bart_Huysmans
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 331 Password required for Bart_Huysmans.
I. 04/06 15:47:21. User accepted with a password needed.
I. 04/06 15:47:21. PASS
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
I. 04/06 15:47:21. Password Accepted.
I. 04/06 15:47:21. STOR "msgs/rem1/.cons"
I. 04/06 15:47:21. TYPE I
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 200 Type set to I.
I. 04/06 15:47:21. Type set.
I. 04/06 15:47:21. PASV
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 227 Entering Passive Mode
(10,40,40,16,9,140).
I. 04/06 15:47:21. PASV command accepted.
I. 04/06 15:47:21. STOR msgs/rem1/.cons
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: Access is denied.
I. 04/06 15:47:21. Data Transfer Failed.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. STOR Failed!
I. 04/06 15:47:21. DELE msgs/rem1/.cons
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/06 15:47:21. Server denied permission to DELE file.
I. 04/06 15:47:21. QUIT
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 221
I. 04/06 15:47:21. Socket Closed in FTPClose.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect ftp
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 220 Microsoft FTP Service
I. 04/06 15:47:21. USER Bart_Huysmans
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 331 Password required for Bart_Huysmans
I. 04/06 15:47:21. User accepted with a password needed.
I. 04/06 15:47:21. PASS
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
I. 04/06 15:47:21. Password Accepted.
I. 04/06 15:47:21. STOR "msgs/rem1/.cons"
I. 04/06 15:47:21. TYPE I
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 200 Type set to I.
I. 04/06 15:47:21. Type set.
I. 04/06 15:47:21. PASV
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 227 Entering Passive Mode
(10,40,40,16,9,141).
I. 04/06 15:47:21. PASV command accepted.
I. 04/06 15:47:21. STOR msgs/rem1/.cons
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: Access is denied.
I. 04/06 15:47:21. Data Transfer Failed.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. STOR Failed!
I. 04/06 15:47:21. DELE msgs/rem1/.cons
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/06 15:47:21. Server denied permission to DELE file.
I. 04/06 15:47:21. QUIT
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 221
I. 04/06 15:47:21. Socket Closed in FTPClose.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. socket
I. 04/06 15:47:21. connect ftp
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 220 Microsoft FTP Service
I. 04/06 15:47:21. USER Bart_Huysmans
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 331 Password required for Bart_Huysmans
I. 04/06 15:47:21. User accepted with a password needed.
I. 04/06 15:47:21. PASS
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
I. 04/06 15:47:21. Password Accepted.
I. 04/06 15:47:21. Resend requests are being queued
I. 04/06 15:47:21. QUIT
I. 04/06 15:47:21. Getting server response:
I. 04/06 15:47:21. 221
I. 04/06 15:47:21. Socket Closed in FTPClose.
I. 04/06 15:47:21. closesocket
I. 04/06 15:47:21. Execution completed
regards,
Priyanka
> Please execute the following command against the
> consolidated database and re-run dbremote. Some FTP
> specific debug information will be printed to the dbremote
> log, which you can post to the forum. Note that the
> userid and password will be printed in the log, so you may
> want to change that information in the log before posting
> it here.
>
> set remote ftp option public.debug = 'on';
>
> --
> Reg Domaratzki, Sybase iAnywhere Solutions
> Sybase Certified Professional - Sybase ASA Developer
> Version 8 Please reply only to the newsgroup
>
> iAnywhere Developer Community :
> http://www.ianywhere.com/developer iAnywhere Documentation
> : http://www.ianywhere.com/developer/product_manuals ASA
> Patches and EBFs :
> http://downloads.sybase.com/swx/sdmain.stm
> -> Choose SQL Anywhere Studio
> -> Set "Platform Preview" and "Time Frame" to ALL
>
> <priyanka> wrote in message
> news:4252aa22.5705.1681692777@sybase.com... Hi,
>
> I have used the FTP Message type as you have described,
> but it is not working. Here I am sending you the SQL
> Remote Log for that on consolidated database.
>
> There I have Given my username and Password as I have an
> access to that server, but not working saying enable to
> connect.
>
> And DB remote statment for FTP is same or different, can
> you give me example?
>
>
> Log from Consolidate Database:
>
> I. 04/05 17:02:58. SQL Remote Message Agent Version
> 8.0.2.3601
> I. 04/05 17:02:58.
> I. 04/05 17:02:58. Copyright © 1989-2002 Sybase, Inc.
> Portions Copyright © 2002, iAnywhere
> Solutions, Inc.
> I. 04/05 17:02:58. All rights reserved. All unpublished
> rights reserved.
> I. 04/05 17:02:58.
> I. 04/05 17:02:58. This software contains confidential and
> trade secret information of
> I. 04/05 17:02:58. iAnywhere Solutions, Inc.
> Use, duplication or disclosure of the
> software and documentation
> I. 04/05 17:02:58. by the U.S. Government is subject to
> restrictions set forth in a license
> I. 04/05 17:02:58. agreement between the Government and
> iAnywhere Solutions, Inc. or
> I. 04/05 17:02:58. other written agreement specifying the
> Government's rights to use the
> I. 04/05 17:02:58. software and any applicable FAR
> provisions, for example, FAR 52.227-19.
> I. 04/05 17:02:58.
> I. 04/05 17:02:58. Sybase, Inc., One Sybase Drive, Dublin,
> CA 94568, USA
> I. 04/05 17:02:58.
> I. 04/05 17:02:58. Unable to open connection!.
> I. 04/05 17:02:58. Unable to open connection!.
> I. 04/05 17:02:58. Unable to open connection!.
> I. 04/05 17:02:58. Unable to open connection!.
> I. 04/05 17:02:58. Unable to open connection!.
> E. 04/05 17:02:58. Unable to initialize FTP link
> I. 04/05 17:02:59. Execution completed
>
> Regards,
> Priyanka
>
>
> directories into the "msgs" folder once logged in. >
> 'testiis5.sybase.com';
> "Time Frame" to ALL >
>
>
| |
| priyanka 2005-04-06, 8:02 pm |
| I have created in the root directory
c:\INTEPUB\ftproot\m
sgs, is it ok
> It looks like you either don't have permissions in the
> directories you've created, or you haven't placed the msgs
> directory in the root directory of the FTP server. When
> you FTP to the server (just use the DOS ftp command) and
> login as Bart_Huysmans, when you type in "pwd" what
> directory is returned? Is this the directory where you
> created the msgs folder?
>
> This problem doesn't look to have anything to do with a
> firewall to me. You wouldn't be able to login if it were
> a firewall problem.
>
> You can re-execute the SET REMOTE ftp OPTION command to
> change the value. If you want to delete the value, just
> specify an empty string as the value :
>
> SET REMOTE ftp OPTION "Public"."debug" =3d '';
>
> --
> Reg Domaratzki, Sybase iAnywhere Solutions
> Sybase Certified Professional - Sybase ASA Developer
> Version 8 Please reply only to the newsgroup
>
> iAnywhere Developer Community :
> http://www.ianywhere.com/developer iAnywhere Documentation
> : http://www.ianywhere.com/developer/product_manuals ASA
> Patches and EBFs :
> http://downloads.sybase.com/swx/sdmain.stm
> -> Choose SQL Anywhere Studio
> -> Set "Platform Preview" and "Time Frame" to ALL
>
> <priyanka> wrote in message
> news:4253eb15.68f9.1681692777@sybase.com... SQL Remote Log
> -- is here I tried to find it out but not working,About
> Firwell thing required on server you can tell me;
> One more thing if I have set some remote option,I can
> delete, or modify it?
> I. 04/06 15:47:19. SQL Remote Message Link Version
> 8.0.2.3601
> I. 04/06 15:47:19. socket
> I. 04/06 15:47:19. connect ftp
> I. 04/06 15:47:19. Getting server response:
> I. 04/06 15:47:19. 220 Microsoft FTP Service
> I. 04/06 15:47:19. USER Bart_Huysmans
> I. 04/06 15:47:19. Getting server response:
> I. 04/06 15:47:19. 331 Password required for
> Bart_Huysmans. I. 04/06 15:47:19. User accepted with a
> password needed. I. 04/06 15:47:19. PASS
> I. 04/06 15:47:19. Getting server response:
> I. 04/06 15:47:19. 230 User
> I. 04/06 15:47:19. Password Accepted.
> I. 04/06 15:47:19. PWD
> I. 04/06 15:47:19. Getting server response:
> I. 04/06 15:47:19. 257 "/" is current directory.
> I. 04/06 15:47:19. TYPE A N
> I. 04/06 15:47:19. Getting server response:
> I. 04/06 15:47:19. 200 Type set to A.
> I. 04/06 15:47:19. Type set.
> I. 04/06 15:47:19. PASV
> I. 04/06 15:47:19. Getting server response:
> I. 04/06 15:47:19. 227 Entering Passive Mode
> (10,40,40,16,9,136).
> I. 04/06 15:47:19. PASV command accepted.
> I. 04/06 15:47:19. NLST msgs/cons/
> I. 04/06 15:47:19. socket
> I. 04/06 15:47:19. connect
> I. 04/06 15:47:19. Getting server response:
> I. 04/06 15:47:19. 125 Data connection already open;
> Transfer starting.
> I. 04/06 15:47:19. 0 byte read...socket is closed
> I. 04/06 15:47:19. closesocket
> I. 04/06 15:47:19. Getting server response:
> I. 04/06 15:47:20. 226 Transfer complete.
> I. 04/06 15:47:20. closesocket
> I. 04/06 15:47:20.
> I. 04/06 15:47:20. Scanning logs starting at offset
> 0655056372
> I. 04/06 15:47:20. Processing transaction logs from
> directory "P:\Priyanka Kohli\trs\"
> I. 04/06 15:47:20. Transaction log "P:\Priyanka
> Kohli\trs\050406AA.LOG" starts at offset 0655045397
> I. 04/06 15:47:20. Processing transactions from
> transaction log "P:\Priyanka Kohli\trs\050406AA.LOG"
> I. 04/06 15:47:20. Transaction log ends at offset
> 0655060321 I. 04/06 15:47:20. Processing transactions from
> active transaction log
> I. 04/06 15:47:20. Sending message to "rem2"
> (0-0000000000-0655060295-0)
> I. 04/06 15:47:20. STOR "msgs/rem1/.cons"
> I. 04/06 15:47:20. TYPE I
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 200 Type set to I.
> I. 04/06 15:47:20. Type set.
> I. 04/06 15:47:20. PASV
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 227 Entering Passive Mode
> (10,40,40,16,9,137).
> I. 04/06 15:47:20. PASV command accepted.
> I. 04/06 15:47:20. STOR msgs/rem1/.cons
> I. 04/06 15:47:20. socket
> I. 04/06 15:47:20. connect
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 550 msgs/rem1/.cons: Access is denied.
> I. 04/06 15:47:20. Data Transfer Failed.
> I. 04/06 15:47:20. closesocket
> I. 04/06 15:47:20. STOR Failed!
> I. 04/06 15:47:20. DELE msgs/rem1/.cons
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 550 msgs/rem1/.cons: The system cannot
> find the file specified.
> I. 04/06 15:47:20. Server denied permission to DELE file.
> I. 04/06 15:47:20. QUIT
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 221
> I. 04/06 15:47:20. Socket Closed in FTPClose.
> I. 04/06 15:47:20. closesocket
> I. 04/06 15:47:20. socket
> I. 04/06 15:47:20. connect ftp
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 220 Microsoft FTP Service
> I. 04/06 15:47:20. USER Bart_Huysmans
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 331 Password required for
> Bart_Huysmans. I. 04/06 15:47:20. User accepted with a
> password needed. I. 04/06 15:47:20. PASS
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 230 User Bart_Huysmans logged in.
> I. 04/06 15:47:20. Password Accepted.
> I. 04/06 15:47:20. STOR "msgs/rem1/.cons"
> I. 04/06 15:47:20. TYPE I
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 200 Type set to I.
> I. 04/06 15:47:20. Type set.
> I. 04/06 15:47:20. PASV
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 227 Entering Passive Mode
> (10,40,40,16,9,138).
> I. 04/06 15:47:20. PASV command accepted.
> I. 04/06 15:47:20. STOR msgs/rem1/.cons
> I. 04/06 15:47:20. socket
> I. 04/06 15:47:20. connect
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 550 msgs/rem1/.cons: Access is denied.
> I. 04/06 15:47:20. Data Transfer Failed.
> I. 04/06 15:47:20. closesocket
> I. 04/06 15:47:20. STOR Failed!
> I. 04/06 15:47:20. DELE msgs/rem1/.cons
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 550 msgs/rem1/.cons: The system cannot
> find the file specified.
> I. 04/06 15:47:20. Server denied permission to DELE file.
> I. 04/06 15:47:20. QUIT
> I. 04/06 15:47:20. Getting server response:
> I. 04/06 15:47:20. 221
> I. 04/06 15:47:20. Socket Closed in FTPClose.
> I. 04/06 15:47:20. closesocket
> I. 04/06 15:47:21. socket
> I. 04/06 15:47:21. connect ftp
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 220 Microsoft FTP Service
> I. 04/06 15:47:21. USER Bart_Huysmans
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 331 Password required for
> Bart_Huysmans. I. 04/06 15:47:21. User accepted with a
> password needed. I. 04/06 15:47:21. PASS
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
> I. 04/06 15:47:21. Password Accepted.
> I. 04/06 15:47:21. STOR "msgs/rem1/.cons"
> I. 04/06 15:47:21. TYPE I
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 200 Type set to I.
> I. 04/06 15:47:21. Type set.
> I. 04/06 15:47:21. PASV
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 227 Entering Passive Mode
> (10,40,40,16,9,139).
> I. 04/06 15:47:21. PASV command accepted.
> I. 04/06 15:47:21. STOR msgs/rem1/.cons
> I. 04/06 15:47:21. socket
> I. 04/06 15:47:21. connect
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 550 msgs/rem1/.cons: Access is denied.
> I. 04/06 15:47:21. Data Transfer Failed.
> I. 04/06 15:47:21. closesocket
> I. 04/06 15:47:21. STOR Failed!
> I. 04/06 15:47:21. DELE msgs/rem1/.cons
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 550 msgs/rem1/.cons: The system cannot
> find the file specified.
> I. 04/06 15:47:21. Server denied permission to DELE file.
> I. 04/06 15:47:21. QUIT
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 221
> I. 04/06 15:47:21. Socket Closed in FTPClose.
> I. 04/06 15:47:21. closesocket
> I. 04/06 15:47:21. socket
> I. 04/06 15:47:21. connect ftp
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 220 Microsoft FTP Service
> I. 04/06 15:47:21. USER Bart_Huysmans
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 331 Password required for
> Bart_Huysmans. I. 04/06 15:47:21. User accepted with a
> password needed. I. 04/06 15:47:21. PASS
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
> I. 04/06 15:47:21. Password Accepted.
> I. 04/06 15:47:21. STOR "msgs/rem1/.cons"
> I. 04/06 15:47:21. TYPE I
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 200 Type set to I.
> I. 04/06 15:47:21. Type set.
> I. 04/06 15:47:21. PASV
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 227 Entering Passive Mode
> (10,40,40,16,9,140).
> I. 04/06 15:47:21. PASV command accepted.
> I. 04/06 15:47:21. STOR msgs/rem1/.cons
> I. 04/06 15:47:21. socket
> I. 04/06 15:47:21. connect
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 550 msgs/rem1/.cons: Access is denied.
> I. 04/06 15:47:21. Data Transfer Failed.
> I. 04/06 15:47:21. closesocket
> I. 04/06 15:47:21. STOR Failed!
> I. 04/06 15:47:21. DELE msgs/rem1/.cons
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 550 msgs/rem1/.cons: The system cannot
> find the file specified.
> I. 04/06 15:47:21. Server denied permission to DELE file.
> I. 04/06 15:47:21. QUIT
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 221
> I. 04/06 15:47:21. Socket Closed in FTPClose.
> I. 04/06 15:47:21. closesocket
> I. 04/06 15:47:21. socket
> I. 04/06 15:47:21. connect ftp
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 220 Microsoft FTP Service
> I. 04/06 15:47:21. USER Bart_Huysmans
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 331 Password required for Bart_Huysmans
> I. 04/06 15:47:21. User accepted with a password needed.
> I. 04/06 15:47:21. PASS
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
> I. 04/06 15:47:21. Password Accepted.
> I. 04/06 15:47:21. STOR "msgs/rem1/.cons"
> I. 04/06 15:47:21. TYPE I
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 200 Type set to I.
> I. 04/06 15:47:21. Type set.
> I. 04/06 15:47:21. PASV
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 227 Entering Passive Mode
> (10,40,40,16,9,141).
> I. 04/06 15:47:21. PASV command accepted.
> I. 04/06 15:47:21. STOR msgs/rem1/.cons
> I. 04/06 15:47:21. socket
> I. 04/06 15:47:21. connect
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 550 msgs/rem1/.cons: Access is denied.
> I. 04/06 15:47:21. Data Transfer Failed.
> I. 04/06 15:47:21. closesocket
> I. 04/06 15:47:21. STOR Failed!
> I. 04/06 15:47:21. DELE msgs/rem1/.cons
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 550 msgs/rem1/.cons: The system cannot
> find the file specified.
> I. 04/06 15:47:21. Server denied permission to DELE file.
> I. 04/06 15:47:21. QUIT
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 221
> I. 04/06 15:47:21. Socket Closed in FTPClose.
> I. 04/06 15:47:21. closesocket
> I. 04/06 15:47:21. socket
> I. 04/06 15:47:21. connect ftp
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 220 Microsoft FTP Service
> I. 04/06 15:47:21. USER Bart_Huysmans
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 331 Password required for Bart_Huysmans
> I. 04/06 15:47:21. User accepted with a password needed.
> I. 04/06 15:47:21. PASS
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 230 User Bart_Huysmans logged in.
> I. 04/06 15:47:21. Password Accepted.
> I. 04/06 15:47:21. Resend requests are being queued
> I. 04/06 15:47:21. QUIT
> I. 04/06 15:47:21. Getting server response:
> I. 04/06 15:47:21. 221
> I. 04/06 15:47:21. Socket Closed in FTPClose.
> I. 04/06 15:47:21. closesocket
> I. 04/06 15:47:21. Execution completed
>
> regards,
> Priyanka
>
>
> "Time Frame" to ALL >
iAnywhere[color=dark
red]
>
>
| |
| Priyanka 2005-04-07, 8:02 pm |
| when I try to login by DOS windows, I am able to connect to
it,and when I give command dir, it return 'msgs' folder
which I am using to store and receive messages.
So, I thinks Folder is located in a root directory only.
THE user name,I am using has full premission on this
directory, or you are talking about some other permission.
Here is a SQL Log
SQL Remote Message Link Version 8.0.2.3601
I. 04/07 15:53:11. socket
I. 04/07 15:53:11. connect ftp
I. 04/07 15:53:11. Getting server response:
I. 04/07 15:53:11. 220 Microsoft FTP Service
I. 04/07 15:53:11. USER Bart_Huysmans
I. 04/07 15:53:11. Getting server response:
I. 04/07 15:53:11. 331 Password required for Bart_Huysmans
I. 04/07 15:53:11. User accepted with a password needed.
I. 04/07 15:53:11. PASS
I. 04/07 15:53:11. Getting server response:
I. 04/07 15:53:11. 230 User Bart_Huysmans logged in.
I. 04/07 15:53:11. Password Accepted.
I. 04/07 15:53:11. PWD
I. 04/07 15:53:11. Getting server response:
I. 04/07 15:53:11. 257 "/" is current directory.
I. 04/07 15:53:11. TYPE A N
I. 04/07 15:53:11. Getting server response:
I. 04/07 15:53:11. 200 Type set to A.
I. 04/07 15:53:11. Type set.
I. 04/07 15:53:11. PASV
I. 04/07 15:53:11. Getting server response:
I. 04/07 15:53:11. 227 Entering Passive Mode
(10,40,40,16,12,12).
I. 04/07 15:53:11. PASV command accepted.
I. 04/07 15:53:11. NLST msgs/cons/
I. 04/07 15:53:11. socket
I. 04/07 15:53:11. connect
I. 04/07 15:53:11. Getting server response:
I. 04/07 15:53:11. 125 Data connection already open;
Transfer starting.
I. 04/07 15:53:11. 0 byte read...socket is closed
I. 04/07 15:53:11. closesocket
I. 04/07 15:53:11. Getting server response:
I. 04/07 15:53:11. 226 Transfer complete.
I. 04/07 15:53:11. closesocket
I. 04/07 15:53:11.
I. 04/07 15:53:12. Scanning logs starting at offset
0655056372
I. 04/07 15:53:12. Processing transaction logs from
directory "P:\Priyanka Kohli\trs\"
I. 04/07 15:53:12. Transaction log "P:\Priyanka
Kohli\trs\050406AA.LOG" starts at offset 0655045397
I. 04/07 15:53:12. Processing transactions from transaction
log "P:\Priyanka Kohli\trs\050406AA.LOG"
I. 04/07 15:53:12. Transaction log ends at offset 0655060321
I. 04/07 15:53:12. Processing transactions from active
transaction log
I. 04/07 15:53:12. Sending message to "rem2"
(0-0000000000-0655062759-0)
I. 04/07 15:53:12. STOR "msgs/rem1/.cons"
I. 04/07 15:53:12. TYPE I
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 200 Type set to I.
I. 04/07 15:53:12. Type set.
I. 04/07 15:53:12. PASV
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 227 Entering Passive Mode
(10,40,40,16,12,13).
I. 04/07 15:53:12. PASV command accepted.
I. 04/07 15:53:12. STOR msgs/rem1/.cons
I. 04/07 15:53:12. socket
I. 04/07 15:53:12. connect
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 550 msgs/rem1/.cons: Access is denied.
I. 04/07 15:53:12. Data Transfer Failed.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. STOR Failed!
I. 04/07 15:53:12. DELE msgs/rem1/.cons
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/07 15:53:12. Server denied permission to DELE file.
I. 04/07 15:53:12. QUIT
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 221
I. 04/07 15:53:12. Socket Closed in FTPClose.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. socket
I. 04/07 15:53:12. connect ftp
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 220 Microsoft FTP Service
I. 04/07 15:53:12. USER Bart_Huysmans
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 331 Password required for Bart_Huysmans
I. 04/07 15:53:12. User accepted with a password needed.
I. 04/07 15:53:12. PASS
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 230 User Bart_Huysmans logged in.
I. 04/07 15:53:12. Password Accepted.
I. 04/07 15:53:12. STOR "msgs/rem1/.cons"
I. 04/07 15:53:12. TYPE I
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 200 Type set to I.
I. 04/07 15:53:12. Type set.
I. 04/07 15:53:12. PASV
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 227 Entering Passive Mode
(10,40,40,16,12,14).
I. 04/07 15:53:12. PASV command accepted.
I. 04/07 15:53:12. STOR msgs/rem1/.cons
I. 04/07 15:53:12. socket
I. 04/07 15:53:12. connect
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 550 msgs/rem1/.cons: Access is denied.
I. 04/07 15:53:12. Data Transfer Failed.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. STOR Failed!
I. 04/07 15:53:12. DELE msgs/rem1/.cons
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/07 15:53:12. Server denied permission to DELE file.
I. 04/07 15:53:12. QUIT
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 221
I. 04/07 15:53:12. Socket Closed in FTPClose.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. socket
I. 04/07 15:53:12. connect ftp
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 220 Microsoft FTP Service
I. 04/07 15:53:12. USER Bart_Huysmans
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 331 Password required for Bart_Huysmans
I. 04/07 15:53:12. User accepted with a password needed.
I. 04/07 15:53:12. PASS
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 230 User Bart_Huysmans logged in.
I. 04/07 15:53:12. Password Accepted.
I. 04/07 15:53:12. STOR "msgs/rem1/.cons"
I. 04/07 15:53:12. TYPE I
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 200 Type set to I.
I. 04/07 15:53:12. Type set.
I. 04/07 15:53:12. PASV
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 227 Entering Passive Mode
(10,40,40,16,12,15).
I. 04/07 15:53:12. PASV command accepted.
I. 04/07 15:53:12. STOR msgs/rem1/.cons
I. 04/07 15:53:12. socket
I. 04/07 15:53:12. connect
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 550 msgs/rem1/.cons: Access is denied.
I. 04/07 15:53:12. Data Transfer Failed.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. STOR Failed!
I. 04/07 15:53:12. DELE msgs/rem1/.cons
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/07 15:53:12. Server denied permission to DELE file.
I. 04/07 15:53:12. QUIT
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 221
I. 04/07 15:53:12. Socket Closed in FTPClose.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. socket
I. 04/07 15:53:12. connect ftp
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 220 Microsoft FTP Service
I. 04/07 15:53:12. USER Bart_Huysmans
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 331 Password required for Bart_Huysmans
I. 04/07 15:53:12. User accepted with a password needed.
I. 04/07 15:53:12. PASS
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 230 User Bart_Huysmans logged in.
I. 04/07 15:53:12. Password Accepted.
I. 04/07 15:53:12. STOR "msgs/rem1/.cons"
I. 04/07 15:53:12. TYPE I
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 200 Type set to I.
I. 04/07 15:53:12. Type set.
I. 04/07 15:53:12. PASV
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 227 Entering Passive Mode
(10,40,40,16,12,16).
I. 04/07 15:53:12. PASV command accepted.
I. 04/07 15:53:12. STOR msgs/rem1/.cons
I. 04/07 15:53:12. socket
I. 04/07 15:53:12. connect
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 550 msgs/rem1/.cons: Access is denied.
I. 04/07 15:53:12. Data Transfer Failed.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. STOR Failed!
I. 04/07 15:53:12. DELE msgs/rem1/.cons
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/07 15:53:12. Server denied permission to DELE file.
I. 04/07 15:53:12. QUIT
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 221
I. 04/07 15:53:12. Socket Closed in FTPClose.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. socket
I. 04/07 15:53:12. connect ftp
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 220 Microsoft FTP Service
I. 04/07 15:53:12. USER Bart_Huysmans
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 331 Password required for Bart_Huysmans
I. 04/07 15:53:12. User accepted with a password needed.
I. 04/07 15:53:12. PASS
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 230 User Bart_Huysmans logged in.
I. 04/07 15:53:12. Password Accepted.
I. 04/07 15:53:12. STOR "msgs/rem1/.cons"
I. 04/07 15:53:12. TYPE I
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 200 Type set to I.
I. 04/07 15:53:12. Type set.
I. 04/07 15:53:12. PASV
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 227 Entering Passive Mode
(10,40,40,16,12,17).
I. 04/07 15:53:12. PASV command accepted.
I. 04/07 15:53:12. STOR msgs/rem1/.cons
I. 04/07 15:53:12. socket
I. 04/07 15:53:12. connect
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 550 msgs/rem1/.cons: Access is denied.
I. 04/07 15:53:12. Data Transfer Failed.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. STOR Failed!
I. 04/07 15:53:12. DELE msgs/rem1/.cons
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 550 msgs/rem1/.cons: The system cannot
find the file specified.
I. 04/07 15:53:12. Server denied permission to DELE file.
I. 04/07 15:53:12. QUIT
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 221
I. 04/07 15:53:12. Socket Closed in FTPClose.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. socket
I. 04/07 15:53:12. connect ftp
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 220 Microsoft FTP Service
I. 04/07 15:53:12. USER Bart_Huysmans
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 331 Password required for Bart_Huysmans
I. 04/07 15:53:12. User accepted with a password needed.
I. 04/07 15:53:12. PASS
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 230 User Bart_Huysmans logged in.
I. 04/07 15:53:12. Password Accepted.
I. 04/07 15:53:12. Resend requests are being queued
I. 04/07 15:53:12. QUIT
I. 04/07 15:53:12. Getting server response:
I. 04/07 15:53:12. 221
I. 04/07 15:53:12. Socket Closed in FTPClose.
I. 04/07 15:53:12. closesocket
I. 04/07 15:53:12. Execution completed
Regards,
thanks in advance!!
Priyanka[color=darkr
ed]
> I have created in the root directory
> c:\INTEPUB\ftproot\m
sgs, is it ok
>
>
> "Time Frame" to ALL >
Inc.[color=darkred]
> iAnywhere
> ftp option public.password > > > 'regd@whatever.com'; set
|
|
|
|
|