- 浏览: 4340 次
- 性别:
- 来自: 成都
文章列表
Web Service是建立可互操作的分布式应用程序的新平台。它定义了应用程序中如何在Web上实现互操作性。我们可以使有任何一种喜欢的语言,在任何喜欢的平台上编写Web Service。只要我们可以通过Web service标准对这些服务进行查询和访问。
XML(可扩展的标记语言)是Web Service平台中表示数据的基本格式。XML主要的优点在于它是平台无关的。Web Service定义了一个简单对象访问协议--soap,soap绑定在http协议之上。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>aaa.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" c ...
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DO ...