Hi all,
Is it possible to know if exist an FTP Server for Windows CE 5.0 ?
Thanks for your answer
Stefano

Re: FTP Server for Windows CE 5.0 by Valter

Valter
Wed Feb 08 04:31:07 CST 2006

"=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
<StefanoMagni@discussions.microsoft.com> wrote in news:0E627D2B-01BC-
4DEA-8863-DAA8B68F24F4@microsoft.com:

> Hi all,
> Is it possible to know if exist an FTP Server for Windows CE 5.0 ?
> Thanks for your answer
> Stefano
>

The FTP server is a component of CE 5.0 and you can add it to your
platform simply dragging it from the catalog (it's under "Core OS
\Windows CE devices\Communication Services and Networking\Servers").


--
Valter Minute
(the reply address of this message is invalid)
(l'indirizzo di reply di questo messaggio non è valido)

Re: FTP Server for Windows CE 5.0 by Remi

Remi
Wed Feb 08 04:34:50 CST 2006

Yes, there are a FTP server, a Telnet server, an HTTP (Web) server, etc.
Remi



Re: FTP Server for Windows CE 5.0 by StefanoMagni

StefanoMagni
Fri Feb 10 01:12:27 CST 2006

Thanks I've installed FTP server on my WinCE device.
The problem now is that I try to connect to this ftp server from another PC
in the same lan, the connection failed "Connessione chiusa dall'host remoto".

I've configured my project.reg in this way:
[HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
@="\\Hard Disk\\Log"

where log is an existing folder on my compact flash.

[HKEY_LOCAL_MACHINE\Comm\FTPD]
"AllowAnonymousVroots"=dword:1

Which is the problem ?

Thanks
Stefano Magni

"Valter Minute" wrote:

> "=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
> <StefanoMagni@discussions.microsoft.com> wrote in news:0E627D2B-01BC-
> 4DEA-8863-DAA8B68F24F4@microsoft.com:
>
> > Hi all,
> > Is it possible to know if exist an FTP Server for Windows CE 5.0 ?
> > Thanks for your answer
> > Stefano
> >
>
> The FTP server is a component of CE 5.0 and you can add it to your
> platform simply dragging it from the catalog (it's under "Core OS
> \Windows CE devices\Communication Services and Networking\Servers").
>
>
> --
> Valter Minute
> (the reply address of this message is invalid)
> (l'indirizzo di reply di questo messaggio non è valido)
>

Re: FTP Server for Windows CE 5.0 by Valter

Valter
Fri Feb 10 02:44:10 CST 2006

"=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
<StefanoMagni@discussions.microsoft.com> wrote in
news:2E66F107-919A-415F-A4F2-075474F43F2A@microsoft.com:

> Thanks I've installed FTP server on my WinCE device.
> The problem now is that I try to connect to this ftp server from
> another PC in the same lan, the connection failed "Connessione
> chiusa dall'host remoto".
>
> I've configured my project.reg in this way:
> [HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
> @="\\Hard Disk\\Log"
>

Did you put an entry for the FTP root?
If you want to use your \Hard Disk\Log directory as FTP root you should
remove that key and put the path in the DefaultDir directory under the
FTPD main configuration key.
If you don't provide a DefaultDir, \Temp is used. Does this directory
exists on your device?

> where log is an existing folder on my compact flash.
>
> [HKEY_LOCAL_MACHINE\Comm\FTPD]
> "AllowAnonymousVroots"=dword:1
>

If you want to allow anonymous access to your root directory, set also
the AllowAnonymous value to dword:1.
If you don't need a login, set UseAuthentication to dword:0

> Which is the problem ?
>

Try to connect using telnet on port 21. Do you receive a login request?
Try to enable the FTP server's debug zones on platform builder, and
check its debug output when you try to connect.

Buon lavoro
--
Valter Minute
(the reply address of this message is invalid)
(l'indirizzo di reply di questo messaggio non è valido)

Re: FTP Server for Windows CE 5.0 by Voidcoder

Voidcoder
Fri Feb 10 11:53:56 CST 2006

Try the following config first:

[HKEY_LOCAL_MACHINE\COMM\FTPD]
"DefaultDir"="\\"
"IsEnabled"=dword:1
"UseAuthentication"=dword:0
"AllowAnonymous"=dword:1
"AllowAnonymousUpload"=dword:1
"AllowAnonymousVroots"=dword:1

This will give you anonymous access
to the whole filesystem. !BUT! note
FTP server can not handle properly
spaces inside the FTP path.



"Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
news:2E66F107-919A-415F-A4F2-075474F43F2A@microsoft.com...
> Thanks I've installed FTP server on my WinCE device.
> The problem now is that I try to connect to this ftp server from another PC
> in the same lan, the connection failed "Connessione chiusa dall'host remoto".
>
> I've configured my project.reg in this way:
> [HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
> @="\\Hard Disk\\Log"
>
> where log is an existing folder on my compact flash.
>
> [HKEY_LOCAL_MACHINE\Comm\FTPD]
> "AllowAnonymousVroots"=dword:1
>
> Which is the problem ?
>
> Thanks
> Stefano Magni
>
> "Valter Minute" wrote:
>
>> "=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
>> <StefanoMagni@discussions.microsoft.com> wrote in news:0E627D2B-01BC-
>> 4DEA-8863-DAA8B68F24F4@microsoft.com:
>>
>> > Hi all,
>> > Is it possible to know if exist an FTP Server for Windows CE 5.0 ?
>> > Thanks for your answer
>> > Stefano
>> >
>>
>> The FTP server is a component of CE 5.0 and you can add it to your
>> platform simply dragging it from the catalog (it's under "Core OS
>> \Windows CE devices\Communication Services and Networking\Servers").
>>
>>
>> --
>> Valter Minute
>> (the reply address of this message is invalid)
>> (l'indirizzo di reply di questo messaggio non e valido)
>>



Re: FTP Server for Windows CE 5.0 by StefanoMagni

StefanoMagni
Fri Feb 10 02:58:27 CST 2006

OK, now my default directory is \Hard Disk\Log. But the problem is that if
type "services list" command, FTP Services is loaded but "disabled". Is it
possible run automaticaly at startup this service ?
It possible that the problem is caused by the configuration of SMBServerin
my project.reg ?
this is the configuration:
[HKEY_LOCAL_MACHINE\Services\SMBServer]
"AdapterList"="*"
"DLL"="smbserver.dll"
"Keep"=dword:1
"Order"=dword:12
"Prefix"="SMB"
"Index"=dword:0

[HKEY_LOCAL_MACHINE\Services\SMBServer\Shares\Windows]
"UserList"="admin"
"Path"="\\Windows"
"Type"=dword:0

[HKEY_LOCAL_MACHINE\Services\SMBServer\Shares\HDD1]
"UserList"="admin"
"Path"="\\Hard Disk"
"Type"=dword:0

[HKEY_LOCAL_MACHINE\Services\SMBServer\Shares\Temp]
"UserList"="admin"
"Path"="\\Temp"
"Type"=dword:0

"Valter Minute" wrote:

> "=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
> <StefanoMagni@discussions.microsoft.com> wrote in
> news:2E66F107-919A-415F-A4F2-075474F43F2A@microsoft.com:
>
> > Thanks I've installed FTP server on my WinCE device.
> > The problem now is that I try to connect to this ftp server from
> > another PC in the same lan, the connection failed "Connessione
> > chiusa dall'host remoto".
> >
> > I've configured my project.reg in this way:
> > [HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
> > @="\\Hard Disk\\Log"
> >
>
> Did you put an entry for the FTP root?
> If you want to use your \Hard Disk\Log directory as FTP root you should
> remove that key and put the path in the DefaultDir directory under the
> FTPD main configuration key.
> If you don't provide a DefaultDir, \Temp is used. Does this directory
> exists on your device?
>
> > where log is an existing folder on my compact flash.
> >
> > [HKEY_LOCAL_MACHINE\Comm\FTPD]
> > "AllowAnonymousVroots"=dword:1
> >
>
> If you want to allow anonymous access to your root directory, set also
> the AllowAnonymous value to dword:1.
> If you don't need a login, set UseAuthentication to dword:0
>
> > Which is the problem ?
> >
>
> Try to connect using telnet on port 21. Do you receive a login request?
> Try to enable the FTP server's debug zones on platform builder, and
> check its debug output when you try to connect.
>
> Buon lavoro
> --
> Valter Minute
> (the reply address of this message is invalid)
> (l'indirizzo di reply di questo messaggio non è valido)
>

Re: FTP Server for Windows CE 5.0 by Voidcoder

Voidcoder
Fri Feb 10 12:08:53 CST 2006

[HKEY_LOCAL_MACHINE\COMM\FTPD]
"IsEnabled"=dword:1


"Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
news:9F7742F9-A371-4AFD-8BF1-A4FE72CF91CC@microsoft.com...
> OK, now my default directory is \Hard Disk\Log. But the problem is that if
> type "services list" command, FTP Services is loaded but "disabled". Is it
> possible run automaticaly at startup this service ?
> It possible that the problem is caused by the configuration of SMBServerin
> my project.reg ?
> this is the configuration:
> [HKEY_LOCAL_MACHINE\Services\SMBServer]
> "AdapterList"="*"
> "DLL"="smbserver.dll"
> "Keep"=dword:1
> "Order"=dword:12
> "Prefix"="SMB"
> "Index"=dword:0
>
> [HKEY_LOCAL_MACHINE\Services\SMBServer\Shares\Windows]
> "UserList"="admin"
> "Path"="\\Windows"
> "Type"=dword:0
>
> [HKEY_LOCAL_MACHINE\Services\SMBServer\Shares\HDD1]
> "UserList"="admin"
> "Path"="\\Hard Disk"
> "Type"=dword:0
>
> [HKEY_LOCAL_MACHINE\Services\SMBServer\Shares\Temp]
> "UserList"="admin"
> "Path"="\\Temp"
> "Type"=dword:0
>
> "Valter Minute" wrote:
>
>> "=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
>> <StefanoMagni@discussions.microsoft.com> wrote in
>> news:2E66F107-919A-415F-A4F2-075474F43F2A@microsoft.com:
>>
>> > Thanks I've installed FTP server on my WinCE device.
>> > The problem now is that I try to connect to this ftp server from
>> > another PC in the same lan, the connection failed "Connessione
>> > chiusa dall'host remoto".
>> >
>> > I've configured my project.reg in this way:
>> > [HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
>> > @="\\Hard Disk\\Log"
>> >
>>
>> Did you put an entry for the FTP root?
>> If you want to use your \Hard Disk\Log directory as FTP root you should
>> remove that key and put the path in the DefaultDir directory under the
>> FTPD main configuration key.
>> If you don't provide a DefaultDir, \Temp is used. Does this directory
>> exists on your device?
>>
>> > where log is an existing folder on my compact flash.
>> >
>> > [HKEY_LOCAL_MACHINE\Comm\FTPD]
>> > "AllowAnonymousVroots"=dword:1
>> >
>>
>> If you want to allow anonymous access to your root directory, set also
>> the AllowAnonymous value to dword:1.
>> If you don't need a login, set UseAuthentication to dword:0
>>
>> > Which is the problem ?
>> >
>>
>> Try to connect using telnet on port 21. Do you receive a login request?
>> Try to enable the FTP server's debug zones on platform builder, and
>> check its debug output when you try to connect.
>>
>> Buon lavoro
>> --
>> Valter Minute
>> (the reply address of this message is invalid)
>> (l'indirizzo di reply di questo messaggio non e valido)
>>



Re: FTP Server for Windows CE 5.0 by StefanoMagni

StefanoMagni
Fri Feb 10 04:39:14 CST 2006

OK, thanks for your answer !
In this way, is it possible download and upload from an to my ftp folder ?
Excuse me, an important question !!! : every times that I modify
project.reg, is necessary recal "sysgen" funtion .. or exist an build in less
time !!???

"Voidcoder" wrote:

> Try the following config first:
>
> [HKEY_LOCAL_MACHINE\COMM\FTPD]
> "DefaultDir"="\\"
> "IsEnabled"=dword:1
> "UseAuthentication"=dword:0
> "AllowAnonymous"=dword:1
> "AllowAnonymousUpload"=dword:1
> "AllowAnonymousVroots"=dword:1
>
> This will give you anonymous access
> to the whole filesystem. !BUT! note
> FTP server can not handle properly
> spaces inside the FTP path.
>
>
>
> "Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
> news:2E66F107-919A-415F-A4F2-075474F43F2A@microsoft.com...
> > Thanks I've installed FTP server on my WinCE device.
> > The problem now is that I try to connect to this ftp server from another PC
> > in the same lan, the connection failed "Connessione chiusa dall'host remoto".
> >
> > I've configured my project.reg in this way:
> > [HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
> > @="\\Hard Disk\\Log"
> >
> > where log is an existing folder on my compact flash.
> >
> > [HKEY_LOCAL_MACHINE\Comm\FTPD]
> > "AllowAnonymousVroots"=dword:1
> >
> > Which is the problem ?
> >
> > Thanks
> > Stefano Magni
> >
> > "Valter Minute" wrote:
> >
> >> "=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
> >> <StefanoMagni@discussions.microsoft.com> wrote in news:0E627D2B-01BC-
> >> 4DEA-8863-DAA8B68F24F4@microsoft.com:
> >>
> >> > Hi all,
> >> > Is it possible to know if exist an FTP Server for Windows CE 5.0 ?
> >> > Thanks for your answer
> >> > Stefano
> >> >
> >>
> >> The FTP server is a component of CE 5.0 and you can add it to your
> >> platform simply dragging it from the catalog (it's under "Core OS
> >> \Windows CE devices\Communication Services and Networking\Servers").
> >>
> >>
> >> --
> >> Valter Minute
> >> (the reply address of this message is invalid)
> >> (l'indirizzo di reply di questo messaggio non e valido)
> >>
>
>
>

Re: FTP Server for Windows CE 5.0 by Voidcoder

Voidcoder
Fri Feb 10 13:55:03 CST 2006

No, you don't need to re-sysgen when
just changing regsitry. It is enough to
"Make Run-Time Image".


"Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
news:BD194C15-D384-4C60-B589-DD071A33DBBC@microsoft.com...
> OK, thanks for your answer !
> In this way, is it possible download and upload from an to my ftp folder ?
> Excuse me, an important question !!! : every times that I modify
> project.reg, is necessary recal "sysgen" funtion .. or exist an build in less
> time !!???
>
> "Voidcoder" wrote:
>
>> Try the following config first:
>>
>> [HKEY_LOCAL_MACHINE\COMM\FTPD]
>> "DefaultDir"="\\"
>> "IsEnabled"=dword:1
>> "UseAuthentication"=dword:0
>> "AllowAnonymous"=dword:1
>> "AllowAnonymousUpload"=dword:1
>> "AllowAnonymousVroots"=dword:1
>>
>> This will give you anonymous access
>> to the whole filesystem. !BUT! note
>> FTP server can not handle properly
>> spaces inside the FTP path.
>>
>>
>>
>> "Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
>> news:2E66F107-919A-415F-A4F2-075474F43F2A@microsoft.com...
>> > Thanks I've installed FTP server on my WinCE device.
>> > The problem now is that I try to connect to this ftp server from another PC
>> > in the same lan, the connection failed "Connessione chiusa dall'host remoto".
>> >
>> > I've configured my project.reg in this way:
>> > [HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
>> > @="\\Hard Disk\\Log"
>> >
>> > where log is an existing folder on my compact flash.
>> >
>> > [HKEY_LOCAL_MACHINE\Comm\FTPD]
>> > "AllowAnonymousVroots"=dword:1
>> >
>> > Which is the problem ?
>> >
>> > Thanks
>> > Stefano Magni
>> >
>> > "Valter Minute" wrote:
>> >
>> >> "=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
>> >> <StefanoMagni@discussions.microsoft.com> wrote in news:0E627D2B-01BC-
>> >> 4DEA-8863-DAA8B68F24F4@microsoft.com:
>> >>
>> >> > Hi all,
>> >> > Is it possible to know if exist an FTP Server for Windows CE 5.0 ?
>> >> > Thanks for your answer
>> >> > Stefano
>> >> >
>> >>
>> >> The FTP server is a component of CE 5.0 and you can add it to your
>> >> platform simply dragging it from the catalog (it's under "Core OS
>> >> \Windows CE devices\Communication Services and Networking\Servers").
>> >>
>> >>
>> >> --
>> >> Valter Minute
>> >> (the reply address of this message is invalid)
>> >> (l'indirizzo di reply di questo messaggio non e valido)
>> >>
>>
>>
>>



Re: FTP Server for Windows CE 5.0 by StefanoMagni

StefanoMagni
Fri Feb 10 05:05:29 CST 2006

Thanks !
IF i want that upload and download only one use from and to my FTP server
folder, exist an option where I specify User And password ?

"Voidcoder" wrote:

> No, you don't need to re-sysgen when
> just changing regsitry. It is enough to
> "Make Run-Time Image".
>
>
> "Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
> news:BD194C15-D384-4C60-B589-DD071A33DBBC@microsoft.com...
> > OK, thanks for your answer !
> > In this way, is it possible download and upload from an to my ftp folder ?
> > Excuse me, an important question !!! : every times that I modify
> > project.reg, is necessary recal "sysgen" funtion .. or exist an build in less
> > time !!???
> >
> > "Voidcoder" wrote:
> >
> >> Try the following config first:
> >>
> >> [HKEY_LOCAL_MACHINE\COMM\FTPD]
> >> "DefaultDir"="\\"
> >> "IsEnabled"=dword:1
> >> "UseAuthentication"=dword:0
> >> "AllowAnonymous"=dword:1
> >> "AllowAnonymousUpload"=dword:1
> >> "AllowAnonymousVroots"=dword:1
> >>
> >> This will give you anonymous access
> >> to the whole filesystem. !BUT! note
> >> FTP server can not handle properly
> >> spaces inside the FTP path.
> >>
> >>
> >>
> >> "Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
> >> news:2E66F107-919A-415F-A4F2-075474F43F2A@microsoft.com...
> >> > Thanks I've installed FTP server on my WinCE device.
> >> > The problem now is that I try to connect to this ftp server from another PC
> >> > in the same lan, the connection failed "Connessione chiusa dall'host remoto".
> >> >
> >> > I've configured my project.reg in this way:
> >> > [HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
> >> > @="\\Hard Disk\\Log"
> >> >
> >> > where log is an existing folder on my compact flash.
> >> >
> >> > [HKEY_LOCAL_MACHINE\Comm\FTPD]
> >> > "AllowAnonymousVroots"=dword:1
> >> >
> >> > Which is the problem ?
> >> >
> >> > Thanks
> >> > Stefano Magni
> >> >
> >> > "Valter Minute" wrote:
> >> >
> >> >> "=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
> >> >> <StefanoMagni@discussions.microsoft.com> wrote in news:0E627D2B-01BC-
> >> >> 4DEA-8863-DAA8B68F24F4@microsoft.com:
> >> >>
> >> >> > Hi all,
> >> >> > Is it possible to know if exist an FTP Server for Windows CE 5.0 ?
> >> >> > Thanks for your answer
> >> >> > Stefano
> >> >> >
> >> >>
> >> >> The FTP server is a component of CE 5.0 and you can add it to your
> >> >> platform simply dragging it from the catalog (it's under "Core OS
> >> >> \Windows CE devices\Communication Services and Networking\Servers").
> >> >>
> >> >>
> >> >> --
> >> >> Valter Minute
> >> >> (the reply address of this message is invalid)
> >> >> (l'indirizzo di reply di questo messaggio non e valido)
> >> >>
> >>
> >>
> >>
>
>
>

Re: FTP Server for Windows CE 5.0 by StefanoMagni

StefanoMagni
Fri Feb 10 05:25:27 CST 2006

I've tried to modify one setting in project.reg and then Make Run-Time
Image", but the modify not exist in nk.bin generated. Why ?



"Voidcoder" wrote:

> No, you don't need to re-sysgen when
> just changing regsitry. It is enough to
> "Make Run-Time Image".
>
>
> "Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
> news:BD194C15-D384-4C60-B589-DD071A33DBBC@microsoft.com...
> > OK, thanks for your answer !
> > In this way, is it possible download and upload from an to my ftp folder ?
> > Excuse me, an important question !!! : every times that I modify
> > project.reg, is necessary recal "sysgen" funtion .. or exist an build in less
> > time !!???
> >
> > "Voidcoder" wrote:
> >
> >> Try the following config first:
> >>
> >> [HKEY_LOCAL_MACHINE\COMM\FTPD]
> >> "DefaultDir"="\\"
> >> "IsEnabled"=dword:1
> >> "UseAuthentication"=dword:0
> >> "AllowAnonymous"=dword:1
> >> "AllowAnonymousUpload"=dword:1
> >> "AllowAnonymousVroots"=dword:1
> >>
> >> This will give you anonymous access
> >> to the whole filesystem. !BUT! note
> >> FTP server can not handle properly
> >> spaces inside the FTP path.
> >>
> >>
> >>
> >> "Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
> >> news:2E66F107-919A-415F-A4F2-075474F43F2A@microsoft.com...
> >> > Thanks I've installed FTP server on my WinCE device.
> >> > The problem now is that I try to connect to this ftp server from another PC
> >> > in the same lan, the connection failed "Connessione chiusa dall'host remoto".
> >> >
> >> > I've configured my project.reg in this way:
> >> > [HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
> >> > @="\\Hard Disk\\Log"
> >> >
> >> > where log is an existing folder on my compact flash.
> >> >
> >> > [HKEY_LOCAL_MACHINE\Comm\FTPD]
> >> > "AllowAnonymousVroots"=dword:1
> >> >
> >> > Which is the problem ?
> >> >
> >> > Thanks
> >> > Stefano Magni
> >> >
> >> > "Valter Minute" wrote:
> >> >
> >> >> "=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
> >> >> <StefanoMagni@discussions.microsoft.com> wrote in news:0E627D2B-01BC-
> >> >> 4DEA-8863-DAA8B68F24F4@microsoft.com:
> >> >>
> >> >> > Hi all,
> >> >> > Is it possible to know if exist an FTP Server for Windows CE 5.0 ?
> >> >> > Thanks for your answer
> >> >> > Stefano
> >> >> >
> >> >>
> >> >> The FTP server is a component of CE 5.0 and you can add it to your
> >> >> platform simply dragging it from the catalog (it's under "Core OS
> >> >> \Windows CE devices\Communication Services and Networking\Servers").
> >> >>
> >> >>
> >> >> --
> >> >> Valter Minute
> >> >> (the reply address of this message is invalid)
> >> >> (l'indirizzo di reply di questo messaggio non e valido)
> >> >>
> >>
> >>
> >>
>
>
>

Re: FTP Server for Windows CE 5.0 by Voidcoder

Voidcoder
Fri Feb 10 14:28:26 CST 2006

User list can be defined here

[HKEY_LOCAL_MACHINE\COMM\FTPD]
UserList="SomeUser1;SomeUser2;etc"

However there is no way to setup passwords
at build time. You can do it at runtime using
NTLMxxxxx API functions. It was an application
somewhere in the WINCE samples showing
how to setup an account. Somethig like
Remote Network Administrator if I remember
it correctly. Look through the samples.



"Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
news:211361D5-8809-4667-B069-2810EE3A45E2@microsoft.com...
> Thanks !
> IF i want that upload and download only one use from and to my FTP server
> folder, exist an option where I specify User And password ?
>
> "Voidcoder" wrote:
>
>> No, you don't need to re-sysgen when
>> just changing regsitry. It is enough to
>> "Make Run-Time Image".
>>
>>
>> "Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
>> news:BD194C15-D384-4C60-B589-DD071A33DBBC@microsoft.com...
>> > OK, thanks for your answer !
>> > In this way, is it possible download and upload from an to my ftp folder ?
>> > Excuse me, an important question !!! : every times that I modify
>> > project.reg, is necessary recal "sysgen" funtion .. or exist an build in less
>> > time !!???
>> >
>> > "Voidcoder" wrote:
>> >
>> >> Try the following config first:
>> >>
>> >> [HKEY_LOCAL_MACHINE\COMM\FTPD]
>> >> "DefaultDir"="\\"
>> >> "IsEnabled"=dword:1
>> >> "UseAuthentication"=dword:0
>> >> "AllowAnonymous"=dword:1
>> >> "AllowAnonymousUpload"=dword:1
>> >> "AllowAnonymousVroots"=dword:1
>> >>
>> >> This will give you anonymous access
>> >> to the whole filesystem. !BUT! note
>> >> FTP server can not handle properly
>> >> spaces inside the FTP path.
>> >>
>> >>
>> >>
>> >> "Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
>> >> news:2E66F107-919A-415F-A4F2-075474F43F2A@microsoft.com...
>> >> > Thanks I've installed FTP server on my WinCE device.
>> >> > The problem now is that I try to connect to this ftp server from another PC
>> >> > in the same lan, the connection failed "Connessione chiusa dall'host remoto".
>> >> >
>> >> > I've configured my project.reg in this way:
>> >> > [HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
>> >> > @="\\Hard Disk\\Log"
>> >> >
>> >> > where log is an existing folder on my compact flash.
>> >> >
>> >> > [HKEY_LOCAL_MACHINE\Comm\FTPD]
>> >> > "AllowAnonymousVroots"=dword:1
>> >> >
>> >> > Which is the problem ?
>> >> >
>> >> > Thanks
>> >> > Stefano Magni
>> >> >
>> >> > "Valter Minute" wrote:
>> >> >
>> >> >> "=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
>> >> >> <StefanoMagni@discussions.microsoft.com> wrote in news:0E627D2B-01BC-
>> >> >> 4DEA-8863-DAA8B68F24F4@microsoft.com:
>> >> >>
>> >> >> > Hi all,
>> >> >> > Is it possible to know if exist an FTP Server for Windows CE 5.0 ?
>> >> >> > Thanks for your answer
>> >> >> > Stefano
>> >> >> >
>> >> >>
>> >> >> The FTP server is a component of CE 5.0 and you can add it to your
>> >> >> platform simply dragging it from the catalog (it's under "Core OS
>> >> >> \Windows CE devices\Communication Services and Networking\Servers").
>> >> >>
>> >> >>
>> >> >> --
>> >> >> Valter Minute
>> >> >> (the reply address of this message is invalid)
>> >> >> (l'indirizzo di reply di questo messaggio non e valido)
>> >> >>
>> >>
>> >>
>> >>
>>
>>
>>



Re: FTP Server for Windows CE 5.0 by Voidcoder

Voidcoder
Fri Feb 10 14:31:30 CST 2006

Hm, don't have PB around at the moment to verify it. Look through the
"Build OS" menu, it must be something "Copy to release directory".
So run first "Copy to release directory", and then "Make Run-Time Image".


"Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
news:E1AE1588-88DC-4D09-8BF7-0B672D239580@microsoft.com...
> I've tried to modify one setting in project.reg and then Make Run-Time
> Image", but the modify not exist in nk.bin generated. Why ?
>
>
>
> "Voidcoder" wrote:
>
>> No, you don't need to re-sysgen when
>> just changing regsitry. It is enough to
>> "Make Run-Time Image".
>>
>>
>> "Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
>> news:BD194C15-D384-4C60-B589-DD071A33DBBC@microsoft.com...
>> > OK, thanks for your answer !
>> > In this way, is it possible download and upload from an to my ftp folder ?
>> > Excuse me, an important question !!! : every times that I modify
>> > project.reg, is necessary recal "sysgen" funtion .. or exist an build in less
>> > time !!???
>> >
>> > "Voidcoder" wrote:
>> >
>> >> Try the following config first:
>> >>
>> >> [HKEY_LOCAL_MACHINE\COMM\FTPD]
>> >> "DefaultDir"="\\"
>> >> "IsEnabled"=dword:1
>> >> "UseAuthentication"=dword:0
>> >> "AllowAnonymous"=dword:1
>> >> "AllowAnonymousUpload"=dword:1
>> >> "AllowAnonymousVroots"=dword:1
>> >>
>> >> This will give you anonymous access
>> >> to the whole filesystem. !BUT! note
>> >> FTP server can not handle properly
>> >> spaces inside the FTP path.
>> >>
>> >>
>> >>
>> >> "Stefano Magni" <StefanoMagni@discussions.microsoft.com> wrote in message
>> >> news:2E66F107-919A-415F-A4F2-075474F43F2A@microsoft.com...
>> >> > Thanks I've installed FTP server on my WinCE device.
>> >> > The problem now is that I try to connect to this ftp server from another PC
>> >> > in the same lan, the connection failed "Connessione chiusa dall'host remoto".
>> >> >
>> >> > I've configured my project.reg in this way:
>> >> > [HKEY_LOCAL_MACHINE\Comm\FTPD\VROOTS\/Hard Disk/Ftproot/Log]
>> >> > @="\\Hard Disk\\Log"
>> >> >
>> >> > where log is an existing folder on my compact flash.
>> >> >
>> >> > [HKEY_LOCAL_MACHINE\Comm\FTPD]
>> >> > "AllowAnonymousVroots"=dword:1
>> >> >
>> >> > Which is the problem ?
>> >> >
>> >> > Thanks
>> >> > Stefano Magni
>> >> >
>> >> > "Valter Minute" wrote:
>> >> >
>> >> >> "=?Utf-8?B?U3RlZmFubyBNYWduaQ==?="
>> >> >> <StefanoMagni@discussions.microsoft.com> wrote in news:0E627D2B-01BC-
>> >> >> 4DEA-8863-DAA8B68F24F4@microsoft.com:
>> >> >>
>> >> >> > Hi all,
>> >> >> > Is it possible to know if exist an FTP Server for Windows CE 5.0 ?
>> >> >> > Thanks for your answer
>> >> >> > Stefano
>> >> >> >
>> >> >>
>> >> >> The FTP server is a component of CE 5.0 and you can add it to your
>> >> >> platform simply dragging it from the catalog (it's under "Core OS
>> >> >> \Windows CE devices\Communication Services and Networking\Servers").
>> >> >>
>> >> >>
>> >> >> --
>> >> >> Valter Minute
>> >> >> (the reply address of this message is invalid)
>> >> >> (l'indirizzo di reply di questo messaggio non e valido)
>> >> >>
>> >>
>> >>
>> >>
>>
>>
>>



Re: FTP Server for Windows CE 5.0 by zumzuru

zumzuru
Tue Feb 14 03:13:26 CST 2006

What is the default password?
I have succesfully connected to the WinCE ftp server with the user specified
in the UserList registry key but I don't know the password. I've tried to
enter nothing, "password", "null", "default", an email address, the same
string as the username but I can't enter.
Can anyone help?
Thanks

"Voidcoder" wrote:

> User list can be defined here
>
> [HKEY_LOCAL_MACHINE\COMM\FTPD]
> UserList="SomeUser1;SomeUser2;etc"
>
> However there is no way to setup passwords
> at build time. You can do it at runtime using
> NTLMxxxxx API functions. It was an application
> somewhere in the WINCE samples showing
> how to setup an account. Somethig like
> Remote Network Administrator if I remember
> it correctly. Look through the samples.
>
>
>


Re: FTP Server for Windows CE 5.0 by Voidcoder

Voidcoder
Tue Feb 14 15:16:46 CST 2006

Please re-read my post. You don't have a way
to specify the password at build time, and
I think there is no "default" password available.

Try the following. Open your web browser
and type in the address bar:

http:\\Actual_Device_IP_Address\

Does it show something?

"zumzuru" <zumzuru@discussions.microsoft.com> wrote in message
news:D188977B-2237-4E2F-9ACA-40626FE10C33@microsoft.com...
> What is the default password?
> I have succesfully connected to the WinCE ftp server with the user specified
> in the UserList registry key but I don't know the password. I've tried to
> enter nothing, "password", "null", "default", an email address, the same
> string as the username but I can't enter.
> Can anyone help?
> Thanks
>
> "Voidcoder" wrote:
>
>> User list can be defined here
>>
>> [HKEY_LOCAL_MACHINE\COMM\FTPD]
>> UserList="SomeUser1;SomeUser2;etc"
>>
>> However there is no way to setup passwords
>> at build time. You can do it at runtime using
>> NTLMxxxxx API functions. It was an application
>> somewhere in the WINCE samples showing
>> how to setup an account. Somethig like
>> Remote Network Administrator if I remember
>> it correctly. Look through the samples.
>>
>>
>>
>



Re: FTP Server for Windows CE 5.0 by zumzuru

zumzuru
Tue Feb 14 10:10:31 CST 2006

No, the page cannot be displayed.
I've read there is no way to setup pw at runtime but I thought a default one
was provided.

"Voidcoder" wrote:

> Please re-read my post. You don't have a way
> to specify the password at build time, and
> I think there is no "default" password available.
>
> Try the following. Open your web browser
> and type in the address bar:
>
> http:\\Actual_Device_IP_Address\
>
> Does it show something?
>
> "zumzuru" <zumzuru@discussions.microsoft.com> wrote in message
> news:D188977B-2237-4E2F-9ACA-40626FE10C33@microsoft.com...
> > What is the default password?
> > I have succesfully connected to the WinCE ftp server with the user specified
> > in the UserList registry key but I don't know the password. I've tried to
> > enter nothing, "password", "null", "default", an email address, the same
> > string as the username but I can't enter.
> > Can anyone help?
> > Thanks
> >
> > "Voidcoder" wrote:
> >
> >> User list can be defined here
> >>
> >> [HKEY_LOCAL_MACHINE\COMM\FTPD]
> >> UserList="SomeUser1;SomeUser2;etc"
> >>
> >> However there is no way to setup passwords
> >> at build time. You can do it at runtime using
> >> NTLMxxxxx API functions. It was an application
> >> somewhere in the WINCE samples showing
> >> how to setup an account. Somethig like
> >> Remote Network Administrator if I remember
> >> it correctly. Look through the samples.
> >>
> >>
> >>
> >
>
>
>

Re: FTP Server for Windows CE 5.0 by voidcoder

voidcoder
Tue Feb 14 13:24:04 CST 2006

Please try also

http:\\Actual_Device_IP_Address\remoteadmin

Are you using proxy? Make sure you don't use HTTP proxy
for the local addresses.

Btw you can set password by hand using NTLMSetUserInfo
routine. A small 5-min helper app will solve your problems.

BOOL NTLMSetUserInfo(LPTSTR pszUser, LPTSTR pszPassword)




"zumzuru" <zumzuru@discussions.microsoft.com> wrote in message
news:4437652C-BE22-4EF9-B7B3-216B05BDAD17@microsoft.com...
> No, the page cannot be displayed.
> I've read there is no way to setup pw at runtime but I thought a default
> one
> was provided.
>
> "Voidcoder" wrote:
>
>> Please re-read my post. You don't have a way
>> to specify the password at build time, and
>> I think there is no "default" password available.
>>
>> Try the following. Open your web browser
>> and type in the address bar:
>>
>> http:\\Actual_Device_IP_Address\
>>
>> Does it show something?
>>
>> "zumzuru" <zumzuru@discussions.microsoft.com> wrote in message
>> news:D188977B-2237-4E2F-9ACA-40626FE10C33@microsoft.com...
>> > What is the default password?
>> > I have succesfully connected to the WinCE ftp server with the user
>> > specified
>> > in the UserList registry key but I don't know the password. I've tried
>> > to
>> > enter nothing, "password", "null", "default", an email address, the
>> > same
>> > string as the username but I can't enter.
>> > Can anyone help?
>> > Thanks
>> >
>> > "Voidcoder" wrote:
>> >
>> >> User list can be defined here
>> >>
>> >> [HKEY_LOCAL_MACHINE\COMM\FTPD]
>> >> UserList="SomeUser1;SomeUser2;etc"
>> >>
>> >> However there is no way to setup passwords
>> >> at build time. You can do it at runtime using
>> >> NTLMxxxxx API functions. It was an application
>> >> somewhere in the WINCE samples showing
>> >> how to setup an account. Somethig like
>> >> Remote Network Administrator if I remember
>> >> it correctly. Look through the samples.
>> >>
>> >>
>> >>
>> >
>>
>>
>>



Re: FTP Server for Windows CE 5.0 by zumzuru

zumzuru
Wed Feb 22 09:19:32 CST 2006

Ok, I can log in (I've used NTLMSetUserInfo function to create username and
password).
Now I have another problem. When I try to upload a file to the WinCE Ftp
server (or just type dir) from the default wixp ftp client, the following
sentences appear:

"230 User logged in, proceed.
ftp> dir
200 Command okay.
150 File status okay; about to open data connection."

And then nothing else happens!

What do you think the problem is?
Thanks.


"voidcoder" wrote:

> Please try also
>
> http:\\Actual_Device_IP_Address\remoteadmin
>
> Are you using proxy? Make sure you don't use HTTP proxy
> for the local addresses.
>
> Btw you can set password by hand using NTLMSetUserInfo
> routine. A small 5-min helper app will solve your problems.
>
> BOOL NTLMSetUserInfo(LPTSTR pszUser, LPTSTR pszPassword)
>
>
>
>
> "zumzuru" <zumzuru@discussions.microsoft.com> wrote in message
> news:4437652C-BE22-4EF9-B7B3-216B05BDAD17@microsoft.com...
> > No, the page cannot be displayed.
> > I've read there is no way to setup pw at runtime but I thought a default
> > one
> > was provided.
> >
> > "Voidcoder" wrote:
> >
> >> Please re-read my post. You don't have a way
> >> to specify the password at build time, and
> >> I think there is no "default" password available.
> >>
> >> Try the following. Open your web browser
> >> and type in the address bar:
> >>
> >> http:\\Actual_Device_IP_Address\
> >>
> >> Does it show something?
> >>
> >> "zumzuru" <zumzuru@discussions.microsoft.com> wrote in message
> >> news:D188977B-2237-4E2F-9ACA-40626FE10C33@microsoft.com...
> >> > What is the default password?
> >> > I have succesfully connected to the WinCE ftp server with the user
> >> > specified
> >> > in the UserList registry key but I don't know the password. I've tried
> >> > to
> >> > enter nothing, "password", "null", "default", an email address, the
> >> > same
> >> > string as the username but I can't enter.
> >> > Can anyone help?
> >> > Thanks
> >> >

Re: FTP Server for Windows CE 5.0 by Marcelovk

Marcelovk
Wed Feb 22 10:20:13 CST 2006

Try to set ftp in passive or active mode to see what happens (in
Windows XP) This can be done in Advanced tab of Internet Options on the
control Panel.

Also, Try with another ftp client, such as Filezilla or CuteFTP, i
worked with both of them and it went well.

Marcelovk


zumzuru escreveu:

> Ok, I can log in (I've used NTLMSetUserInfo function to create username and
> password).
> Now I have another problem. When I try to upload a file to the WinCE Ftp
> server (or just type dir) from the default wixp ftp client, the following
> sentences appear:
>
> "230 User logged in, proceed.
> ftp> dir
> 200 Command okay.
> 150 File status okay; about to open data connection."
>
> And then nothing else happens!
>
> What do you think the problem is?
> Thanks.
>
>
> "voidcoder" wrote:
>
> > Please try also
> >
> > http:\\Actual_Device_IP_Address\remoteadmin
> >
> > Are you using proxy? Make sure you don't use HTTP proxy
> > for the local addresses.
> >
> > Btw you can set password by hand using NTLMSetUserInfo
> > routine. A small 5-min helper app will solve your problems.
> >
> > BOOL NTLMSetUserInfo(LPTSTR pszUser, LPTSTR pszPassword)
> >
> >
> >
> >
> > "zumzuru" <zumzuru@discussions.microsoft.com> wrote in message
> > news:4437652C-BE22-4EF9-B7B3-216B05BDAD17@microsoft.com...
> > > No, the page cannot be displayed.
> > > I've read there is no way to setup pw at runtime but I thought a default
> > > one
> > > was provided.
> > >
> > > "Voidcoder" wrote:
> > >
> > >> Please re-read my post. You don't have a way
> > >> to specify the password at build time, and
> > >> I think there is no "default" password available.
> > >>
> > >> Try the following. Open your web browser
> > >> and type in the address bar:
> > >>
> > >> http:\\Actual_Device_IP_Address\
> > >>
> > >> Does it show something?
> > >>
> > >> "zumzuru" <zumzuru@discussions.microsoft.com> wrote in message
> > >> news:D188977B-2237-4E2F-9ACA-40626FE10C33@microsoft.com...
> > >> > What is the default password?
> > >> > I have succesfully connected to the WinCE ftp server with the user
> > >> > specified
> > >> > in the UserList registry key but I don't know the password. I've tried
> > >> > to
> > >> > enter nothing, "password", "null", "default", an email address, the
> > >> > same
> > >> > string as the username but I can't enter.
> > >> > Can anyone help?
> > >> > Thanks
> > >> >


Re: FTP Server for Windows CE 5.0 by zumzuru

zumzuru
Thu Feb 23 03:16:26 CST 2006

I tried filezilla and now it works! F**king xp client.
Thanks a lot!

"Marcelovk" wrote:

> Try to set ftp in passive or active mode to see what happens (in
> Windows XP) This can be done in Advanced tab of Internet Options on the
> control Panel.
>
> Also, Try with another ftp client, such as Filezilla or CuteFTP, i
> worked with both of them and it went well.
>
> Marcelovk
>
>
> zumzuru escreveu:
>
> > Ok, I can log in (I've used NTLMSetUserInfo function to create username and
> > password).
> > Now I have another problem. When I try to upload a file to the WinCE Ftp
> > server (or just type dir) from the default wixp ftp client, the following
> > sentences appear:
> >
> > "230 User logged in, proceed.
> > ftp> dir
> > 200 Command okay.
> > 150 File status okay; about to open data connection."
> >
> > And then nothing else happens!
> >
> > What do you think the problem is?
> > Thanks.
> >
> >
> > "voidcoder" wrote:
> >
> > > Please try also
> > >
> > > http:\\Actual_Device_IP_Address\remoteadmin
> > >
> > > Are you using proxy? Make sure you don't use HTTP proxy
> > > for the local addresses.
> > >
> > > Btw you can set password by hand using NTLMSetUserInfo
> > > routine. A small 5-min helper app will solve your problems.
> > >
> > > BOOL NTLMSetUserInfo(LPTSTR pszUser, LPTSTR pszPassword)
> > >
> > >
> > >
> > >
> > > "zumzuru" <zumzuru@discussions.microsoft.com> wrote in message
> > > news:4437652C-BE22-4EF9-B7B3-216B05BDAD17@microsoft.com...
> > > > No, the page cannot be displayed.
> > > > I've read there is no way to setup pw at runtime but I thought a default
> > > > one
> > > > was provided.
> > > >
> > > > "Voidcoder" wrote:
> > > >
> > > >> Please re-read my post. You don't have a way
> > > >> to specify the password at build time, and
> > > >> I think there is no "default" password available.
> > > >>
> > > >> Try the following. Open your web browser
> > > >> and type in the address bar:
> > > >>
> > > >> http:\\Actual_Device_IP_Address\
> > > >>
> > > >> Does it show something?
> > > >>
> > > >> "zumzuru" <zumzuru@discussions.microsoft.com> wrote in message
> > > >> news:D188977B-2237-4E2F-9ACA-40626FE10C33@microsoft.com...
> > > >> > What is the default password?
> > > >> > I have succesfully connected to the WinCE ftp server with the user
> > > >> > specified
> > > >> > in the UserList registry key but I don't know the password. I've tried
> > > >> > to
> > > >> > enter nothing, "password", "null", "default", an email address, the
> > > >> > same
> > > >> > string as the username but I can't enter.
> > > >> > Can anyone help?
> > > >> > Thanks
> > > >> >
>
>