`
VerRan
  • 浏览: 459225 次
  • 性别: Icon_minigender_1
  • 来自: 陕西.西安
社区版块
存档分类
最新评论

WebServic 相关概念

阅读更多
asynchronous Loosely coupled, occurring at different times. In asynchronous
messaging, a message is sent, and the reply is received some time later as a
separate transaction. See synchronous.
B2B Business-to-business A term used to describe web services between two
businesses, such as between a wholesale supplier and a retail outlet.
B2C Business-to-customer A term used to describe web services between a business
and an end user, such as between a retail outlet and a retail customer.
DOM Document Object Model A standard API for parsing XML data into an
object-tree representation and manipulating the contents of the tree. DOM is
being developed through the World Wide Web Consortium. JAXP provides a
Java programming interface for the DOM API and allows an application to
plug in a compliant DOM parser.
DTD Document Type Definition A simple type of schema that defines the kind
of information in a particular type of XML document.
ebXML Electronic Business XML An open public initiative that is developing
specifications aimed at enabling a single global electronic marketplace based
on using XML and the Internet.
HTML HyperText Markup Language A markup language used for formatting
web pages.
HTTP HyperText Transfer Protocol A protocol for transfering data over the
Internet.
J2EETM JavaTM 2 Platform, Enterprise Edition The Java platform that defines
the standard for multitier enterprise computing. The J2EE platform includes
the J2SE platform.
J2SETM JavaTM 2 Platform, Standard Edition The Java platform for client-side
computing.
JAX Pack The upcoming bundle of XML-related Java APIs (JAXP, JAXB,
JAXM, JAXR, and JAX-RPC). The JAX Pack will be included in the Web
Services Pack.
31 CHAPTER
JAXB JavaTM Architecture for XML Binding The architecture for converting
data in an XML document to objects in the Java programming language.
Given an XML document’s schema (for example, a DTD), the JAXB compiler
will produce classes that correspond to the DTD. The generated classes
include methods that allow building an object tree with XML data based on
the DTD and writing the tree out to a new XML document.
JAXM JavaTM API for XML Messaging The standard API for sending SOAP
messages using the Java programming languge. JAXM is based on SOAP 1.1
with Attachments and provides the ability to layer other profiles, such as
ebXML or BizTalk, on top of it.
JAXP JavaTM API for XML Processing A comprehensive API for parsing and
processing XML documents. JAXP includes support for the Simple API for
XML Parsing (SAX), the Document Object Model (DOM), the eXtensible
Stylesheet Language for Transformations (XSLT), and XML Namespaces.
JAXR JavaTM API for XML Registries The standard API for convenient
access to Internet business registries from the Java platform.
JAX-RPC JavaTM API for XML-based RPC The standard API for sending
XML-based remote procedure calls using the Java programming language.
loosely coupled A term referring to the relationship between two businesses in
which each business has no prior knowledge of, and no dependencies on, the
other business’s information technology infrastructure. XML is the key
enabler that allows loosely coupled businesses to communicate over the Internet
and thereby conduct electronic business with each other.
OASIS Organization for the Advancement of Structured Information Standards
A non-profit consortium promoting the adoption of interoperable specifications
of public standards, such as XML.
registry A web-based service that enables dynamic and loosely coupled business-
to-business collaboration by providing access to shared information. A
registry is sometimes compared to an electronic yellow pages for businesses.
See repository.
repository A data storage facility much like a database. A business registry uses
a repository to store its data, such as information about businesses, XML
descriptions of specific business protocols (for example, RosettaNet PIP3A4
32
for purchase orders), and XML schemas defining the structure of XML documents
exchanged during a supported business process.
schema A specification of the structure of a set of XML documents. A DTD is an
example of a schema.
SAX Simple API for XML Parsing A standard API that defines an event-based
XML parser. SAX was developed by members of the XML-DEV mailing list,
and currently the OASIS standards body is continuing to develop the SAX
API. JAXP provides a Java programming interface for the SAX API and
allows an application to plug in a compliant SAX parser.
synchronous Tightly coupled, occurring at the same time. In synchronous messaging,
a message is sent, and nothing else can happen until the response is
sent back as part of the same process. In other words, the message and reply
are tightly coupled. In the JAXM API, the method call is used for sending a
synchronous message. It sends the message and then blocks until it gets the
reply.
SOAP Simple Object Access Protocol A lightweight XML-based protocol,
developed by the W3C, for the exchange of information in a decentralized,
distributed environment.
UDDI Universal Description, Discovery and Integration An initiative based
on standard registry services that provide Yellow, White, and Green Page
business-centered functionality. It focuses on giving large organizations a way
to reach out to and manage their networks of smaller business customers.
web services Content and software processes that provide services to customers
over the Internet. Web services are delivered over the Internet in a loosely
coupled way, using XML interfaces. For example, a service based on JAXRPC
is a collection of procedures that can be called by remote clients.
Web Services Pack A download that will bundle together key technologies to
simplify building web services using the Java 2 Platform. It includes JavaServerTM
Faces (a standard API for creating Java Web GUIs), Tomcat (an opensource
implementation of JavaServer PagesTM and Java Servlet technologies),
and JAX Pack (a bundle of the the Java APIs for XML).
WSDL Web Services Description Language A language that specifies an
XML format for describing a web service.
33 CHAPTER
WWW World Wide Web The web of systems and the data in them that is the
Internet.
W3C World Wide Web Consortium A group of member organizations developing
standard protocols for web technologies to ensure interoperability of
the Web’s languages and protocols.
XML Extensible Markup Language A markup language that describes the
hierarchical structure of content in a document. Because XML makes data
portable, it has become the standard for sharing data over the Internet between
applications, distributed web services, and trading partners.
XML Namespaces A W3C standard for building documents that reference more
than one DTD, more than one of which might define the same element name.
JAXP provides support for XML Namespaces.
XSL eXtensible Stylesheet Language A language for specifying a stylesheet,
which provides formatting instructions for XML data. To actually transform
an XML document using the stylesheet, an application uses XSLT, which is
an extension of XSL.
XSLT XSL Transformations A language for transforming XML documents to
other XML documents or to documents of other formats, such as HTML. An
application can use XSLT to transform documents according to the formatting
instructions in an XSL stylesheet, but it can also use XSLT independently of
XSL.
 
分享到:
评论

相关推荐

    webservice.概念架设webservice简单实例

    核心概念在于,Webservice提供了一种标准化的方式,让应用程序能够通过互联网互相通信,就像调用本地函数一样。这种服务通常采用SOAP(Simple Object Access Protocol)协议,以XML格式传输数据,确保跨平台的兼容性...

    Webservice.docx

    4. **WebService相关概念**: - WSDL:定义了服务接口,包括消息格式、操作和地址,使得客户端能够理解如何与服务进行交互。 - 发布WebService:通过注解如`@WebService`和`@WebMethod`定义服务接口(SEI,Service...

    WebService教程+实例+代码提示功能WebService实例.rar

    学习WebService,你需要了解SOAP(Simple Object Access Protocol)、WSDL(Web Services Description Language)和UDDI(Universal Description, Discovery and Integration)这三个核心概念。SOAP定义了消息格式,...

    WebService压缩方法整合

    【WebService压缩方法整合】是一个关于如何优化和提升WebService性能的主题,这个主题涵盖了多个关键知识点,包括数据压缩、WebService的基本概念、实例应用以及相关的辅助工具和技术。以下是对这些知识点的详细阐述...

    oracle 调用webservice

    本文将详细介绍 Oracle 调用 Webservice 的实现过程,包括 Webservice 的基本概念、 Java 编写简单的 WebService 实例、Oracle 服务器端配置、加载 JAR 包、测试调用 PHP Webservice 和 Java Webservice 等内容。...

    一个简单的WEBSERVICE 例子

    根据提供的文件信息,本文将详细解释一个简单的 WebService 示例,并深入探讨其中的关键概念和技术细节。 ### 一、WebService 概念 #### 1.1 WebService 定义 WebService 是一种支持通过网络进行调用的服务形式,...

    WebService的相关概念

    【WebService相关概念详解】 WebSocket是一种基于HTTP协议的通信机制,旨在提供实时、双向通信能力,使得客户端和服务器之间可以高效地交换数据。WebSocket允许在单个TCP连接上进行全双工通信,消除了HTTP协议中...

    WebserviceStudio webservice调试工具

    学习使用WebserviceStudio需要对Web服务的基本概念和技术有一定了解,如XML、WSDL、SOAP等。深入掌握这些知识,将有助于更高效地利用WebserviceStudio进行Web服务的调试和测试。 总之,WebserviceStudio是一款实用...

    Idea实现WebService实例

    2. **引入WebService相关库** 在项目中,我们需要引入处理WebService的库,如Apache CXF。可以通过Idea的"File" -> "Project Structure" -> "Modules" -> "Dependencies",然后点击"+"添加JARs或目录,选择CXF的库...

    webservice的原理及概念

    UDDI提供了一种标准化的方式来存储和检索有关WebService的信息,如服务的名称、位置和调用方式等。通过UDDI,企业可以轻松地找到并集成外部的服务到自己的应用系统中,从而实现服务的重用和扩展性。 UDDI的关键组件...

    WebService依赖jar以及xml.zip

    首先,我们要了解WebService的核心概念。WebService是一种跨平台、跨语言的通信方式,基于开放标准如WSDL(Web服务描述语言)、SOAP(简单对象访问协议)和UDDI(统一描述、发现和集成)等。开发者可以使用任何支持...

    webservice测试

    首先,我们需要理解WebService的基本概念。WebService是一种基于XML(Extensible Markup Language)的通信协议,它利用SOAP(Simple Object Access Protocol)进行消息传输,通过WSDL(Web Services Description ...

    WebService电子书6本(PDF)

    它不仅覆盖了WebService的基础概念,如SOAP(简单对象访问协议)和WSDL(Web服务描述语言),还深入探讨了高级特性,如WS-Security和消息级操作。 2. "[www.java1234.com]webService入门教程.pdf": 作为入门教材...

    C#操作webservice(经典入门教程及实例)

    一、WebService 基本概念 WebService 是一种可以接收从 Internet 或者 Intranet 上的其它系统中传递过来的请求,轻量级的独立的通讯技术。WebService 也叫 XML WebService,它通过 SOAP 在 Web 上提供的软件(服务...

    webService

    在"mServer"这个文件名中,我们可以推测这是一个服务器组件,可能与提供WebService接口有关。它可能是一个服务器软件,用于托管和管理WebService,或者是一个特定的服务器配置文件,包含了关于WebService的配置信息...

    webservice 相关资料

    在本压缩包文件中,我们很可能找到了关于Web服务的基础学习资料,这将帮助我们理解WebService的核心概念、工作原理以及如何在实际项目中应用。 Web服务主要基于SOAP(Simple Object Access Protocol)协议,它使用...

    WebService应用实例及教程

    在本文中,我们将深入探讨WebService的核心概念、工作原理以及如何创建和使用WebService的实际案例。 1. WebService核心概念 - WSDL(Web Services Description Language):用于定义服务接口的XML格式规范,描述...

Global site tag (gtag.js) - Google Analytics