คำถามติดแท็ก securityexception

10
ไม่พบแหล่งที่มา แต่ไม่สามารถค้นหาบันทึกเหตุการณ์บางส่วนหรือทั้งหมดได้
ฉันได้รับข้อยกเว้นต่อไปนี้ ฉันให้การควบคุมบัญชี Asp.net อย่างสมบูรณ์ใน Eventlogs ใน Registry edit [SecurityException: ไม่พบแหล่งที่มา แต่ไม่สามารถค้นหาบันทึกเหตุการณ์บางส่วนหรือทั้งหมดได้ บันทึกที่ไม่สามารถเข้าถึงได้: ความปลอดภัย] System.Diagnostics.EventLog.FindSourceRegistration(String source, String machineName, Boolean readOnly, Boolean wantToCreate) +664 System.Diagnostics.EventLog.SourceExists(String source, String machineName, Boolean wantToCreate) +109 System.Diagnostics.EventLog.SourceExists(String source) +14 Microsoft.ApplicationBlocks.ExceptionManagement.DefaultPublisher.VerifyValidSource() +41 ฉันเดาว่านี่เป็นเพราะปัญหาการกำหนดค่าบนเซิร์ฟเวอร์?

18
Java SecurityException: ข้อมูลผู้ลงนามไม่ตรงกัน
ฉันคอมไพล์ชั้นเรียนของฉันใหม่ตามปกติและทันใดนั้นก็ได้รับข้อความแสดงข้อผิดพลาดดังต่อไปนี้ ทำไม? จะแก้ไขได้อย่างไร? java.lang.SecurityException: class "Chinese_English_Dictionary"'s signer information does not match signer information of other classes in the same package at java.lang.ClassLoader.checkCerts(ClassLoader.java:776)

9
Android: java.lang.SecurityException: Permission Denial: start Intent
ฉันได้สร้างแอปพลิเคชันที่มีกิจกรรม GWVectraNotifier ซึ่งเรียกจากแอปพลิเคชันอื่นเพื่อแสดงการแจ้งเตือน ในกล่องโต้ตอบการแจ้งเตือนจะมีปุ่ม 'แสดง' และปุ่ม 'ปิด' เมื่อคลิกปุ่ม 'แสดง' กิจกรรมที่เกี่ยวข้องจะเริ่มขึ้น ในการตรวจสอบการทำงานของแอปพลิเคชันข้างต้น ฉันเริ่มกิจกรรม GWVectraNotifier จากแอปพลิเคชัน K9Mail บนทริกเกอร์เหตุการณ์เช็คเมล ฉันสามารถเริ่มกิจกรรม GWVectraNotifier ได้สำเร็จ แต่เมื่อคลิกปุ่ม 'แสดง' ฉันจะต้องเริ่มกิจกรรม 'MessageList' ของ K9mail ในการทำเช่นนั้นฉันเขียนรหัสด้านล่าง: Intent i = new Intent(); i.setComponent(new ComponentName("com.fsck.k9", "com.fsck.k9.activity.MessageList")); i.putExtra("account", accUuid); i.putExtra("folder", accFolder); startActivity(i); ซึ่งพ่น: WARN/ActivityManager(59): Permission denied: checkComponentPermission() reqUid=10050 WARN/ActivityManager(59): Permission Denial: starting Intent …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.