473,715 Members | 3,751 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Flatten WSDL

The WSDL reflects the full inheritance structure of my program, how can
I flatten the WSDL file?

e.g. if I have a class A with properties PA1 and PA2 and a class B
which in the C# code inherits from A and properties PB1 and PB2, then
the WSDL for a web service containing a method that returns be contains
complexType B with extension base A.
I want to suppress that to hide the inheritance structure of the
classes, also the client of the web service has absolutely no use for
this information as a complextType B containing the properties PA1,
PA2, PB1 and PB2 would be serialized exactly the same way.

Sep 15 '06 #1
4 2646
<jo*******@gmx. dewrote in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
The WSDL reflects the full inheritance structure of my program, how can
I flatten the WSDL file?

e.g. if I have a class A with properties PA1 and PA2 and a class B
which in the C# code inherits from A and properties PB1 and PB2, then
the WSDL for a web service containing a method that returns be contains
complexType B with extension base A.
I want to suppress that to hide the inheritance structure of the
classes, also the client of the web service has absolutely no use for
this information as a complextType B containing the properties PA1,
PA2, PB1 and PB2 would be serialized exactly the same way.
If you write the WSDL and its schemas by hand, you can get exactly what you
want.

John
Sep 16 '06 #2
jo*******@gmx.d e a écrit :
e.g. if I have a class A with properties PA1 and PA2 and a class B
which in the C# code inherits from A and properties PB1 and PB2, then
the WSDL for a web service containing a method that returns be contains
complexType B with extension base A.
I want to suppress that to hide the inheritance structure of the
classes, also the client of the web service has absolutely no use for
this information as a complextType B containing the properties PA1,
PA2, PB1 and PB2 would be serialized exactly the same way.
Maybe you can customize the serialization process (see IXmlSerializabl e).

Mathieu
Sep 18 '06 #3
>
If you write the WSDL and its schemas by hand, you can get exactly what you
want.

John
Thanks for the reply. That brings me to the question: If I have my own
schema how do I include it/use it with my web service. Currently the
web.config just specifies which DLLs to include and the asmx files just
contain one line, e.g.
<%@ WebService Language="C#" CodeBehind="" Class="Runtime" %>

Where would I specify that I want to use my own WSDL file for a web
service?

Sep 21 '06 #4
<jo*******@gmx. dewrote in message
news:11******** **************@ k70g2000cwa.goo glegroups.com.. .
>
>>
If you write the WSDL and its schemas by hand, you can get exactly what
you
want.

John

Thanks for the reply. That brings me to the question: If I have my own
schema how do I include it/use it with my web service. Currently the
web.config just specifies which DLLs to include and the asmx files just
contain one line, e.g.
<%@ WebService Language="C#" CodeBehind="" Class="Runtime" %>

Where would I specify that I want to use my own WSDL file for a web
service?
You'll have to define what you mean by "use my own WSDL".

If you have your own WSDL and you send it to your customers, then that's
what they'll have to use. You then make sure that your web service conforms
the the WSDL, and it will be up to them to make sure that their client
conforms to the WSDL, and then everything will "just work".

;-)
You may mean to ask, "how do I get http://host/Runtime.asmx?WS DL" to return
my own WSDL, and the answer is that I don't know. I turn that feature off:

<configuratio n>
<system.web>
<webServices>
<protocols>
<remove name="Documenta tion" />
<remove name="HttpGet" />
<remove name="HttpPost" />
</protocols>
</webServices>
<system.web>
</configuration>

Good Luck,
John
Sep 21 '06 #5

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

Similar topics

23
3729
by: Francis Avila | last post by:
Below is an implementation a 'flattening' recursive generator (take a nested iterator and remove all its nesting). Is this possibly general and useful enough to be included in itertools? (I know *I* wanted something like it...) Very basic examples: >>> rl = , '678', 9]] >>> list(flatten(rl)) >>> notstring = lambda obj: not isinstance(obj, type(''))
0
1881
by: Francis Avila | last post by:
A few days ago (see the 'itertools.flatten()?' thread from October 28) I became obsessed with refactoring a recursive generator that yielded the leaves of nested iterables. When the dust settled, I had many flatten functions at hand. So I had to time them. Results below. History of the functions (from flattrial.py): # There are three basic features:
10
4144
by: bearophile | last post by:
This is my first Python program (it's an improvement of a recursive version by Luther Blissett). Given a list like this: , ]]] It produces the "flatted" version: I think this operation is quite important, and it's similar to the built-in Mathematica Flatten function: l = {{"a", 2, {}, {3, 5, {4}}}}
3
1351
by: Bengt Richter | last post by:
What am I missing? (this is from 2.4b1, so probably it has been fixed?) def flatten(list): l = for elt in list: ^^^^--must be expecting list instance or other sequence t = type(elt) if t is tuple or t is list: ^^^^--looks like it expects to refer to the type, not the arg
18
2629
by: Ville Vainio | last post by:
For quick-and-dirty stuff, it's often convenient to flatten a sequence (which perl does, surprise surprise, by default): ]]] -> One such implementation is at http://aspn.activestate.com/ASPN/Mail/Message/python-tutor/2302348
181
8836
by: Tom Anderson | last post by:
Comrades, During our current discussion of the fate of functional constructs in python, someone brought up Guido's bull on the matter: http://www.artima.com/weblogs/viewpost.jsp?thread=98196 He says he's going to dispose of map, filter, reduce and lambda. He's going to give us product, any and all, though, which is nice of him.
32
2784
by: Robin Becker | last post by:
Is there some smart/fast way to flatten a level one list using the latest iterator/generator idioms. The problem arises in coneverting lists of (x,y) coordinates into a single list of coordinates eg f() --> or g(,) -->
25
4091
by: beginner | last post by:
Hi, I am wondering how do I 'flatten' a list or a tuple? For example, I'd like to transform or ] to . Another question is how do I pass a tuple or list of all the aurgements of a function to the function. For example, I have all the arguments of a function in a tuple a=(1,2,3). Then I want to pass each item in the tuple to a function f so that I make a function call f(1,2,3). In perl it is a given, but in python, I haven't figured out
1
2181
by: farooq.omar | last post by:
Is there a way to specify to Flatten() method as to how many points it should return. example I just want the Flatten() method to give back 100 points (basicallt gp.PointCount==100). Thanks
0
9340
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9047
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7973
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6646
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5967
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4477
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4738
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3175
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2118
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.