PC Review


Reply
Thread Tools Rate Thread

WebRequest Methods

 
 
Fred Chateau
Guest
Posts: n/a
 
      9th Nov 2007
Does Compact Framework have WebRequest methods, such as HTTPWebRequest and
HTTPWebResponse? If not, how do I talk to a Web Service that doesn't use
standard SOAP protocols?

Also, is there an easy way to separate the documentation for Compact
Framework in Visual Studio, so that you are not sorting through all the
Framework methods that don't apply.

--
Regards,

Fred Chateau
fchateauAtComcastDotNet


 
Reply With Quote
 
 
 
 
Peter Foot [MVP]
Guest
Posts: n/a
 
      9th Nov 2007
Yes it does have HttpWebRequest, but not FtpWebRequest. If you want an
example of a non-soap web service I did some work on the Facebook Developer
Toolkit to add .NETCF support:-
http://www.codeplex.com/FacebookToolkit/

There isn't really a way to filter out the .NETCF only documentation.
However all the supported classes and methods etc should be marked with a
PDA icon when they are supported on devices.

Peter

--
Peter Foot
Microsoft Device Application Development MVP
www.peterfoot.net | www.inthehand.com
In The Hand Ltd - .NET Solutions for Mobility

"Fred Chateau" <fchateau@127.0.0.1> wrote in message
news:(E-Mail Removed)...
> Does Compact Framework have WebRequest methods, such as HTTPWebRequest and
> HTTPWebResponse? If not, how do I talk to a Web Service that doesn't use
> standard SOAP protocols?
>
> Also, is there an easy way to separate the documentation for Compact
> Framework in Visual Studio, so that you are not sorting through all the
> Framework methods that don't apply.
>
> --
> Regards,
>
> Fred Chateau
> fchateauAtComcastDotNet
>
>


 
Reply With Quote
 
Fred Chateau
Guest
Posts: n/a
 
      9th Nov 2007
"Peter Foot [MVP]" <(E-Mail Removed)> wrote ...

> Yes it does have HttpWebRequest, but not FtpWebRequest. If you want an
> example of a non-soap web service I did some work on the Facebook
> Developer Toolkit to add .NETCF support:-
> http://www.codeplex.com/FacebookToolkit/
>
> There isn't really a way to filter out the .NETCF only documentation.
> However all the supported classes and methods etc should be marked with a
> PDA icon when they are supported on devices.


Please excuse my thorough confusion, but this is my first mobile
application.

When I set up a mobile device application in Visual Studio, I get a subset
of Framework assemblies to choose from. I'm assuming this is because the
only assemblies that appear are the Compact Framework assemblies.

There is no System.Net namespace, so how do I reference the proper assembly
containing HTTPWebRequest?

In addition, when I enter HTTPWebRequest in the index for Visual Studio
documentation I get the .NET Framework System.Net namespace, nothing about
Compact Framework.

Obviously I'm missing something here...

--
Regards,

Fred Chateau
fchateauAtComcastDotNet


 
Reply With Quote
 
=?Utf-8?B?U2ltb24gSGFydCBbTVZQXQ==?=
Guest
Posts: n/a
 
      10th Nov 2007
The System.Net set of classes are linked to System.dll.

As Peter said, there is no separate documentation for Compact Framework
classes. Both the desktop and compact framework share the same documentation.

See here:
http://msdn2.microsoft.com/en-us/lib...ebrequest.aspx

You will see at the bottom of the page a section labeled "Version
information". This is where it will tell you what .NET platforms the
particular class is supported on. Likewise, all members will list a PDA icon
if supported on the CF. When clicking the member, it will document all
overloads and whether the overload in question is supported on the CF.

--
Simon Hart
Visual Developer - Device Application Development MVP
http://simonrhart.blogspot.com


"Fred Chateau" wrote:

> "Peter Foot [MVP]" <(E-Mail Removed)> wrote ...
>
> > Yes it does have HttpWebRequest, but not FtpWebRequest. If you want an
> > example of a non-soap web service I did some work on the Facebook
> > Developer Toolkit to add .NETCF support:-
> > http://www.codeplex.com/FacebookToolkit/
> >
> > There isn't really a way to filter out the .NETCF only documentation.
> > However all the supported classes and methods etc should be marked with a
> > PDA icon when they are supported on devices.

>
> Please excuse my thorough confusion, but this is my first mobile
> application.
>
> When I set up a mobile device application in Visual Studio, I get a subset
> of Framework assemblies to choose from. I'm assuming this is because the
> only assemblies that appear are the Compact Framework assemblies.
>
> There is no System.Net namespace, so how do I reference the proper assembly
> containing HTTPWebRequest?
>
> In addition, when I enter HTTPWebRequest in the index for Visual Studio
> documentation I get the .NET Framework System.Net namespace, nothing about
> Compact Framework.
>
> Obviously I'm missing something here...
>
> --
> Regards,
>
> Fred Chateau
> fchateauAtComcastDotNet
>
>
>

 
Reply With Quote
 
Fred Chateau
Guest
Posts: n/a
 
      12th Nov 2007
Sorry. For some reason, I expected to find something at the top of the page.

Thank you.

--
Regards,

Fred Chateau
fchateauAtComcastDotNet

"Simon Hart [MVP]" <(E-Mail Removed)> wrote in message
news:5A4E4B70-B87B-4EB0-90DB-(E-Mail Removed)...
> The System.Net set of classes are linked to System.dll.
>
> As Peter said, there is no separate documentation for Compact Framework
> classes. Both the desktop and compact framework share the same
> documentation.
>
> See here:
> http://msdn2.microsoft.com/en-us/lib...ebrequest.aspx
>
> You will see at the bottom of the page a section labeled "Version
> information". This is where it will tell you what .NET platforms the
> particular class is supported on. Likewise, all members will list a PDA
> icon
> if supported on the CF. When clicking the member, it will document all
> overloads and whether the overload in question is supported on the CF.
>
> --
> Simon Hart
> Visual Developer - Device Application Development MVP
> http://simonrhart.blogspot.com
>
>
> "Fred Chateau" wrote:
>
>> "Peter Foot [MVP]" <(E-Mail Removed)> wrote ...
>>
>> > Yes it does have HttpWebRequest, but not FtpWebRequest. If you want an
>> > example of a non-soap web service I did some work on the Facebook
>> > Developer Toolkit to add .NETCF support:-
>> > http://www.codeplex.com/FacebookToolkit/
>> >
>> > There isn't really a way to filter out the .NETCF only documentation.
>> > However all the supported classes and methods etc should be marked with
>> > a
>> > PDA icon when they are supported on devices.

>>
>> Please excuse my thorough confusion, but this is my first mobile
>> application.
>>
>> When I set up a mobile device application in Visual Studio, I get a
>> subset
>> of Framework assemblies to choose from. I'm assuming this is because the
>> only assemblies that appear are the Compact Framework assemblies.
>>
>> There is no System.Net namespace, so how do I reference the proper
>> assembly
>> containing HTTPWebRequest?
>>
>> In addition, when I enter HTTPWebRequest in the index for Visual Studio
>> documentation I get the .NET Framework System.Net namespace, nothing
>> about
>> Compact Framework.
>>
>> Obviously I'm missing something here...
>>
>> --
>> Regards,
>>
>> Fred Chateau
>> fchateauAtComcastDotNet
>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?TWlrZSBKb25lcw==?=
Guest
Posts: n/a
 
      12th Nov 2007
There are filters you can set in Visual Studio offline Help to eliminate
unsupported members. Here is a topic describing them:

http://msdn2.microsoft.com/en-us/library/ms172548(VS.90).aspx

We are working to get better filter support on MSDN. So far, a .NET CF
filter is only supported in Search for online MSDN documentation.

Mike

"Fred Chateau" wrote:

> Sorry. For some reason, I expected to find something at the top of the page.
>
> Thank you.
>
> --
> Regards,
>
> Fred Chateau
> fchateauAtComcastDotNet
>
> "Simon Hart [MVP]" <(E-Mail Removed)> wrote in message
> news:5A4E4B70-B87B-4EB0-90DB-(E-Mail Removed)...
> > The System.Net set of classes are linked to System.dll.
> >
> > As Peter said, there is no separate documentation for Compact Framework
> > classes. Both the desktop and compact framework share the same
> > documentation.
> >
> > See here:
> > http://msdn2.microsoft.com/en-us/lib...ebrequest.aspx
> >
> > You will see at the bottom of the page a section labeled "Version
> > information". This is where it will tell you what .NET platforms the
> > particular class is supported on. Likewise, all members will list a PDA
> > icon
> > if supported on the CF. When clicking the member, it will document all
> > overloads and whether the overload in question is supported on the CF.
> >
> > --
> > Simon Hart
> > Visual Developer - Device Application Development MVP
> > http://simonrhart.blogspot.com
> >
> >
> > "Fred Chateau" wrote:
> >
> >> "Peter Foot [MVP]" <(E-Mail Removed)> wrote ...
> >>
> >> > Yes it does have HttpWebRequest, but not FtpWebRequest. If you want an
> >> > example of a non-soap web service I did some work on the Facebook
> >> > Developer Toolkit to add .NETCF support:-
> >> > http://www.codeplex.com/FacebookToolkit/
> >> >
> >> > There isn't really a way to filter out the .NETCF only documentation.
> >> > However all the supported classes and methods etc should be marked with
> >> > a
> >> > PDA icon when they are supported on devices.
> >>
> >> Please excuse my thorough confusion, but this is my first mobile
> >> application.
> >>
> >> When I set up a mobile device application in Visual Studio, I get a
> >> subset
> >> of Framework assemblies to choose from. I'm assuming this is because the
> >> only assemblies that appear are the Compact Framework assemblies.
> >>
> >> There is no System.Net namespace, so how do I reference the proper
> >> assembly
> >> containing HTTPWebRequest?
> >>
> >> In addition, when I enter HTTPWebRequest in the index for Visual Studio
> >> documentation I get the .NET Framework System.Net namespace, nothing
> >> about
> >> Compact Framework.
> >>
> >> Obviously I'm missing something here...
> >>
> >> --
> >> Regards,
> >>
> >> Fred Chateau
> >> fchateauAtComcastDotNet
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Create my own asynchronous BeginXXXX methods and EndXXXX methods Varangian Microsoft C# .NET 2 15th May 2008 10:46 PM
plse send troubleshooting methods about windows xp and windowsserver2003 about configuring user rights and security methods to implement touser lakshmikanthkkp456@gmail.com DIY PC 1 11th Apr 2008 10:58 AM
Is it possible to make generalized methods that accept parameterized references to call other methods? Microsoft C# .NET 3 23rd Jun 2007 12:19 AM
proper way to pass pointers by reference from managed c++ methods to native c++ methods Scott McFadden Microsoft VC .NET 1 22nd Apr 2006 07:10 AM
GET & POST Methods in Net.Webrequest MARTIN LANNY Microsoft VB .NET 0 8th Sep 2005 08:20 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:18 PM.