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

  1. #1

    Default Test my WebService

    Hi,

    I have a .NET Webservice that has a quite complex object as Requeast
    Parameter.
    Now I want to test my Webservice. I know i could write a small test
    application and can create the request object in code and call the service.
    But I would prefer to have the a xml file containing the data just like it
    will be transmitted in the soap body and then use that file to call the
    webservice.

    How can I do that with .NET?
    Or knows anybody a tool with such a functionality?

    Thanks a lot

    gerhard


    Gerhard Rauter Guest

  2. Similar Questions and Discussions

    1. webservice/webmethod test page sort order
      Dear friends Is it possible to manipulate the test page to put the webmethods in a certain order (alfabethical, ...)? I created a webservice...
    2. How to test Webservice on Web like on local computer?
      Hi, All I created a Webservice locally, and it returns all coustomers names in XML format when I click "Invoke" button. But when I test from the...
    3. Webservice Load Test
      Hi, i have created asp.net webservice which is hosting in the server with 512 MB RAM, single 2.4 Ghz XEON processor with 2 MB SDSL internet line....
    4. Test::Unit non-auto-run test case?
      I'm getting a handle on the Test::Unit library, and the automatically-running test case example was extremely simple to get running, but now I want...
    5. Test::Unit -- multiple errors in test method ???
      Hi ! I have been writing some unit tests with Test::Unit. I've noted that when an assertion fails in a test method, the remaining assertions...
  3. #2

    Default Re: Test my WebService

    I've used XMLSpy from [url]www.altova.com[/url] to test web services. Only thing you
    need is the WSDL. It can be confusing to get it to work. Mainly, open the
    program, click on the "SOAP" menu and then click on "Create new SOAP
    request". Choose your WSDL in the dialog and hit OK. It will generate a
    template for you to change as you like to send to your web service. It
    includes both your SOAP envelope and XML in the SOAP body (I know that is
    more than you want but...). You can then click on the SOAP|Send request to
    server to actually see the response of your web service. They offer a 30
    day trial.

    Not assosiated with them, just have used their product. They need to work
    more on their interface, but once you figure out how to get around, it does
    the job.

    Scott

    "Gerhard Rauter" <gerhard.rauter@swisscom.com> wrote in message
    news:1123154997.74580@ftpgate...
    > Hi,
    >
    > I have a .NET Webservice that has a quite complex object as Requeast
    > Parameter.
    > Now I want to test my Webservice. I know i could write a small test
    > application and can create the request object in code and call the
    > service.
    > But I would prefer to have the a xml file containing the data just like it
    > will be transmitted in the soap body and then use that file to call the
    > webservice.
    >
    > How can I do that with .NET?
    > Or knows anybody a tool with such a functionality?
    >
    > Thanks a lot
    >
    > gerhard
    >
    >

    Wm. Scott Miller 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