0

メモのメール本文に投票用のボタンを作成し、投票のためにメンバーのグループに送信しました。ユーザーが投票すると、スクリプトのアクションごとに実行セキュリティ アラートが表示されます。以下は、[はい] ボタンに配置されたコードです。

Dim session As New notessession
Dim ws As New notesuiworkspace
Dim db As notesdatabase
Dim doc_poll As NotesDocument
Set db = session.getDatabase("Server Name", "ApplicationTesting/Polling.nsf")

Set doc_poll = db.CreateDocument()

Dim uidoc As NotesUIDocument

Set uidoc = ws.CurrentDocument


Dim doc As notesdocument
Set doc = uidoc.Document
If doc.temp(0) <> "yes" Then
    v_val=  ws.Prompt(3,"Family member count","No of Members ?")
    Call doc.ReplaceItemValue("temp","yes")
    Call doc.Save(True,True)
    Call doc.Sign
    Call doc.Save(True,True)
    doc_poll.Form = "Fo-PollReport"
    Call doc_poll.ReplaceItemValue("etxtUserName", session.CommonUserName   )

    Call doc_poll.ReplaceItemValue("etxtMembers", Cint(v_val))
    Call doc_poll.save(True,False)

    Messagebox"Your voting has been sent to HR", 64,"Voting"
Else
    Messagebox  "Your voting is already been sent to HR. Please contact HR directly,in case of any change in voting ",16, "Voting"
End If

実行セキュリティ アラートを回避するにはどうすればよいですか?

4

1 に答える 1

1

ECLアラートを回避するには、コードが署名されている署名がECLリストにあり、アラートにヒットしている関連コマンドを許可する必要があります。

ポリシー(セキュリティ設定IIRC)を介してその署名をプッシュダウンできます。

于 2012-12-07T11:17:23.490 に答える