Ask a Question related to ASP.NET Web Services, Design and Development.
-
Amil #1
wsdl changes enum values with [Flags]
If I declare a enum with the [Flags] attribute like:
[Flags]
public enum XXX {a=0,b=1,c=2}
Then I use this enum in a web service, the generated wsdl code (.cs file)
shows:
[System.FlagsAttribute()]
public enum XXX {
a = 1,
b = 2,
c = 4,
}
Since the original XXX enum is in a reusable class, I can't pass the web
service enums to anything that expects/uses the original enum. WHY DOES
WSDL reorder the values!!!!
Amil
Amil Guest
-
WSDL error on Flex app running on JBoss using WSDL to Weblogic
Hello, Not sure if my last post made it so sorry if this ends up being a duplicate post. I have a Flex 1.5 app running on JBoss 4.0.2 which uses... -
Setting Flags
Please bear with a newbie. Ok, I have created a demo CD of all videos using camtasia. All is working great. however there is something very... -
Binding enum values alphabetically to a drop down list
I haven't worked with enum types that much, and I wrote the following code to bind a list of enums to a dropdownlist. Using... -
note 33904 added to function.fdf-enum-values
If you need something like this in a pre 4.3 version, here is a rough hack I was working on before I realized I didn't need this after all. ... -
-w flags on the cd
Hi! When I mount a cdrom, the files on that have 444 (r--r--r--) permissions, and the dirs have 555 (r-xr-xr-x). Ok, but when I copy files from...



Reply With Quote

