以文本方式查看主题 - 中文XML论坛 - 专业的XML技术讨论区 (http://bbs.xml.org.cn/index.asp) -- 『 XML工具及XML开发环境 』 (http://bbs.xml.org.cn/list.asp?boardid=7) ---- xml解析器2005新版本 (http://bbs.xml.org.cn/dispbbs.asp?boardid=7&rootid=&id=15273) |
-- 作者:fhml -- 发布时间:3/9/2005 10:17:00 AM -- xml解析器2005新版本 可以说是xml的解析器了,以下是示范文件 <!-- c2s configuration --> <!-- The process ID file. comment this out if you don't need to know <!-- Router connection configuration --> <!-- Username/password to authenticate as --> <!-- File containing a SSL certificate and private key to use when <!-- Router connection retry --> <!-- If we lost the connection to the router during normal <!-- Sleep for this many seconds before trying attempting a <!-- Log configuration - type is "syslog", "file" or "stdout" --> <!-- If logging to syslog, this is the log facility <!-- Local network configuration --> <!-- IP address to bind to (default: 0.0.0.0) --> <!-- Port to bind to, or 0 to disable unencrypted access to the <!-- File containing a SSL certificate and private key for client <!-- File containing an optional SSL certificate chain file for client <!-- Require STARTTLS. If this is enabled, clients must do STARTTLS <!-- Older versions of jabberd support encrypted client connections <!-- Input/output settings --> <!-- Rate limiting --> <bytes seconds='Y' throttle='Z'>X</bytes> Default Y is 1, default Z is 5. set X to 0 to disable. --> <!-- Maximum connects per second - if more than X connects are <connects seconds='Y' throttle='Z'>X</connects> Default Y is 5, default Z is 5. set X to 0 to disable. --> <!-- IP-based access controls. If a connection IP matches an allow <!-- Allow a network. If the mask isn't specified, it defaults to <!-- Allow a single host --> <!-- Deny a network or a host --> <!-- Timed checks --> Open client connections will be checked every n seconds, and 0 disables all checks. (default: 0) --> <!-- Idle connection checks. Connections that have not sent data for longer than this many 0 disables idle timeouts. (default: 0) --> <!-- Keepalives. 0 disables keepalives. (default: 0) --> </check> <!-- Authentication/registration database configuration --> <!-- Registration configuration --> <!-- Human-readable instructions to be returned to client when <!-- Password change only. When registration is disabled, it may <!-- Available authentication mechanisms --> <!-- These are the traditional Jabber authentication mechanisms. Similarly, if <zerok/> is disabled, then zero-knowledge data <!-- SASL authentication mechanisms. Comment out any that you </mechanisms> <!-- MySQL module configuration --> <!-- Database name --> <!-- Database username and password --> <!-- PostgreSQL module configuration --> <!-- Database name --> <!-- Database username and password --> <!-- Berkeley DB module configuration --> <!-- LDAP module configuration --> <!-- Use LDAP v3 if possible. If disabled, v2 will be used. <!-- Encryption. If enabled, this will create an encrypted channel <!-- Encryption. If enabled, this will create an encrypted channel <!-- LDAP attribute that holds the user ID (default: uid) --> <!-- base DN of the tree. You should specify a DN for each <!-- Pipe module configuration --> </authreg> </c2s>
|
-- 作者:fhml -- 发布时间:3/9/2005 10:21:00 AM -- 执行解析后输出 too few param error usage: parser *.xml use default parser c2s.xml parse ended ├<c2s> │├<id> ││└c2s │├</id> │├<pidfile> ││└/usr/local/var/jabberd/pid/c2s.pid │├</pidfile> │├<router> ││├<ip> │││└127.0.0.1 ││├</ip> ││├<port> │││└5347 ││├</port> ││├<user> │││└root ││├</user> ││├<pass> │││└123456 ││├</pass> ││├<retry> │││├<init> ││││└3 │││├</init> │││├<lost> ││││└3 │││├</lost> │││├<sleep> ││││└2 │││└</sleep> ││└</retry> │├</router> │├<log type='syslog' > ││├<ident> │││└jabberd/c2s ││├</ident> ││├<facility> │││└local3 ││└</facility> │├</log> │├<local> ││├<id> │││└localhost ││├</id> ││├<ip> │││└0.0.0.0 ││├</ip> ││├<port> │││└5222 ││└</port> │├</local> │├<io> ││├<max_fds> │││└1024 ││├</max_fds> ││├<limits> │││├<bytes> ││││└0 │││├</bytes> │││├<connects> ││││└0 │││└</connects> ││├</limits> ││├<access> │││├<order> ││││└allow,deny │││└</order> ││├</access> ││├<check> │││├<interval> ││││└0 │││├</interval> │││├<idle> ││││└0 │││├</idle> │││├<keepalive> ││││└0 │││└</keepalive> ││└</check> │├</io> │├<authreg> ││├<module> │││└mysql ││├</module> ││├<register> │││├<enable/> │││├<instructions> ││││└Enter a username and password to register with this server. │││└</instructions> ││├</register> ││├<mechanisms> │││├<traditional> ││││├<plain/> ││││├<digest/> ││││└<zerok/> │││├</traditional> │││├<sasl> ││││├<plain/> ││││└<digest-md5/> │││└</sasl> ││├</mechanisms> ││├<mysql> │││├<host> ││││└localhost │││├</host> │││├<port> ││││└3306 │││├</port> │││├<dbname> ││││└jabberd2 │││├</dbname> │││├<user> ││││└root │││├</user> │││├<pass> ││││└123456 │││└</pass> ││├</mysql> ││├<pgsql> │││├<host> ││││└localhost │││├</host> │││├<port> ││││└5432 │││├</port> │││├<dbname> ││││└jabberd2 │││├</dbname> │││├<user> ││││└root │││├</user> │││├<pass> ││││└123456 │││└</pass> ││├</pgsql> ││├<db> │││├<path> ││││└/usr/local/var/jabberd/db │││├</path> │││└<sync/> ││├</db> ││├<ldap> │││├<host> ││││└ldap.example.com │││├</host> │││├<port> ││││└389 │││├</port> │││├<uidattr> ││││└uid │││├</uidattr> │││├<basedn realm='company' > ││││└o=Company.com │││├</basedn> │││├<basedn> ││││└o=Example Corp. │││└</basedn> ││├</ldap> ││├<pipe> │││├<exec> ││││└/usr/local/bin/pipe-auth.pl │││└</exec> ││└</pipe> │└</authreg> └</c2s> |
-- 作者:luanyun0901 -- 发布时间:4/1/2005 6:27:00 PM -- 有没有下载,想看 |
-- 作者:54powerman -- 发布时间:4/6/2005 3:46:00 PM -- 在哪里呢?不让下载? |
-- 作者:我血轩辕 -- 发布时间:4/7/2005 9:48:00 AM -- 请问如何才能自动生成DTD?比如说,我在一个表中填入基本的数据类型之后,根据基本数据类型生成DTD。 |
-- 作者:aspx2008 -- 发布时间:4/8/2005 9:00:00 PM -- 真不錯﹗謝謝﹗ |
-- 作者:zhangjohnson -- 发布时间:4/12/2005 8:24:00 PM -- 我的电脑打开某一网站时要求,XML解析器升级,但不知怎么回事,其他网页都能下常打开,我可是对XML解析器一点都有不懂呀!·这可怎么办呀 |
-- 作者:fhml -- 发布时间:4/15/2005 12:28:00 PM -- 看附件 看附件
|
-- 作者:cake -- 发布时间:4/17/2005 3:41:00 PM -- 看来真的是好东西呀 |
-- 作者:summonr -- 发布时间:4/18/2005 12:59:00 AM -- 有下载的吗?找不到附件在哪里啊! |
-- 作者:冰红茶 -- 发布时间:4/21/2005 10:43:00 AM -- wo 要下 |
-- 作者:fhml -- 发布时间:4/21/2005 11:11:00 PM -- 晕,这个上传功能都没成功过 |
-- 作者:smelon -- 发布时间:4/22/2005 5:04:00 PM -- 晕,找了半天没见我以为是我眼花/ |
-- 作者:kenneygg -- 发布时间:5/4/2005 11:54:00 PM -- 我是新手,晕了 |
-- 作者:jikey_zhang -- 发布时间:5/10/2005 4:17:00 PM -- 怎么找不到下载的地方?!! |
-- 作者:liuliu1030 -- 发布时间:5/27/2005 3:24:00 PM -- 没看见 |
-- 作者:luanyun0901 -- 发布时间:5/28/2005 9:12:00 AM -- 楼主,把这个解析器上传来让大家看看吧! |
-- 作者:Dannyzhu -- 发布时间:6/3/2005 9:59:00 AM -- 楼主,把这个解析器上传来让大家看看吧,多谢了。 |
-- 作者:darmy -- 发布时间:6/20/2005 9:43:00 AM -- 怎么样才可以下载???我也想要~ |
-- 作者:darmy -- 发布时间:6/20/2005 9:47:00 AM -- 哪里可以下载啊? |
-- 作者:henanren -- 发布时间:6/22/2005 7:49:00 PM -- 怎么没有下载地址 |
-- 作者:kktall -- 发布时间:6/28/2005 5:04:00 PM -- 你这是个啥东东啊,不是格式化吧, |
W 3 C h i n a ( since 2003 ) 旗 下 站 点 苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》 |
140.625ms |