用Eclipse直接创建的webservice客户端,调用webservice出现异常:Caused
by: org.xml.sax.SAXException: Bad envelope tag: definitionsat
org.apache.axis.message.EnvelopeBuild...
分类:
Web程序 时间:
2014-05-09 12:20:40
阅读次数:
1171
朋友的FTP启动不了,叫我帮他看,启动时出现以下错误信息:500 OOPS: bad bool
value in config file for:
anonymous_enable看似配置文件错误,看了一下配置相应的行:anonymous_enable=NO语句没什么错误,不过把这行注释后又到下一行...
分类:
其他好文 时间:
2014-05-09 08:51:30
阅读次数:
287
CONTAINING_RECORD 这样的一个宏,我看了它的定义,如下:#define
CONTAINING_RECORD(address, type, field) ((type *)( (PCHAR)(address) -
(ULONG_PTR)(&((type*)0)->field)))cla...
分类:
其他好文 时间:
2014-05-09 04:21:01
阅读次数:
330
Steps to Writing Well-—Reading NotesSteps to
Writing Well-—Reading NotesTable of Contents1. Chapter 1 PrewritingThis post is
used to record the learni...
分类:
其他好文 时间:
2014-05-09 03:22:50
阅读次数:
363
ODPS中的TaskContext类有几个write函数write(Record
record)用来输出到默认输出表write(Record record, String label)用来输出的label的输出表write(Record
key, Record value) 用来Map后输出到中间表
分类:
其他好文 时间:
2014-05-09 00:14:26
阅读次数:
335
详情请参考官网:http://www.erlang.org/doc/reference_manual/records.htmlhttp://www.erlang.org/doc/programming_examples/records.html1.
record本质上是tuple.2.获取recor...
分类:
其他好文 时间:
2014-05-07 21:17:40
阅读次数:
362
6.7备注
有时有个像Pasca中“记录”和C中“数据体”的数据类型非常有用。集合一些数据项。一个空类定义可以清楚地显示:
class Employee:
pass
john = Employee() # Create an empty employee record
# Fill the fields of the record
john.name = ’John Doe’
joh...
分类:
编程语言 时间:
2014-05-07 11:25:11
阅读次数:
311
之前在查看v$open_cursor的时候,发现很多相同的record。 让我很疑惑, sid
saddr sql_id 都相同,我就想 这不是一个cursor吗? 那为什么在open_cursor中出现多次?
后来通过别人点拨明白了,这应该是一个相同的SQL语句被 session 打开了并运行了很...
分类:
其他好文 时间:
2014-05-07 01:11:25
阅读次数:
403
awk 每次从数据文件中只读取一行数据进行处理。awk是依照其内置变量 RS(Record
Separator) 的定义将文件中的数据分隔成一行一行的Record。RS 的默认值是 "\n"(换行符),故平常awk中一行数据就是一条 Record。
但有些文件中一条Record涵盖了多行数据,...
分类:
其他好文 时间:
2014-05-04 11:31:49
阅读次数:
308
64位系统中,安装freetype时,出现这个问题。后来发现,此问题进出现在64位系统中。
修复方法:
cd zlib-1.2.3 //进入zlib目录
CFLAGS="-O3 -fPIC" ./configure //使用64位元的方法进行编译
make
make install
然后,进入freetyp...
分类:
其他好文 时间:
2014-05-02 23:50:23
阅读次数:
397