I'm looking for someone who really succeeded to use ReadFile/WriteFile
calls with a NDISUIO handle on WinCE 5.0 .

It's just to encourage me to continue because I found a lot of messages
to say that it's could be possible but nobody to say "I did it" !

Thanks

Re: NDISUIO ReadFile/WriteFile by Paul

Paul
Wed Jan 04 10:55:18 CST 2006

What are you trying to achieve by doing this? I use NDISUIO a lot, but not
for raw packet dropping or something of that sort...

Paul T.

"Emmanuel Ledoux" <anti4@voila.fr> wrote in message
news:43bbfc3f$0$2212$afc38c87@news.easynet.fr...
> I'm looking for someone who really succeeded to use ReadFile/WriteFile
> calls with a NDISUIO handle on WinCE 5.0 .
>
> It's just to encourage me to continue because I found a lot of messages to
> say that it's could be possible but nobody to say "I did it" !
>
> Thanks



Re: NDISUIO ReadFile/WriteFile by Emmanuel

Emmanuel
Wed Jan 04 15:04:40 CST 2006


You are understood me, I'm trying to have a raw access. But maybe it's
not possible ? Is there a better way to do this, possibly by creating my
own NDIS miniport driver ?

Paul G. Tobey [eMVP] a écrit :
> What are you trying to achieve by doing this? I use NDISUIO a lot, but not
> for raw packet dropping or something of that sort...
>
> Paul T.
>
> "Emmanuel Ledoux" <anti4@voila.fr> wrote in message
> news:43bbfc3f$0$2212$afc38c87@news.easynet.fr...
>
>>I'm looking for someone who really succeeded to use ReadFile/WriteFile
>>calls with a NDISUIO handle on WinCE 5.0 .
>>
>>It's just to encourage me to continue because I found a lot of messages to
>>say that it's could be possible but nobody to say "I did it" !
>>
>>Thanks
>
>
>

Re: NDISUIO ReadFile/WriteFile by Paul

Paul
Wed Jan 04 16:29:00 CST 2006

Since I've never done it, I can't say for sure that it is possible, but I
think that it is. I think that the steps will be: 1. Open NDISUIO driver,
2. send IOCTL_NDISUIO_OPEN_DEVICE message to NDISUIO to get a connection to
the adapter to which you want to send the raw data, 3. using the result of
#2, send IOCTL_NDISUIO_OPEN_WRITE_DEVICE to actually write the bytes.

You're going to have to have some patience and do a lot of experimenting, I
think.

What is the purpose of sending these raw bytes?

Paul T.

"Emmanuel Ledoux" <anti4@voila.fr> wrote in message
news:43bc3867$0$29208$8fcfb975@news.wanadoo.fr...
>
> You are understood me, I'm trying to have a raw access. But maybe it's not
> possible ? Is there a better way to do this, possibly by creating my own
> NDIS miniport driver ?
>
> Paul G. Tobey [eMVP] a écrit :
>> What are you trying to achieve by doing this? I use NDISUIO a lot, but
>> not for raw packet dropping or something of that sort...
>>
>> Paul T.
>>
>> "Emmanuel Ledoux" <anti4@voila.fr> wrote in message
>> news:43bbfc3f$0$2212$afc38c87@news.easynet.fr...
>>
>>>I'm looking for someone who really succeeded to use ReadFile/WriteFile
>>>calls with a NDISUIO handle on WinCE 5.0 .
>>>
>>>It's just to encourage me to continue because I found a lot of messages
>>>to say that it's could be possible but nobody to say "I did it" !
>>>
>>>Thanks
>>
>>


Re: NDISUIO ReadFile/WriteFile by Emmanuel

Emmanuel
Wed Jan 04 17:03:36 CST 2006

Thank you Paul. I already tried a procedure like yours but without
success, this is why I would like that someone confirm me if it's really
possible or not.

Otherwise the purpose is to reach a device by bypassing the TCP/UDP/IP
layer.


Paul G. Tobey [eMVP] a écrit :
> Since I've never done it, I can't say for sure that it is possible, but I
> think that it is. I think that the steps will be: 1. Open NDISUIO driver,
> 2. send IOCTL_NDISUIO_OPEN_DEVICE message to NDISUIO to get a connection to
> the adapter to which you want to send the raw data, 3. using the result of
> #2, send IOCTL_NDISUIO_OPEN_WRITE_DEVICE to actually write the bytes.
>
> You're going to have to have some patience and do a lot of experimenting, I
> think.
>
> What is the purpose of sending these raw bytes?
>
> Paul T.
>
> "Emmanuel Ledoux" <anti4@voila.fr> wrote in message
> news:43bc3867$0$29208$8fcfb975@news.wanadoo.fr...
>
>>You are understood me, I'm trying to have a raw access. But maybe it's not
>>possible ? Is there a better way to do this, possibly by creating my own
>>NDIS miniport driver ?
>>
>>Paul G. Tobey [eMVP] a écrit :
>>
>>>What are you trying to achieve by doing this? I use NDISUIO a lot, but
>>>not for raw packet dropping or something of that sort...
>>>
>>>Paul T.
>>>
>>>"Emmanuel Ledoux" <anti4@voila.fr> wrote in message
>>>news:43bbfc3f$0$2212$afc38c87@news.easynet.fr...
>>>
>>>
>>>>I'm looking for someone who really succeeded to use ReadFile/WriteFile
>>>>calls with a NDISUIO handle on WinCE 5.0 .
>>>>
>>>>It's just to encourage me to continue because I found a lot of messages
>>>>to say that it's could be possible but nobody to say "I did it" !
>>>>
>>>>Thanks
>>>
>>>
>

Re: NDISUIO ReadFile/WriteFile by Paul

Paul
Wed Jan 04 17:25:11 CST 2006

"reach a device"? You see why I'm asking? You want to use a different
protocol stack so that you can connect to a NetWare server? What? Maybe
there's a way that doesn't involve this level of work...

Paul T.

"Emmanuel Ledoux" <anti4@voila.fr> wrote in message
news:43bc544c$0$21292$8fcfb975@news.wanadoo.fr...
> Thank you Paul. I already tried a procedure like yours but without
> success, this is why I would like that someone confirm me if it's really
> possible or not.
>
> Otherwise the purpose is to reach a device by bypassing the TCP/UDP/IP
> layer.
>
>
> Paul G. Tobey [eMVP] a écrit :
>> Since I've never done it, I can't say for sure that it is possible, but I
>> think that it is. I think that the steps will be: 1. Open NDISUIO
>> driver, 2. send IOCTL_NDISUIO_OPEN_DEVICE message to NDISUIO to get a
>> connection to the adapter to which you want to send the raw data, 3.
>> using the result of #2, send IOCTL_NDISUIO_OPEN_WRITE_DEVICE to actually
>> write the bytes.
>>
>> You're going to have to have some patience and do a lot of experimenting,
>> I think.
>>
>> What is the purpose of sending these raw bytes?
>>
>> Paul T.
>>
>> "Emmanuel Ledoux" <anti4@voila.fr> wrote in message
>> news:43bc3867$0$29208$8fcfb975@news.wanadoo.fr...
>>
>>>You are understood me, I'm trying to have a raw access. But maybe it's
>>>not possible ? Is there a better way to do this, possibly by creating my
>>>own NDIS miniport driver ?
>>>
>>>Paul G. Tobey [eMVP] a écrit :
>>>
>>>>What are you trying to achieve by doing this? I use NDISUIO a lot, but
>>>>not for raw packet dropping or something of that sort...
>>>>
>>>>Paul T.
>>>>
>>>>"Emmanuel Ledoux" <anti4@voila.fr> wrote in message
>>>>news:43bbfc3f$0$2212$afc38c87@news.easynet.fr...
>>>>
>>>>
>>>>>I'm looking for someone who really succeeded to use ReadFile/WriteFile
>>>>>calls with a NDISUIO handle on WinCE 5.0 .
>>>>>
>>>>>It's just to encourage me to continue because I found a lot of messages
>>>>>to say that it's could be possible but nobody to say "I did it" !
>>>>>
>>>>>Thanks
>>>>
>>>>
>>