คำถามติดแท็ก apache-flex

9
วิธีส่ง“ Null” (นามสกุลจริง!) ไปยังบริการเว็บ SOAP ใน ActionScript 3
เรามีพนักงานที่มีนามสกุลว่าง แอปพลิเคชันค้นหาพนักงานของเราถูกฆ่าเมื่อนามสกุลนั้นถูกใช้เป็นคำค้นหา (ซึ่งเกิดขึ้นบ่อยครั้งในขณะนี้) ข้อผิดพลาดที่ได้รับ (ขอบคุณ Fiddler!) คือ: <soapenv:Fault> <faultcode>soapenv:Server.userException</faultcode> <faultstring>coldfusion.xml.rpc.CFCInvocationException: [coldfusion.runtime.MissingArgumentException : The SEARCHSTRING parameter to the getFacultyNames function is required but was not passed in.]</faultstring> น่ารักใช่มั้ย stringประเภทพารามิเตอร์ ฉันใช้: WSDL ( SOAP ) Flex 3.5 ActionScript 3 ColdFusion 8 โปรดทราบว่าข้อผิดพลาดจะไม่เกิดขึ้นเมื่อเรียกเว็บเซอร์เป็นวัตถุจากหน้า ColdFusion

11
โหลด JavaHL Library ไม่สำเร็จ
หลังจากอัปเดตเป็น Snow Lion ฉันเริ่มได้รับข้อผิดพลาดเหล่านี้ใน Flash Builder / Eclipse เมื่อพยายามใช้ SVN: Failed to load JavaHL Library. These are the errors that were encountered: no libsvnjavahl-1 in java.library.path /opt/subversion/lib/libsvnjavahl-1.0.dylib: Library not loaded: /usr/lib/libpq.5.dylib Referenced from: /opt/subversion/lib/libsvnjavahl-1.0.dylib Reason: no suitable image found. Did find: /usr/lib/libpq.5.dylib: mach-o, but wrong architecture /usr/lib/libpq.5.dylib: mach-o, but wrong …

8
จะยกเลิกการโหลด ByteArray โดยใช้ Actionscript 3 ได้อย่างไร
ฉันจะยกเลิกการโหลดByteArrayหน่วยความจำโดยใช้ ActionScript 3 ได้อย่างไร ฉันได้ลองทำสิ่งต่อไปนี้แล้ว: // First non-working solution byteArray.length = 0; byteArray = new ByteArray(); // Second non-working solution for ( var i:int=0; i < byteArray.length; i++ ) { byteArray[i] = null; }
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.