我有一个从批处理文件在 Windows XP sp3 上运行的 VB.NET 3.5 sp1 控制台应用程序:
"D:\Program Files\PartsDepotJob\PartsDepotJob.exe" >> "D:\Program Files\PartsDepotJob\partdepot.log.txt"
输出如下所示:
2009 年 2 月 10 日上午 9:03:19
处理 PO#:002 中的 2100
创建 OE# 135
处理 PO#:003 中的 2100
创建 OE# 136
DONE
2009 年 2 月 10 日上午 9:03:30
处理 PO#:2100在 002
创建 OE# 137
处理 PO#: 2100 在 003
创建 OE# 138
完成
但是,当我在他们的 Windows 2003 sp2(也带有 .NET 3.5 sp1)框的客户端上运行相同的东西时,输出会出现如下乱码:
2/9/2009 4:03:37 PM
DONE
2/9/2009 4:04:06 PM
DONE
2/9/2009 4:11:01 PM
DONE
2/9/2009 4:30:23 PM
处理 PO# : 1649400 在 702
创建 OE#
1/1/1900 4:30:26 PMCreated OE# 49
1/1/1900 4:30:26 PMProcessing PO#: 1649500 in 702
Created OE# 49
1/1/1900 4:30 :28 PMCreated OE# 50
1/1/1900 4:30:28 PMDONE
即,有时 CrLf 被删除,输出有时似乎以 1/1/1900 {time} 为前缀。
关于可能导致这种情况的任何想法?
相关代码如下:
Imports Wisys.AllSystem
Imports Wisys.Oe
Imports Wisys.Po
Imports System.Configuration
Imports System.Data
Imports System.Linq
Public Class clsPartsDepot
Private wsConn As Wisys.AllSystem.ConnectionInfo = Nothing
Private wsPartDepotSalesOrd As Wisys.Oe.OrderEntryTables = Nothing
Public Function ProcessPartDepotOrders() As Boolean
Dim errMsg As String = ""
Try
Console.WriteLine(Now().ToString)
''//sendBadPOLineEmailtoDepot("test")
Dim dsPO As New Data.DataSet
Dim dbName As String = ""
Dim dbServer As String
Dim partDepotDbName As String = ConfigurationManager.AppSettings("partDepotDbName")
Dim partDepotDbServer As String = ConfigurationManager.AppSettings("partdepotDBserver")
Dim KeyName As String = ""
Dim billToCompany As String ''//, billtoCompAddr1 As String
Dim dtBillTo As DataTable
Dim i As Integer = 1
Dim appkeyQry = From key In ConfigurationManager.AppSettings Where key Like "CompanyDbName*" Select key
''//for each company database look for PO's
For Each KeyName In appkeyQry
dbName = ConfigurationManager.AppSettings(KeyName)
dbServer = ConfigurationManager.AppSettings("CompanyDbServer" & i)
billToCompany = ConfigurationManager.AppSettings(dbName)
dtBillTo = GetCustomer(billToCompany, partDepotDbName, partDepotDbServer)
If dtBillTo.Rows.Count = 0 Then
Throw New Exception("Customer record for company database '" & dbName & "' not found in the parts depot!")
End If
''//billtoCompAddr1 = dtBillTo.Rows(0)("cmp_fadd1")
''//get all the unprocessed, printed PO's from the current company.
dsPO = GetPoDataset(dbName, dbServer)
If IsNothing(dsPO) Then
Console.WriteLine("Error processing part depot: " & errMsg)
Exit Function
End If
Dim itemNum As String, qtyOrd As Double, requestDate As Date, promiseDate As Date, lineNum As String, itemPrice As Double
Dim errNum As Integer = 0
Dim poNum As String = ""
''//for each unprocessed, printed PO in the current company
For Each dr As DataRow In dsPO.Tables(0).Rows
If poNum <> dr("ord_no") Then
Console.WriteLine("Processing PO#: " & dr("ord_no") & " in " & dbName)
If Not poNum = "" Then 'for first run don't close it, not open
wsConn.CloseWisysConnection(TrxEnums.TransactionAction.Commit, errMsg)
wsConn.Dispose()
wsConn = Nothing
End If
wsConn = New Wisys.AllSystem.ConnectionInfo
OpenWiSysConn(partDepotDbName, partDepotDbServer, True)
If Not poNum = "" Then 'for first run don't Dispose it; already equal to nothing
If Not IsNothing(wsPartDepotSalesOrd) Then wsPartDepotSalesOrd.Dispose()
wsPartDepotSalesOrd = Nothing
End If
wsPartDepotSalesOrd = New Wisys.Oe.OrderEntryTables
wsPartDepotSalesOrd.Connection(wsConn, errMsg)
With wsPartDepotSalesOrd.OrderHeader
.UserName = My.User.Name
.Ship_to_name = If(IsDBNull(dr("cmp_name")), "", dr("cmp_name"))
.Ship_to_addr_1 = If(IsDBNull(dr("cmp_fadd1")), "", dr("cmp_fadd1"))
.Ship_to_addr_2 = If(IsDBNull(dr("cmp_fadd2")), "", dr("cmp_fadd2"))
.Ship_to_addr_3 = If(IsDBNull(dr("cmp_fadd3")), "", dr("cmp_fadd3"))
.Ship_to_addr_4 = If(IsDBNull(dr("cmp_fcity")), "", dr("cmp_fcity")) & " , " & _
If(IsDBNull(dr("StateCode")), "", dr("StateCode"))
.Ship_to_country = If(IsDBNull(dr("cmp_fcounty")), "", dr("cmp_fcounty"))
.Oe_po_no = dr("ord_no")
End With
''//wsPartDepotSalesOrd.OrderHeader.Status 'readonly
errNum = wsPartDepotSalesOrd.OrderHeader.Insert(TrxEnums.OeOrderTypeEnum.Order, "", billToCompany, "", dr("ord_dt"), errMsg)
If errNum <> 0 Then
Console.WriteLine("Error Creating OE header:" & errMsg)
Else
Console.WriteLine("Created OE#" & wsPartDepotSalesOrd.OrderHeader.Ord_no)
End If
End If
poNum = dr("ord_no")
''//if error then skip to the next loop iteration until the next PO # and it gets inserted ok
If errNum <> 0 Then
Continue For
End If
lineNum = If(IsDBNull(dr("line_no")), Now(), dr("line_no"))
itemNum = dr("item_no").ToString
qtyOrd = If(IsDBNull(dr("qty_ordered")), 0, CDbl(dr("qty_ordered")))
requestDate = If(IsDBNull(dr("request_dt")), Now(), dr("request_dt"))
promiseDate = If(IsDBNull(dr("promise_dt")), Now(), dr("promise_dt"))
itemPrice = If(IsDBNull(dr("price")), 0, dr("price"))
If itemNum.Length > 0 And qtyOrd <> 0 Then
CreateLine(wsPartDepotSalesOrd, itemNum, qtyOrd, 0, requestDate, requestDate, promiseDate, itemPrice, poNum)
''//mark as processed, even if above fails. any lines that fail will be added to SO in parts depot by hand.
markPoLineAsProcessed(dbName, dbServer, poNum, lineNum)
End If
Next
poNum = ""
i = +1
If Not IsNothing(wsConn) Then
wsConn.CloseWisysConnection(TrxEnums.TransactionAction.Commit, errMsg)
wsConn.Dispose()
End If
If Not IsNothing(wsPartDepotSalesOrd) Then wsPartDepotSalesOrd.Dispose()
wsConn = Nothing
wsPartDepotSalesOrd = Nothing
Next
Console.WriteLine("DONE")
Catch ex As Exception
Console.WriteLine("Exception processing part depot: " & ex.Message)
Finally
Try
''//cleanup
If Not IsNothing(wsPartDepotSalesOrd) Then
wsPartDepotSalesOrd.Dispose()
wsPartDepotSalesOrd = Nothing
End If
If Not IsNothing(wsConn) Then
wsConn.CloseWisysConnection(TrxEnums.TransactionAction.Commit, errMsg)
wsConn.Dispose()
wsConn = Nothing
End If
Catch ex As Exception
Console.WriteLine("Exception exiting part depot: " & ex.Message)
End Try
End Try
End Function
Private Function GetCustomer(ByVal CustomerNum As String, ByVal db As String, ByVal server As String) As DataTable
Dim cn As New SqlClient.SqlConnection
Dim cmd As New SqlClient.SqlCommand
Dim da As New SqlClient.SqlDataAdapter
Dim ds As New DataSet
Try
cn.ConnectionString = "Persist Security Info=False;Integrated Security=true;Initial Catalog=" & db & ";server=" & server
cn.Open()
cmd = cn.CreateCommand
cmd.Parameters.Add(New SqlClient.SqlParameter("@cusnum", CustomerNum))
cmd.CommandText = "select cmp_name,cmp_fadd1,coalesce(debnr,crdnr) as CusNum from dbo.cicmpy where ltrim(debnr) = @cusnum or ltrim(crdnr) = @cusnum"
cmd.CommandType = CommandType.Text
da.SelectCommand = cmd
da.Fill(ds)
If ds.Tables.Count > 0 Then
Return ds.Tables(0)
End If
Return Nothing
Finally
If Not IsNothing(cmd) Then cmd.Dispose()
If Not IsNothing(cn) Then cn.Dispose()
If Not IsNothing(da) Then da.Dispose()
End Try
End Function
Private Function GetPoDataset(ByVal db As String, ByVal server As String) As DataSet
Dim cn As New SqlClient.SqlConnection
Dim ds As New DataSet
Dim dsa As New SqlClient.SqlDataAdapter
Dim cmd As New SqlClient.SqlCommand
Try
Static Dim SQL As String = ConfigurationManager.AppSettings("getPoforPartsDepotSQL")
cn.ConnectionString = "Persist Security Info=False;Integrated Security=true;Initial Catalog=" & db & ";server=" & server
cn.Open()
cmd.Connection = cn
cmd.CommandType = CommandType.Text
cmd.CommandText = SQL
dsa.SelectCommand = cmd
dsa.Fill(ds)
Return ds
Catch
Throw
Finally
If Not IsNothing(ds) Then ds.Dispose()
If Not IsNothing(cmd) Then cmd.Dispose()
If Not IsNothing(cn) Then cn.Close()
If Not IsNothing(cn) Then cn.Dispose()
End Try
End Function
Private Function OpenWiSysConn(ByVal dbName As String, ByVal dbServer As String, ByVal useTran As Boolean) As Boolean
Try
Dim errMsg As String = ""
wsConn.Parameters(dbServer, dbName, "MacMSS")
If wsConn.OpenWisysConnection(useTran, errMsg) <> 0 Then
Console.WriteLine("Error processing part depot: " & errMsg)
Return False
End If
Return True
Catch
Throw
End Try
End Function
Private Function CreateLine(ByVal p_oOEObj As Wisys.Oe.OrderEntryTables, ByVal partNum As String, ByVal qtyOrdered As Double, ByVal qtyToShip As Double, ByVal RequestDate As Date, ByVal RequestShipDate As Date, ByVal PromiseDate As Date, ByVal price As Double, ByVal PONum As String) As Boolean
Dim OeLine As OEORDLIN
Dim p_sRtnErrMsg As String = ""
Dim p_lRtnVal As Long
Dim p_lRtnLineNumber As Long
With p_oOEObj
''//p_lRtnVal = .OrderHeader.Read(TrxEnums.OeOrderTypeEnum.Order, p_sRtnOrder, True, True, True, p_bRtnRecFound, p_sRtnErrMsg)
OeLine = .OrderHeader.OrderLines.Add(TrxEnums.OrderLineType.InventoryItem, partNum.ToUpper, "", qtyOrdered, qtyToShip, price, price, RequestDate, PromiseDate, RequestShipDate, True, p_sRtnErrMsg)
p_lRtnVal = OeLine.Insert(p_lRtnLineNumber, p_sRtnErrMsg)
If p_lRtnVal = 0 Then
Return True
End If
Console.WriteLine("Error creating sales order line# " & p_lRtnLineNumber & ": " & p_sRtnErrMsg)
sendBadPOLineEmailtoDepot("Error creating sales order line for PO# " & PONum & " becuase of an error: " & p_sRtnErrMsg)
Return False
End With
End Function
Private Function markPoLineAsProcessed(ByVal DB As String, ByVal server As String, ByVal poOrdNum As String, ByVal poLineNum As String) As Boolean
Dim cn As New SqlClient.SqlConnection
Dim cmd As New SqlClient.SqlCommand
Try
Static Dim SQL As String = ConfigurationManager.AppSettings("markPoLineAsSendToDepotSQL")
cn.ConnectionString = "Persist Security Info=False;Integrated Security=true;Initial Catalog=" & DB & ";server=" & server & ";"
cn.Open()
cmd.Connection = cn
cmd.Parameters.Add(New SqlClient.SqlParameter("@poOrdNum", poOrdNum))
cmd.Parameters.Add(New SqlClient.SqlParameter("@poLineNum", poLineNum))
cmd.CommandType = CommandType.Text
cmd.CommandText = SQL
cmd.ExecuteNonQuery()
Return True
Catch
Throw
Finally
If Not IsNothing(cmd) Then cmd.Dispose()
If Not IsNothing(cn) Then cn.Dispose()
End Try
End Function
Private Function sendBadPOLineEmailtoDepot(ByVal msgText As String) As Boolean
Try
If ConfigurationManager.AppSettings("EnableSentBadPOMail").ToLower <> "true" Then Return True
Dim sMailServer As String = ConfigurationManager.AppSettings("MailServer")
Dim mySmtpClient As New System.Net.Mail.SmtpClient(sMailServer)
mySmtpClient.UseDefaultCredentials = True
mySmtpClient.DeliveryMethod = Net.Mail.SmtpDeliveryMethod.Network
Dim sTo As String = ConfigurationManager.AppSettings("BadPOMailTo")
Dim sFrom As String = ConfigurationManager.AppSettings("BadPOMailFrom")
mySmtpClient.Send(sFrom, sTo, msgText, msgText)
Return True
Catch ex As Exception
Console.WriteLine("Exception sending sending bad PO line e-mail to depot: " & ex.Message)
Return False
End Try
End Function
End Class
更新:我不希望输出被覆盖,我希望它被附加。因此 >> 而不是 >
更新:控制台窗口中的前景相同,即。如果没有重定向到文件。这是输出到该文件的应用程序,一次只运行一个。客户端数据库中似乎没有任何错误数据。
我相信站点之间的代码是相同的。另外,我确保没有额外的 console.write/writeline 造成问题。
更新:我错过了一些可能相关的代码,我已经更新了上面的代码片段。
更新:我一直在我的客户“手动”运行这个过程,所以我确定只有一个在运行。ProcessPartDepotOrders() 只是从 sub main() 调用一次,所以我看不到有任何线程问题。