Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does jQuery Ajax invoke WCF Services

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

Most people do not understand the knowledge points of this article "jQuery Ajax how to call WCF service", so the editor summarizes the following content, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "how jQuery Ajax calls WCF service" article.

The background needs to support transmitting and receiving data through j son.

First of all, talk about the construction process.

Step by step: to create a WCF service service, you should apply the program item item WCF.

The second step is to create a service building service to make sure that the number of data used is classified.

Using System

Using System.ComponentModel.DataAnnotations

Using System.ComponentModel.DataAnnotations.Schema

Using System.Runtime.Serialization

Namespace WCF

{

[DataContract

[Table ("TUser")

Public class Person

{

[DataMember

Public int ID {get; set;}

[DataMember

[StringLength (100)

Public string LoginName {get; set;}

[DataMember

[StringLength (100)

Public string Password {get; set;}

[DataMember

[DataType (DataType.Date)

Public DateTime CreateDate {get; set;}

}

}

Here, because I use EF to interact with the database, I use Table, StringLength, and DataType. If you don't use EF, you don't have to add these. DataContr

At is used to mark that the current class needs to refer to the DataMember attribute when serializing. If you do not set DataContra t or only set DataMember, then all the common attributes and words

All segments are serialized, otherwise, only serialization with DataMember is set. Note that DataContra t and DataMember have nothing to do with deserialization, that is, when setting the

When a j son object string is passed to the WCF service, it is deserialized regardless of whether there is a DataMember on the field.

The third and third step: create the service contract contract interface

If your service is only used to provide access to some non-WCF clients such as Aj ax, then there is no need for an interface. Add various A ttribute in the interface definition to the service directly.

The definition of the class provided is fine. But in order to make the program accessible through the service interface, you must use the interface, such as the architecture of the front-end MVC+ background WCF

Style.

Using System.Collections.Generic

Using System.ServiceModel

Using System.ServiceModel.Web

Namespace WCF

{

[ServiceContract

Public interface IPersonService

{

[OperationContract

[WebInvoke (Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat =

WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.WrappedRequest)

Person CreatePerson (string loginName, string password)

/ / Service function 2

[OperationContract

[WebGet (RequestFormat = WebMessage)

The above is the content of this article on "how jQuery Ajax invokes WCF Services". I believe we all have a certain understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report