473,326 Members | 1,972 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,326 software developers and data experts.

Generate Typed DataSets from WSDL

I have a web reference WSDL, but it doesn't really create an XSD. I'm
trying to generate datasets from the WSDL file but not sure how to do
so.

I successfully created the proxy class, but the WebServices all return/
send domain typed data, so I am seeing if I can turn these "classes"/
WSDL into Typed DataSets.

Anyone have ideas on where to start?

Sep 17 '07 #1
4 4417
Hi,

Is there a particular reason why you want to convert the objects defined in
the WSDL into a Typed Dataset?

Andrew

<ne********@gmail.comwrote in message
news:11**********************@n39g2000hsh.googlegr oups.com...
>I have a web reference WSDL, but it doesn't really create an XSD. I'm
trying to generate datasets from the WSDL file but not sure how to do
so.

I successfully created the proxy class, but the WebServices all return/
send domain typed data, so I am seeing if I can turn these "classes"/
WSDL into Typed DataSets.

Anyone have ideas on where to start?

Sep 18 '07 #2
The only reason would be that I can easily manipulate the data in my
business object layer and also have a way to programatically go
through the dataset returned. This way I can eliminate any runtime
errors.

Also, since the webservice is being called in my data access layer (i
have 3 sources, 2 webservices and 1 database) i figure this is the
easiest way to merge datasets.

On Sep 18, 3:59 am, "Andrew Brook" <yko...@hotmail.comwrote:
Hi,

Is there a particular reason why you want to convert the objects defined in
the WSDL into a Typed Dataset?

Andrew

<newtonw...@gmail.comwrote in message

news:11**********************@n39g2000hsh.googlegr oups.com...
I have a web reference WSDL, but it doesn't really create an XSD. I'm
trying to generate datasets from the WSDL file but not sure how to do
so.
I successfully created the proxy class, but the WebServices all return/
send domain typed data, so I am seeing if I can turn these "classes"/
WSDL into Typed DataSets.
Anyone have ideas on where to start?

Sep 18 '07 #3
Still not sure I understand the problem - Have you been given the WSDL for a
webservice, or did you create the webservice in question yourself?

Andrew

<ne********@gmail.comwrote in message
news:11**********************@n39g2000hsh.googlegr oups.com...
The only reason would be that I can easily manipulate the data in my
business object layer and also have a way to programatically go
through the dataset returned. This way I can eliminate any runtime
errors.

Also, since the webservice is being called in my data access layer (i
have 3 sources, 2 webservices and 1 database) i figure this is the
easiest way to merge datasets.

On Sep 18, 3:59 am, "Andrew Brook" <yko...@hotmail.comwrote:
>Hi,

Is there a particular reason why you want to convert the objects defined
in
the WSDL into a Typed Dataset?

Andrew

<newtonw...@gmail.comwrote in message

news:11**********************@n39g2000hsh.googleg roups.com...
>I have a web reference WSDL, but it doesn't really create an XSD. I'm
trying to generate datasets from the WSDL file but not sure how to do
so.
I successfully created the proxy class, but the WebServices all return/
send domain typed data, so I am seeing if I can turn these "classes"/
WSDL into Typed DataSets.
Anyone have ideas on where to start?


Sep 18 '07 #4
I consumed the WS from an AXIS server (AXIS servers I think have
WSDD). I successfully added the web reference.
Now I am trying to see how I can convert the generated WSDL to a Typed
DataSet.
Now On Sep 18, 8:27 am, "Andrew Brook" <yko...@hotmail.comwrote:
Still not sure I understand the problem - Have you been given the WSDL for a
webservice, or did you create the webservice in question yourself?

Andrew

<newtonw...@gmail.comwrote in message

news:11**********************@n39g2000hsh.googlegr oups.com...
The only reason would be that I can easily manipulate the data in my
business object layer and also have a way to programatically go
through the dataset returned. This way I can eliminate any runtime
errors.
Also, since the webservice is being called in my data access layer (i
have 3 sources, 2 webservices and 1 database) i figure this is the
easiest way to merge datasets.
On Sep 18, 3:59 am, "Andrew Brook" <yko...@hotmail.comwrote:
Hi,
Is there a particular reason why you want to convert the objects defined
in
the WSDL into a Typed Dataset?
Andrew
<newtonw...@gmail.comwrote in message
>news:11**********************@n39g2000hsh.googleg roups.com...
I have a web reference WSDL, but it doesn't really create an XSD. I'm
trying to generate datasets from the WSDL file but not sure how to do
so.
I successfully created the proxy class, but the WebServices all return/
send domain typed data, so I am seeing if I can turn these "classes"/
WSDL into Typed DataSets.
Anyone have ideas on where to start?

Sep 18 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Bj?rn Mor?n | last post by:
I am consuming a web service that returns arrays of classes which can contain other classes (a hierarchy of data). Is there a simple way to move the data into a typed DataSet without writing too...
12
by: anna | last post by:
Map, generate, and maintain 50% of your .NET application code, namely your business and data objects. Use these objects in ASP.NET, Windows Forms, console or services applications. Business and...
1
by: popsovy | last post by:
I am new to the discussion groups and to the .NET world, so this is probably a very basic question.. Is there any quick way in .NET to auto-generate data forms from typed datasets or SQL queries?...
12
by: Whoever | last post by:
Hi, I'm trying to return an XmlDocument or XmlNode converted from a typed dataset. public XmlNode whatever() { MyTypedDataSet ds = new MyTypedDataSet(); return new XmlDataDocument(ds); }
4
by: Ronald S. Cook | last post by:
I've always used untyped datasets. In a Microsoft course, it walks through creating typed datasets and harps on the benefits. It has you drag all these things around ..wizard, wizard, wizard......
21
by: Peter Bradley | last post by:
Hi all, This post is sort of tangentially related to my earlier posts on configuration files for DLLs. Does anyone know how to create typed DataSets using VS2005's new DataSet designer, but...
2
by: DC | last post by:
Hi, I can easily create an xsd from an xml file in Visual Studio 2005. But I want a typed DataSet, so is there an option to create that typed DataSet from the xsd or the xml file? I need many...
4
by: Rachana | last post by:
Hi, I have understood Data Sets but what is meant by typed/untyped/ strongly typed datasets. Can any one explain me or suggest any site/ article, to get these concepts (and their ...
12
by: BillE | last post by:
I'm trying to decide if it is better to use typed datasets or business objects, so I would appreciate any thoughts from someone with more experience. When I use a business object to populate a...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.