Web Service返回DataTable(zz)

简介:

找了好久才找到的:)
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=154939&SiteID=1

 

DataTable implements IXmlSerializable, and the schema for the DataTable is unique enough allowing wsdl.exe to take advantage of the new feature (SchemaImporterExtension) to generate DataTable on the client.

 

 Here is what you need to do

  1. Create SchemaImporterExtension that will recognize the DataSetSchema:

The V2 Framework uses anonymous complexType for DataSet schema:

< s:complexType >
    
< s:sequence >
      
< s:any minOccurs = " 0 "  maxOccurs = " unbounded "   namespace = " http://www.w3.org/2001/XMLSchema "  processContents = " lax "   />
      
< s:any minOccurs = " 1 "   namespace = " urn:schemas-microsoft-com:xml-diffgram-v1 "  processContents = " lax "   />
    
</ s:sequence >
</ s:complexType >

You need to write the extension that maps the above schema pattern to a DataTable type:

class  DataTableSchemaImporterExtension : SchemaImporterExtension
{
    
// DataTableSchemaImporterExtension is used for WebServices, it is used to recognize the schema for DataTable within wsdl
    Hashtable importedTypes = new Hashtable();

    
public override string ImportSchemaType(string name, string schemaNamespace, XmlSchemaObject context, XmlSchemas schemas, XmlSchemaImporter importer, CodeCompileUnit compileUnit, CodeNamespace mainNamespace, CodeGenerationOptions options, CodeDomProvider codeProvider)
    
{
        IList values 
= schemas.GetSchemas(schemaNamespace);
        
if (values.Count != 1)
        
{
            
return null;
        }

        XmlSchema schema 
= values[0as XmlSchema;
        
if (schema == null)
            
return null;
        XmlSchemaType type 
= (XmlSchemaType)schema.SchemaTypes[new XmlQualifiedName(name, schemaNamespace)];
        
return ImportSchemaType(type, context, schemas, importer, compileUnit, mainNamespace, options, codeProvider);
    }


    
public override string ImportSchemaType(XmlSchemaType type, XmlSchemaObject context, XmlSchemas schemas, XmlSchemaImporter importer, CodeCompileUnit compileUnit, CodeNamespace mainNamespace, CodeGenerationOptions options, CodeDomProvider codeProvider)
    
{
        
if (type == null)
        
{
            
return null;
        }

        
if (importedTypes[type] != null)
        
{
            mainNamespace.Imports.Add(
new CodeNamespaceImport(typeof(DataSet).Namespace));
           compileUnit.ReferencedAssemblies.Add(
"System.Data.dll");
            
return (string)importedTypes[type];
        }

        
if (!(context is XmlSchemaElement))
            
return null;
        
if (type is XmlSchemaComplexType)
        
{
            XmlSchemaComplexType ct 
= (XmlSchemaComplexType)type;
            
if (ct.Particle is XmlSchemaSequence)
            
{
                XmlSchemaObjectCollection items 
= ((XmlSchemaSequence)ct.Particle).Items;
                
if (items.Count == 2 && items[0is XmlSchemaAny && items[1is XmlSchemaAny)
                
{
                    XmlSchemaAny any0 
= (XmlSchemaAny)items[0];
                    XmlSchemaAny any1 
= (XmlSchemaAny)items[1];
                    
if (any0.Namespace == XmlSchema.Namespace && any1.Namespace == "urn:schemas-microsoft-com:xml-diffgram-v1")
                    
{
                        
string typeName = typeof(DataTable).FullName;
                        importedTypes.Add(type, typeName);
                      mainNamespace.Imports.Add(
new CodeNamespaceImport(typeof(DataTable).Namespace));
           compileUnit.ReferencedAssemblies.Add(
"System.Data.dll");
                        
return typeName;
                    }

                }

            }

        }

        
return null;
    }

}

 

  1. Compile and GAC the SchemaImporterExtension
  2. Add it to the existent extensions in machine.config, ysing fully-qualified assembly name
    < system.xml.serialization >
       
    < schemaImporterExtensions >
            
    < add name = " DataTableSchemaImporterExtension "  type = " DataTableSchemaImporterExtension,        </schemaImporterExtensions>
    </ system.xml.serialization >



  
本文转自Silent Void博客园博客,原文链接:http://www.cnblogs.com/happyhippy/archive/2007/05/23/756860.html,如需转载请自行联系原作者

相关文章
【Azure 应用服务】Web App Service 中的 应用程序配置(Application Setting) 怎么获取key vault中的值
【Azure 应用服务】Web App Service 中的 应用程序配置(Application Setting) 怎么获取key vault中的值
164 0
【Azure App Service】PowerShell脚本批量添加IP地址到Web App允许访问IP列表中
Web App取消公网访问后,只允许特定IP能访问Web App。需要写一下段PowerShell脚本,批量添加IP到Web App的允许访问IP列表里!
203 2
|
关系型数据库 MySQL Linux
【Azure 应用服务】在创建Web App Service的时候,选Linux系统后无法使用Mysql in App
【Azure 应用服务】在创建Web App Service的时候,选Linux系统后无法使用Mysql in App
112 0
【Azure 应用服务】在创建Web App Service的时候,选Linux系统后无法使用Mysql in App
|
缓存 JavaScript 前端开发
Web Workers与Service Workers:后台处理与离线缓存
Web Workers 和 Service Workers 是两种在Web开发中处理后台任务和离线缓存的重要技术。它们在工作原理和用途上有显著区别。
249 1
|
Shell PHP Windows
【Azure App Service】Web Job 报错 UNC paths are not supported. Defaulting to Windows directory.
【Azure App Service】Web Job 报错 UNC paths are not supported. Defaulting to Windows directory.
156 0
|
Linux 应用服务中间件 网络安全
【Azure 应用服务】查看App Service for Linux上部署PHP 7.4 和 8.0时,所使用的WEB服务器是什么?
【Azure 应用服务】查看App Service for Linux上部署PHP 7.4 和 8.0时,所使用的WEB服务器是什么?
131 0
【Azure 应用服务】通过 Web.config 开启 dotnet 应用的 stdoutLog 日志,查看App Service 产生500错误的原因
【Azure 应用服务】通过 Web.config 开启 dotnet 应用的 stdoutLog 日志,查看App Service 产生500错误的原因
251 0
|
Linux Python
【Azure 应用服务】Azure App Service For Linux 上实现 Python Flask Web Socket 项目 Http/Https
【Azure 应用服务】Azure App Service For Linux 上实现 Python Flask Web Socket 项目 Http/Https
237 0
|
存储 安全 网络安全
【Azure 环境】使用Azure中的App Service部署Web应用,以Windows为主机系统是否可以启动防病毒,防恶意软件服务呢(Microsoft Antimalware)?
【Azure 环境】使用Azure中的App Service部署Web应用,以Windows为主机系统是否可以启动防病毒,防恶意软件服务呢(Microsoft Antimalware)?
171 0
|
存储 Linux 网络安全
【Azure 应用服务】App Service For Linux 如何在 Web 应用实例上住抓取网络日志
【Azure 应用服务】App Service For Linux 如何在 Web 应用实例上住抓取网络日志
127 0