Re: Web service

From: Karl Seguin (_at_)
Date: 02/02/05


Date: Wed, 2 Feb 2005 08:50:38 -0500

Vinay:
To be honest I didn't know...but a google search turned up a couple results
you might find handy:
http://www.devx.com/tips/Tip/17401?trk=DXRSS_DOTNET
and
http://www.codeproject.com/vb/net/web_service_by_proxy.asp

Hope this helps,
Karl

-- 
MY ASP.Net tutorials
http://www.openmymind.net/
"vinay" <vinay@discussions.microsoft.com> wrote in message
news:8A4764EA-CFA0-41F3-8B76-C9FB38307CAA@microsoft.com...
> Karl :
> how to add a web reference when there is a proxy ??
>
> "Karl Seguin" wrote:
>
> > Goober:
> > I got it up and running in about 2 minutes, bet you can do the same.
> >
> > In VS.Net, open a web project (new or existing), right click on
"References"
> > and select "Add Web reference"  enter that URL in the box and hit "go".
> > Click "Add Referenc"
> >
> > in your page, drop a datagrid, set the AutoGenerateColumns to true ala:
> > <asp:DataGrid AutoGenerateColumns="True" Runat="server" ID="grid" />
> >
> > in your codebehind, just do:
> > Protected grid As System.Web.UI.WebControls.DataGrid
> >
> > Private Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs)
> > Handles MyBase.Load
> >    Dim nraila As New org.nraila.www.NRAILANewsandUpdatesSyndication
> >    grid.DataSource = nraila.GetLegislativeUpdates()
> >    grid.DataBind()
> > End Sub
> >
> > and you should be all go :)
> >
> > Karl
> >
> >
> >
> > -- 
> > MY ASP.Net tutorials
> > http://www.openmymind.net/
> >
> >
> > "Goober" <goober@christian.net> wrote in message
> > news:e6EKBrJCFHA.612@TK2MSFTNGP09.phx.gbl...
> > > I am wanting to display the following:
> > >
> > > http://www.nraila.org/Services/LegislativeUpdates.asmx?WSDL
> > >
> > > in a datagrid on a website.
> > >
> > > Any good place to start in figuring out how to do this?  I've found
some
> > > RSS stuff on the web, but it doesnt allow you to adjust the content
like
> > > loading it into a datagrid would do.
> > >
> > > BC
> >
> >
> >


Relevant Pages

  • Documentation suggestions
    ... There are endless minor bugs in the library reference, ... separate tutorials and HOWTOs, and link to them from the LibRef. ... the guide is trying to be very formal; ... Perhaps we need a friendlier counterpart to the RefGuide, ...
    (comp.lang.python)
  • Re: Is this an appropriate use of PUBLIC variables?
    ... MY ASP.Net tutorials ... > Thanks, Karl. ... would grab some variables from an XML file and set some properties. ...
    (microsoft.public.dotnet.framework.aspnet)
  • =?iso-8859-1?q?Tutorials_oder_B=FCcher_zu_Winforms_Datenbindung?=
    ... Mein Thema ist da weder ADO.NET noch das Grundprinzip der Datenbindung, ... - Im Datagrid Werte über eine Combobox aus einer Lookup-Table holen ... Gerne auch Tutorials und Beispielprojekte C# oder VB ist egal. ... Next by Date: ...
    (microsoft.public.de.german.entwickler.dotnet.framework)
  • Re: OT: Nomad programmer needs tools
    ... who tend to prefer books. ... Clicking on a "supplied by base class" link, ... meaningfully be imposed on the reference. ... Sure, for tutorials, paper could be the way to go. ...
    (comp.dsp)
  • Re: View and manipulate signal as vector?
    ... reference or tutorials on this? ... No reference or tutorial, but an insight: ... In sampled time, a signal s_k can be treated as a vector, possibly ... Need to learn how to apply control theory in your embedded system? ...
    (comp.dsp)

Loading