Sending data with web services

Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default Sending data with web services

    Hi

    I am a newbie with web services, when you want to actually send data with
    web services (instead of downloading data from the server side) what is the
    way to go about?

    ch Jim


    Jim Guest

  2. Similar Questions and Discussions

    1. new to sending data in flash
      Hello! I will be creating a program to use for data entry. I'll be studying zebras in kenya and I won't have the internet there as I'm recording...
    2. sending data from asp to flash
      hi . i need to send a data from asp file into flash. i want to display the asp variable in flash. can any one help with sample
    3. sending and receving data to php
      Hi, I want to send a integer from flash to php. There it is used in a function and the result of the function should be send back to flash. I...
    4. Data stream, sending and receiving data packets
      Is there anyway to manipulate this data after it has been originally created? ie: change title etc
    5. sending mail from web services
      hi there everyone, i'm still a bit of a newbie to web services, but i need to develop a web service that will take in a message and email address,...
  3. #2

    Default RE: Sending data with web services

    Hi Jim,

    Sending data (AKA pasing parameters) is an intrinsic part of method design.
    Most methods take some form of input and produce some form of output.
    This is all data.

    So with web services, you make the input parameters the proper data type -
    a strongly typed interface - and then the requesting party passes that data
    at the time they make a request.

    I hope this helps

    Dan Rogers
    Microsoft Corporation
    --------------------
    >From: "Jim" <peesa_govno@hotmail.com>
    >Subject: Sending data with web services
    >Date: Fri, 24 Dec 2004 05:55:42 +1100
    >Lines: 9
    >X-Priority: 3
    >X-MSMail-Priority: Normal
    >X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
    >X-RFC2646: Format=Flowed; Original
    >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
    >Message-ID: <OifUFES6EHA.2552@TK2MSFTNGP09.phx.gbl>
    >Newsgroups: microsoft.public.dotnet.framework.aspnet.webservic es
    >NNTP-Posting-Host: ppp206-151.lns1.syd3.internode.on.net 203.122.206.151
    >Path:
    cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFT NGP08.phx.gbl!TK2MSFTNGP09
    .phx.gbl
    >Xref: cpmsftngxa10.phx.gbl
    microsoft.public.dotnet.framework.aspnet.webservic es:27375
    >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webservic es
    >
    >Hi
    >
    >I am a newbie with web services, when you want to actually send data with
    >web services (instead of downloading data from the server side) what is
    the
    >way to go about?
    >
    >ch Jim
    >
    >
    >
    Dan Rogers Guest

  4. #3

    Default Re: Sending data with web services

    Hello Jim,

    I think what you are looking for is DIME attachments [0]. You can send data
    as parameters too as suggested by Dan. They need to be base 64 encoded [1]

    [0] - [url]http://www.15seconds.com/issue/021218.htm[/url]
    [1] - [url]http://en.wikipedia.org/wiki/Base64[/url]

    HTH
    Regards,
    Dilip Krishnan
    MCAD, MCSD.net
    dkrishnan at geniant dot com
    [url]http://www.geniant.com[/url]
    > are you saying that they have to call the webservice on my web server?
    > i
    > have to pass the data right not the requesting party?
    > ch Jim
    > "Dan Rogers" <danro@microsoft.com> wrote in message
    > news:5mAwfIq8EHA.3376@cpmsftngxa10.phx.gbl...
    >> Hi Jim,
    >>
    >> Sending data (AKA pasing parameters) is an intrinsic part of method
    >>
    > design.
    >
    >> Most methods take some form of input and produce some form of output.
    >> This is all data.
    >>
    >> So with web services, you make the input parameters the proper data
    >> type - a strongly typed interface - and then the requesting party
    >> passes that
    >>
    > data
    >
    >> at the time they make a request.
    >>
    >> I hope this helps
    >>
    >> Dan Rogers
    >> Microsoft Corporation
    >> --------------------
    >>> From: "Jim" <peesa_govno@hotmail.com>
    >>> Subject: Sending data with web services
    >>> Date: Fri, 24 Dec 2004 05:55:42 +1100
    >>> Lines: 9
    >>> X-Priority: 3
    >>> X-MSMail-Priority: Normal
    >>> X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
    >>> X-RFC2646: Format=Flowed; Original
    >>> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
    >>> Message-ID: <OifUFES6EHA.2552@TK2MSFTNGP09.phx.gbl>
    >>> Newsgroups: microsoft.public.dotnet.framework.aspnet.webservic es
    >>> NNTP-Posting-Host: ppp206-151.lns1.syd3.internode.on.net
    >>> 203.122.206.151
    >>> Path:
    > cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFT NGP08.phx.gbl!TK2MSF
    > TNGP09
    >
    >> phx.gbl
    >>
    >>> Xref: cpmsftngxa10.phx.gbl
    >>>
    >> microsoft.public.dotnet.framework.aspnet.webservic es:27375
    >>
    >>> X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webservic es
    >>>
    >>> Hi
    >>>
    >>> I am a newbie with web services, when you want to actually send data
    >>> with web services (instead of downloading data from the server side)
    >>> what is
    >>>
    >> the
    >>
    >>> way to go about?
    >>>
    >>> ch Jim
    >>>

    Dilip Krishnan Guest

  5. #4

    Default Re: Sending data with web services

    are you saying that they have to call the webservice on my web server? i
    have to pass the data right not the requesting party?
    ch Jim
    "Dan Rogers" <danro@microsoft.com> wrote in message
    news:5mAwfIq8EHA.3376@cpmsftngxa10.phx.gbl...
    > Hi Jim,
    >
    > Sending data (AKA pasing parameters) is an intrinsic part of method
    design.
    > Most methods take some form of input and produce some form of output.
    > This is all data.
    >
    > So with web services, you make the input parameters the proper data type -
    > a strongly typed interface - and then the requesting party passes that
    data
    > at the time they make a request.
    >
    > I hope this helps
    >
    > Dan Rogers
    > Microsoft Corporation
    > --------------------
    > >From: "Jim" <peesa_govno@hotmail.com>
    > >Subject: Sending data with web services
    > >Date: Fri, 24 Dec 2004 05:55:42 +1100
    > >Lines: 9
    > >X-Priority: 3
    > >X-MSMail-Priority: Normal
    > >X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
    > >X-RFC2646: Format=Flowed; Original
    > >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
    > >Message-ID: <OifUFES6EHA.2552@TK2MSFTNGP09.phx.gbl>
    > >Newsgroups: microsoft.public.dotnet.framework.aspnet.webservic es
    > >NNTP-Posting-Host: ppp206-151.lns1.syd3.internode.on.net 203.122.206.151
    > >Path:
    >
    cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFT NGP08.phx.gbl!TK2MSFTNGP09
    > phx.gbl
    > >Xref: cpmsftngxa10.phx.gbl
    > microsoft.public.dotnet.framework.aspnet.webservic es:27375
    > >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webservic es
    > >
    > >Hi
    > >
    > >I am a newbie with web services, when you want to actually send data with
    > >web services (instead of downloading data from the server side) what is
    > the
    > >way to go about?
    > >
    > >ch Jim
    > >
    > >
    > >
    >

    Jim Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139