摘要:
WSDL 文档仅仅是一个简单的 XML 文档。 它包含一系列描述某个 web service 的定义。 WSDL 文档是利用这些主要的元素来描述某个 web service 的: WSDL 端口 <portType> 元素是最重要的 WSDL 元素。 WSDL 消息 <message> 元素定义一个 阅读全文
摘要:
今天在学习shell脚本的编写,网上看了一个helloworld的栗子: #!/bin/sh #print hello world in the console window a = "hello world" echo $a 在运行的过程中总是会报错,commond not found 因为a = 阅读全文