08 2008 档案

摘要:, 其实很简单,就是几个地方设置调整 1.Web.config 调整httpRuntime, executionTimeout, maxRequestLength; ... 2. 修改 RosettaNet Gateway WebApp private static HttpWebRequest CreateOuterHttpRequest(Uri url) { ... 阅读全文
posted @ 2008-08-29 07:03 upzone 阅读(434) 评论(0) 推荐(0)
摘要:最近发现在配置RosettaNet时候,总是报错: Value cannot be null.很郁闷,因为没办法调出UI配置Agreement,只好在数据库里修改 TPA 信息. 不死心找bug, 反编译Microsoft.Solutions.BTARN.AdminSnapin.dll, 跟踪调试,发现在 public ProcessConfiguration(string displayCode... 阅读全文
posted @ 2008-08-27 02:05 upzone 阅读(834) 评论(0) 推荐(0)
摘要:如题, 最近迷上了Flex 阅读全文
posted @ 2008-08-24 10:34 upzone 阅读(198) 评论(0) 推荐(0)
摘要:这几天和TI测试时候发现回复的ACK有问题,对方报出来说ServiceHeader里的SignalControl取值有问题 RNIF version 1.1 1.这是收到的数据 Notify of Advance Shipment 3B2_20080821T0514070001278391 Advance Sh... 阅读全文
posted @ 2008-08-22 16:44 upzone 阅读(552) 评论(3) 推荐(0)
摘要:1.Be care of Writing Event Log A maximum size of 32KB can be written to the Windows Event Viewer. Often, XML messages will exceed this size. If a string longer than 32KB is written, an exception will ... 阅读全文
posted @ 2008-08-18 11:16 upzone 阅读(192) 评论(0) 推荐(0)
摘要:昨天装好SQL Server 2008 Enterprise RTM,试用下来感觉挺爽的 发现现在T-SQL可以打点下拉了,不错 但是发现一个问题,如果我先create一个sp,然后调用的话,编辑器总是说could not find store procedure(当然执行没有问题). 关掉重新开一下就好了,不知道怎么解决,也许是一个bug. 还有一个很有用的功能,现在Management Stu... 阅读全文
posted @ 2008-08-14 11:58 upzone 阅读(212) 评论(1) 推荐(0)
摘要:create function f_split(@SourceSql varchar(max),@StrSeprate char(1))returns @temp table(a varchar(100))--实现split功能 的函数as begin --declare @temp as table(a varchar(100))--declare @SourceSql as nvarch... 阅读全文
posted @ 2008-08-03 13:46 upzone 阅读(265) 评论(0) 推荐(0)
摘要:1.unpivot with T(LOTNO, IDName, DepartmentCode, OperateType, State, ModTime, C1_001_001, C1_001_002, [Value], CreateTime, GetTime, FinishTime, Status) as ( select lower(newid()),IDName,@DepartmentCode... 阅读全文
posted @ 2008-08-01 11:48 upzone 阅读(271) 评论(0) 推荐(0)