📄 aboutserver.asp
字号:
<html>
<head>
<title>David Carter-Tod: XML-RPC Server</title>
<meta name="description" content="Using XML within ASP pages">
<meta name="keywords" content="XML, XML-RPC, ASP, Active Server Pages, Internet Explorer, NT, Windows">
<meta name="generator" content="Frontier 6.0 Win95"></head>
<body bgcolor="#FFFFFF" alink="#008000" vlink="#800080" link="#0000FF">
<a href="http://www.chre.vt.edu/dtod/">David Carter-Tod</a> --> <a href="default.asp">XML-RPC</a> --> XML-RPC Server
<HR noshade size=1>
<table border=0 width=100% cellpadding=10 cellspacing=5>
<tr>
<TD width=100 bgcolor="#EEEEEE" valign=top>
<font size="-1">
<h3>XML-RPC</H3>
- <a href="default.asp">XML-RPC</a><P>
- <a href="clientEg/aboutClient.asp">XML-RPC Client</a><P>
- <font color="#800000"><strong><em>XML-RPC Server</em></strong></font><P>
- <a href="download.asp">Download the Code</a><P>
<hr>
- <a href="scriptingNews.asp">Scripting News via XML</a><P>
</font>
</td>
<td valign=top>
<h3>XML-RPC Server</h3>
<hr noshade>
The server side is now (1.0b2) easier than the client. Debugging is probably best done with the kind of thing I have in the <a href="clientEg/debugging.asp">Debugging Client</a> page. The whole server component is wrapped in error handlers, so the client should get back a valid fault structure for any failure.<P>
The whole server page consists of:
<pre>
<!--#include file="xmlrpc.asp" -->
<%
rpcserver
function helloWorld(argArr)
helloWorld = ("Hello, " & argArr(0) & ".")
end function
function superHello(argArr)
superHello = "Hello, " & argArr(0) & ". It's " & argArr(1)
end function
'You can add as many functions as you like.
%>
</pre>
<P>
</td>
</tr>
</table>
<HR noshade size=1>
<p align=right>
E-mail: <a href="mailto:dtod@vt.edu">dtod@vt.edu</a>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -