ASP.Net client sending XML string

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

  1. #1

    Default ASP.Net client sending XML string


    Hi,


    I am using a .Net (VB.Net) webservice with an ASP.net client to
    generate an xml string from a db and then send it to a web service on
    the same box (client is part of the same service) which then processes
    the xml amd sends a sucess result. I have this part already working.
    However, I would like to be able to send the xml string to a vb.net
    service on a remote server. I have the url of the service I want to
    send the xml string to but I am not sure how to change it from the
    localhost url. Is this done in the WSDL file in the servicename
    elements?


    regards and thanks.

    brendan_gallagher_2001@yahoo.co.uk Guest

  2. Similar Questions and Discussions

    1. securely sending connection string to swf?
      ok so when i need to connect a swf to some sort of data source on the server be it XML, a .NET DLL, a CFC or what ever so that i can load data from...
    2. sending variable for client machine to server or swfonline
      Hi I am creating a chat room where the users avatar is generated from their biofeedback(heart rate and skin conductive levels). To retrieve the...
    3. How do I change data retrieved from db before sending it out to client
      I'm new to dotnet. This might not be the right place to post my question, if so, accept my apoligies and please redirect me to the correct group. ...
    4. Checkboxes for sending progress to the client
      Hello, I'am trying to do the following : I've made a web site on which you can do some tasks on the server and would like to inform the user...
    5. Sending Client Side Event ?
      "Genival" <geniobr@hotmail.com> wrote in message news:e1x0bIOdDHA.2804@TK2MSFTNGP11.phx.gbl... You can't quite do this. The only thing your...
  3. #2

    Default Re: ASP.Net client sending XML string

    You can change it in code when you create your proxy class. The proxy class
    has a Url property that you can set to point to the new web service.

    IHTH

    Jon

    <brendan_gallagher_2001@yahoo.co.uk> wrote in message
    news:1118952677.057084.315030@o13g2000cwo.googlegr oups.com...
    >
    > Hi,
    >
    >
    > I am using a .Net (VB.Net) webservice with an ASP.net client to
    > generate an xml string from a db and then send it to a web service on
    > the same box (client is part of the same service) which then processes
    > the xml amd sends a sucess result. I have this part already working.
    > However, I would like to be able to send the xml string to a vb.net
    > service on a remote server. I have the url of the service I want to
    > send the xml string to but I am not sure how to change it from the
    > localhost url. Is this done in the WSDL file in the servicename
    > elements?
    >
    >
    > regards and thanks.
    >

    CodeMeister 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