Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Services > How to show xml result from web service in aspx?

Reply
Thread Tools

How to show xml result from web service in aspx?

 
 
staeri@gmail.com
Guest
Posts: n/a
 
      05-05-2006
Hello,

>From a suppliers web service I receive the following result which I

want to show in a aspx page.
How can I do that?

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlnssi="http://www.w3.org/2001/XMLSchema-instance"
xmlnssd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<DataImportCompanyResponse
xmlns="http://www.blablabla.com/Services/DataImport">
<DataImportCompanyResult>
<OrganizationNumber>string</OrganizationNumber>
<FieldNames>
<string>string</string>
<string>string</string>
</FieldNames>
<FieldValues>
<string>string</string>
<string>string</string>
</FieldValues>
<Error>
<ErrorCode>int</ErrorCode>
<ErrorMessage>string</ErrorMessage>
</Error>
</DataImportCompanyResult>
</DataImportCompanyResponse>
</soap:Body>
</soap:Envelope>

Grateful for fast response!

// SE

 
Reply With Quote
 
 
 
Reply

Thread Tools

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
Re: How include a large array? Edward A. Falk C Programming 1 04-04-2013 08:07 PM
Specify schema for web service result in service description billmiami2@netscape.net ASP .Net Web Services 0 01-11-2006 01:10 PM
InvocationTargetException when calling "new Service()" in Axis web service to call another web service Michael Averstegge Java 0 01-10-2006 11:05 PM
1. Ruby result: 101 seconds , 2. Java result:9.8 seconds, 3. Perl result:62 seconds Michael Tan Ruby 32 07-21-2005 03:23 PM
Can someone show me a code example that stuffs data into a web page and scrpaes the result ? Al Dykes Python 1 11-03-2004 09:12 PM



Advertisments
 



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