ONC/RPC XDR fragment length is not a multiple of four

Dear friends,
I am using SUN RPC for the communication between a client and a server. But, sometimes, i am getting an error message saying *"ONC/RPC XDR fragment length is not a multiple of four"*. What could be the reasons for it and how to remedy it ?
Thanks,
Subhash

Yes, the Sun RPC protocol is 4-byte-aligned, as the message suggests/
Do you have some control over the streams that ONC/XDR is using? If so, check your code, flushing, etc. Otherwise this looks like a buf in the library.
I think all your questions about this should be posted where you got the software, not here: this is a general Java programming forum, fundamentally about the JDK.

Similar Messages

  • ONC/RPC portmap failure

    Dear friends,
    The following is the code for a server program which uses Sun RPC.
    package Server;
    import java.io.IOException;
    import java.net.InetAddress;
    import org.acplt.oncrpc.OncRpcAuthStatus;
    import org.acplt.oncrpc.OncRpcAuthType;
    import org.acplt.oncrpc.OncRpcAuthenticationException;
    import org.acplt.oncrpc.OncRpcException;
    import org.acplt.oncrpc.OncRpcTcpClient;
    import org.acplt.oncrpc.XdrBufferDecodingStream;
    import org.acplt.oncrpc.XdrBufferEncodingStream;
    import org.acplt.oncrpc.XdrString;
    import org.acplt.oncrpc.XdrVoid;
    import org.acplt.oncrpc.server.OncRpcCallInformation;
    import org.acplt.oncrpc.server.OncRpcDispatchable;
    import org.acplt.oncrpc.server.OncRpcServerAuthShort;
    import org.acplt.oncrpc.server.OncRpcServerAuthUnix;
    import org.acplt.oncrpc.server.OncRpcUdpServerTransport;
    public class RpcServer implements OncRpcDispatchable {
         public class ShutdownHookThread extends Thread{
              private RpcServer svr;
              public ShutdownHookThread(RpcServer svr) {
                this.svr = svr;
              public void run() {
                System.out.println("Shutdown Hook Thread activated");
                svr.shutdown();
        // Flag to signal shut down of the server.
        public Object leaveTheStage = new Object();
        // Shorthand credential use counter.
        public int shorthandCredCounter = 0;
        public RpcServer()throws OncRpcException, IOException {
             OncRpcUdpServerTransport udpTrans = new OncRpcUdpServerTransport(this, 5555, 0x49679, 1, 8192);
             Runtime.getRuntime().addShutdownHook(new ShutdownHookThread(this));
             udpTrans.register();
             System.out.println("Server started.");
             udpTrans.listen();
             System.out.println("PORT " + udpTrans.getPort());
            // Reality Check: open a connection to the TCP/IP server socket
            // waiting for incoming connection, thus testing proper shutdown
            // behavior later...
            OncRpcTcpClient client = new OncRpcTcpClient(
                InetAddress.getByName("127.0.0.1"), 0x49679, 1, 0);
            // Now wait for the shutdown to become signaled... Note that
            // a simple call to wait() without the outer loop would not be
            // sufficient as we might get spurious wake-ups due to
            // interruptions.
            for ( ;; ) {
                synchronized ( leaveTheStage ) {
                    try {
                        leaveTheStage.wait();
                        break;
                    } catch ( InterruptedException e ) {
            System.out.println("Server shutting down...");
            // Unregister UDP-based transport. Then close it.  This will
            // automatically bring down the thread which handles the
            // UDP transport.
            udpTrans.unregister();
            udpTrans.close();
            System.out.println("Server shut down.");
        // Indicate that the server should be shut down. Sad enough that the
        // Java Environment can not cope with signals. I know that they're not
        // universally available -- but why shouldn't be there a class providing
        // this functionality and in case the runtime environment does not support
        // sending and receiving signals, it either throws an exception or gives
        // some indication otherwise. It wouldn't be bad and we would be sure
        // that the appropriate class is always available.
        public void shutdown() {
            if ( leaveTheStage != null ) {
                System.out.println("Requesting server to shut down...");
                synchronized ( leaveTheStage ) {
                    leaveTheStage.notify();
        // Handle incomming calls...
        public void dispatchOncRpcCall(OncRpcCallInformation call,
                                       int program, int version, int procedure)
               throws OncRpcException, IOException {
            // Spit out some diagnosis messages...
            System.out.println("Incomming call for program "
                               + Integer.toHexString(program)
                               + "; version " + version
                               + "; procedure " + Integer.toHexString(procedure)
                               + "; auth type " + call.callMessage.auth.getAuthenticationType());
           

            // Handle incomming credentials...
            if ( call.callMessage.auth.getAuthenticationType()
                   == OncRpcAuthType.ONCRPC_AUTH_UNIX ) {
                OncRpcServerAuthUnix auth = (OncRpcServerAuthUnix) call.callMessage.auth;
                if ( (auth.uid != 42)
                     && (auth.gid != 815) ) {
                    throw(new OncRpcAuthenticationException(
                                  OncRpcAuthStatus.ONCRPC_AUTH_BADCRED));
                // Suggest shorthand authentication...
                XdrBufferEncodingStream xdr = new XdrBufferEncodingStream(8);
                xdr.beginEncoding(null, 0);
                xdr.xdrEncodeInt(42);
                xdr.xdrEncodeInt(~42);
                xdr.endEncoding();
                // ATTENTION: this will return the *whole* buffer created by the
                // constructor of XdrBufferEncodingStream(len) above. So make sure
                // that you really want to return the whole buffer!
                auth.setShorthandVerifier(xdr.getXdrData());
            } else if ( call.callMessage.auth.getAuthenticationType()
                          == OncRpcAuthType.ONCRPC_AUTH_SHORT ) {
                // Check shorthand credentials.
                OncRpcServerAuthShort auth = (OncRpcServerAuthShort) call.callMessage.auth;
                XdrBufferDecodingStream xdr =
                    new XdrBufferDecodingStream(auth.getShorthandCred());
                xdr.beginDecoding();
                int credv1 = xdr.xdrDecodeInt();
                int credv2 = xdr.xdrDecodeInt();
                xdr.endDecoding();
                if ( credv1 != ~credv2 ) {
                    System.out.println("AUTH_SHORT rejected");
                    throw(new OncRpcAuthenticationException(
                                  OncRpcAuthStatus.ONCRPC_AUTH_REJECTEDCRED));
                if ( (++shorthandCredCounter % 3) == 0 ) {
                    System.out.println("AUTH_SHORT too old");
                    throw(new OncRpcAuthenticationException(
                                  OncRpcAuthStatus.ONCRPC_AUTH_REJECTEDCRED));
                System.out.println("AUTH_SHORT accepted");
            // Now dispatch incomming calls...
            switch ( procedure ) {
            case 0:
                // The usual ONC/RPC PING (aka "NULL" procedure)
                call.retrieveCall(XdrVoid.XDR_VOID);
                call.reply(XdrVoid.XDR_VOID);
                break;
            case 1: {
                // echo string parameter
                XdrString param = new XdrString();
                call.retrieveCall(param);
                System.out.println("Parameter: \"" + param.stringValue() + "\"");
                call.reply(param);
                break;
            case 42:
                // This is a special call to shut down the server...
                if ( (program == 42) && (version == 42) ) {
                    call.retrieveCall(XdrVoid.XDR_VOID);
                    call.reply(XdrVoid.XDR_VOID);
                    shutdown();
                    break;
            // For all unknown calls, send back an error reply.
            default:
                call.failProcedureUnavailable();
        public static void main(String[] args) {
            System.out.println("ServerTest");
            try {
                new RpcServer();
            } catch ( Exception e ) {
               e.printStackTrace(System.out);
    }When i run this program, however, i am getting the following error message
    org.acplt.oncrpc.OncRpcException: ONC/RPC portmap failure .
    I am unable to get what exactly is causing this exception. Could anyone just let me know what exactly is the cause of this error ?
    The output of netstat command showed that port number 5555 is not being used by any service.
    Thanks,
    Subhash

  • How do you allow Unix based ONC  RPC within the security constraints of SGD

    On our new boxes running SGD 4.2.91and up we notice that our applications that uses rpc to communicate no longer work. One of the programs, the arbitrator, (i.e. runs in its on process space, not a linked in library). Therefore, two user will share the same arbitrator (or conversely, only one arbitrator runs per machine). The arbitrator runs without a display (i.e. has no stdout, etc, similar to a daemon). The arbitration process also uses the UNIX kernel resource of shared memory. Here is what I have observed with my testing. The arbitrator routine is successfully registered in the port map ( svc_register). This means it does run. But later when svc_run is called, the process is not found ( actually the select fails), and ps �ef | grep arbitrator indicates that the arbitrator is not running

    Does SGD put any restrictions/constraints on ONC RPC, ie does it attempt to block or authenicate?
    What object list_attributes does the application that luanches arbitrator need?
    Does abribrator need to be in the list of allow applications for the current user? Can it be put in this list and not have an icon on the desktop ( since the user does not manually launch it, and usually is not even aware of it)?
    Or, more generally, how does the enumerated allowed list of executables handle a process that exec/forks a new process? ie does SGD have to know the forked process name, etc?

  • ONC RPC help for student

    Hi
    I really need the help of someone with knowledge of ONC RPC. I have to do a project giving a practical demonstration of RPC but I do not know where to start. I have never programmed in C before but I believe that this may be the way I need to go. What I am aiming for is amending a program that calls a remote procedure that adds 2 numbers together. I am ok with the theoretical stuff about how RPC works but do not even know what sw I need to do a practical demo of it.
    Please, please if anyone can tell me where to start, I have found lots of material but it is a bit complicated with my limited knowledge, I would be grateful of any help
    Thanks
    C

    http://docs.sun.com/db/doc/805-7224

  • Safari will not even load.  everytime I try to open safari it will bounce in the dock once and then the it will not respond

    safari will not even load.  every time I try to open safari it will bounce in the dock once and then the it will not respond

    Linc Davis
    I have the same problem & have just reinstalled the snow leopard OS but safari  still just bounces a couple of times in my original user account and then quits. It does work in a new user  account I set up though. What is the explanation for that ?
    Below is the report generated after re-installing the OS and  restarting the Mac for the first time. The report obviously explains what happened but it is double Dutch to me as I don't understand code at all.
    I would be fascinated to know how this problem has been caused. Is it my fault, or it it a software fault.
    Previously a console report told a completely different story. Here  is that first story from console:-
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] catch_mach_exception_raise_state_identity(): PID: 701 thread: 0xa30f type: 0xa code: 0x1000f8044 codeCnt: 0x2 flavor: 0x1000f8054 old_state: 0x1000f805c old_stateCnt: 0x2c new_state: 0x1000f702c new_stateCnt: 0x1000f7028
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] (com.apple.ReportCrash.Self[701]) Job appears to have crashed: Trace/BPT trap
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] catch_mach_exception_raise_state_identity(): PID: 700 thread: 0xa207 type: 0xa code: 0x7fff5fbfdf14 codeCnt: 0x2 flavor: 0x7fff5fbfdf24 old_state: 0x7fff5fbfdf2c old_stateCnt: 0x2c new_state: 0x7fff5fbfe43c new_stateCnt: 0x7fff5fbfe438
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] (com.apple.ReportCrash[700]) Job appears to have crashed: Trace/BPT trap
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] catch_mach_exception_raise_state_identity(): PID: 697 thread: 0xa20b type: 0xa code: 0x7fff5fbfdf14 codeCnt: 0x2 flavor: 0x7fff5fbfdf24 old_state: 0x7fff5fbfdf2c old_stateCnt: 0x2c new_state: 0x7fff5fbfe43c new_stateCnt: 0x7fff5fbfe438
    03/07/2014 19:46:14 com.apple.launchd.peruser.501[642] ([0x0-0x6e06e].com.apple.Safari[697]) Job appears to have crashed: Segmentation fault
    Then this is the report generated after re-installing the snow leopard OS & starting up for the first time:-
    Process:         Safari [425]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.5 (6533.21.1)
    Build Info:      WebBrowser-75345910~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [368]
    Date/Time:       2014-07-04 23:18:45.788 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          295131 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  448 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      06AFA3DC-CF84-4D45-844A-54B0F6E339C8
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018
    Crashed Thread:  3  WebCore: IconDatabase
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libxar.1.dylib                0x00007fff8447f320 xar_open + 25
    1   com.apple.Safari              0x00000001001807e7 0x100000000 + 1574887
    2   com.apple.Safari              0x00000001001808d6 0x100000000 + 1575126
    3   com.apple.Safari              0x0000000100182b35 0x100000000 + 1583925
    4   com.apple.Safari              0x000000010001493b 0x100000000 + 84283
    5   com.apple.Safari              0x0000000100014561 0x100000000 + 83297
    6   com.apple.Safari              0x0000000100012cc9 0x100000000 + 77001
    7   com.apple.Safari              0x0000000100012ad7 0x100000000 + 76503
    8   com.apple.Safari              0x000000010000b68c 0x100000000 + 46732
    9   com.apple.CoreFoundation      0x00007fff857559fd -[NSSet makeObjectsPerformSelector:] + 205
    10  com.apple.AppKit              0x00007fff8449d85b -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1445
    11  com.apple.AppKit              0x00007fff8449ba91 loadNib + 226
    12  com.apple.AppKit              0x00007fff8449b1a4 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 763
    13  com.apple.AppKit              0x00007fff8449add9 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 326
    14  com.apple.AppKit              0x00007fff8449835b NSApplicationMain + 279
    15  com.apple.Safari              0x0000000100009f1c 0x100000000 + 40732
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x00007fff85263c0a kevent + 10
    1   libSystem.B.dylib             0x00007fff85265add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib             0x00007fff852657b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib             0x00007fff852652de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib             0x00007fff85264c08 _pthread_wqthread + 353
    5   libSystem.B.dylib             0x00007fff85264aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff85264a2a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff85264e3c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff85264aa5 start_wqthread + 13
    Thread 3 Crashed:  WebCore: IconDatabase
    0   com.apple.WebCore             0x00007fff88dcb8a1 ***::HashMap<***::String, WebCore::IconRecord*, ***::StringHash, ***::HashTraits<***::String>, ***::HashTraits<WebCore::IconRecord*> >::get(***::String const&) const + 33
    1   com.apple.WebCore             0x00007fff883eda10 WebCore::IconDatabase::getOrCreateIconRecord(***::String const&) + 48
    2   com.apple.WebCore             0x00007fff883ece85 WebCore::IconDatabase::performURLImport() + 517
    3   com.apple.WebCore             0x00007fff883eb6d8 WebCore::IconDatabase::iconDatabaseSyncThread() + 616
    4   libSystem.B.dylib             0x00007fff85283fd6 _pthread_start + 331
    5   libSystem.B.dylib             0x00007fff85283e89 thread_start + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x00000000000000ff  rbx: 0x0000000100ca3d20  rcx: 0x0000000100c1b550  rdx: 0x0000000100f80e10
      rdi: 0x0000000100c1b538  rsi: 0x0000000100f80e10  rbp: 0x0000000100f80b60  rsp: 0x0000000100f80b20
       r8: 0x0000000100f80d20   r9: 0x0000000000000000  r10: 0x0000000100cc59c4  r11: 0x0000000000000088
      r12: 0x0000000100f80e10  r13: 0x0000000100f80e00  r14: 0x0000000100c1b538  r15: 0x0000000100c64000
      rip: 0x00007fff88dcb8a1  rfl: 0x0000000000010202  cr2: 0x0000000000000018
    Binary Images:
           0x100000000 -        0x1006afff7  com.apple.Safari 5.0.5 (6533.21.1) <09261F3D-C3EC-A309-83F4-DC49CC549176> /Applications/Safari.app/Contents/MacOS/Safari
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80040ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff80080000 -     0x7fff80141fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff80142000 -     0x7fff80440fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff80441000 -     0x7fff80576fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff80577000 -     0x7fff805bfff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff805c0000 -     0x7fff8062afe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8062b000 -     0x7fff80668fff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8084c000 -     0x7fff80966fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff80967000 -     0x7fff809aefff  com.apple.QuickLookFramework 2.3 (327.7) <A8169A96-FAE6-26B2-A9A9-C78BA5787146> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff809af000 -     0x7fff809c0ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff809e6000 -     0x7fff80b0eff7  com.apple.MediaToolbox 0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff80b5a000 -     0x7fff80ba6fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff80ba7000 -     0x7fff80bf0fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff80bf4000 -     0x7fff80bf8ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff80bf9000 -     0x7fff80db7fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff80db8000 -     0x7fff80db9ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff80dd0000 -     0x7fff80df0fff  com.apple.DirectoryService.Framework 3.6 (621.16) <0ED4A74A-F8FB-366D-6588-F13EA397326F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff80e19000 -     0x7fff80eb3fff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff80fd4000 -     0x7fff81056fff  com.apple.QuickLookUIFramework 2.3 (327.7) <73407EAE-6854-E444-37B1-019AAEDEB31B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff81057000 -     0x7fff810a6ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff810a7000 -     0x7fff810a9fff  libRadiance.dylib ??? (???) <BF694EE5-6FDA-553A-CC89-F7135618E9C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff810aa000 -     0x7fff810cbfe7  libPng.dylib ??? (???) <D8EC7740-EE32-865A-2F75-C9EDE2135510> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8112d000 -     0x7fff81177ff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff81271000 -     0x7fff812bcfef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff812bd000 -     0x7fff812cbff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff812cc000 -     0x7fff812ccff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff812cd000 -     0x7fff812ceff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff812f0000 -     0x7fff81315ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8131e000 -     0x7fff8132ffff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff81349000 -     0x7fff8135dff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8135e000 -     0x7fff8137ffff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff816f5000 -     0x7fff81a92fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff81a93000 -     0x7fff81a95fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff81a96000 -     0x7fff81a97fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff81a98000 -     0x7fff81ab1fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff81ab2000 -     0x7fff81b08fe7  libTIFF.dylib ??? (???) <2DBEC120-DAA7-3789-36A2-A205BCDF2D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff81b4d000 -     0x7fff81b70fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff81b71000 -     0x7fff81df3fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff81df4000 -     0x7fff81ea4fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff81ea5000 -     0x7fff81f21ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff81f22000 -     0x7fff81f25fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff81f26000 -     0x7fff82045fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff82245000 -     0x7fff822c2fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff822c3000 -     0x7fff822cefff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff822cf000 -     0x7fff82314fff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff82329000 -     0x7fff824cbfe7  com.apple.WebKit 6534.59 (6534.59.10) <5F60FC29-1962-988F-96D1-A72A61F8C4EB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff824cc000 -     0x7fff824cdfff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff82677000 -     0x7fff826caff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff826cb000 -     0x7fff82ed5fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff82ed6000 -     0x7fff82f01ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff82f02000 -     0x7fff83345fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff83346000 -     0x7fff83423fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff83424000 -     0x7fff834b0fef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff834b1000 -     0x7fff834c3fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff834c4000 -     0x7fff83505fef  com.apple.CoreMedia 0.484.60 (484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff83506000 -     0x7fff83506ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff83507000 -     0x7fff83829fff  com.apple.JavaScriptCore 6534.59 (6534.59.11) <992F7C39-0ADA-C5EF-0405-55F81A5B2F76> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8382a000 -     0x7fff8382aff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff838ce000 -     0x7fff83936fff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff83a98000 -     0x7fff83a9dfff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff83ad9000 -     0x7fff83ae3fff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff83ae4000 -     0x7fff83b63fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff83b64000 -     0x7fff83b6bfff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff83b6c000 -     0x7fff83ba6fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
        0x7fff83ba7000 -     0x7fff83bcffff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff83bd0000 -     0x7fff84017fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff84018000 -     0x7fff8412ffef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff8417a000 -     0x7fff8417aff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8427c000 -     0x7fff842c5ff7  com.apple.securityinterface 4.0.1 (40418.0.1) <9AF33A9F-2D8C-2AE6-868C-EA836C861031> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff842c6000 -     0x7fff84301fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff84310000 -     0x7fff8439ffff  com.apple.PDFKit 2.5.5 (2.5.5) <18C99AB3-DACC-3654-200E-0BD09EBFB374> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff843a0000 -     0x7fff84402fe7  com.apple.datadetectorscore 2.0 (80.7) <09ED086F-438D-852B-1D13-367A36BCFF90> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff84403000 -     0x7fff84432ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff84433000 -     0x7fff84442fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff84443000 -     0x7fff8447cff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff8447d000 -     0x7fff8448cfff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff84494000 -     0x7fff84494ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff84495000 -     0x7fff84495ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff84496000 -     0x7fff84e90ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff84e91000 -     0x7fff84e9efe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff84e9f000 -     0x7fff84eaefef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84eaf000 -     0x7fff84ec6fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff84ec7000 -     0x7fff84ecaff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff84ecb000 -     0x7fff84ed6ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff84f8d000 -     0x7fff84fbefff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff84fbf000 -     0x7fff8503cfef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8508d000 -     0x7fff850cefff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8511a000 -     0x7fff85186fe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff85187000 -     0x7fff85249fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8524a000 -     0x7fff8540bfef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff8540c000 -     0x7fff85411fff  libGIF.dylib ??? (???) <3BAD0DE8-8151-68B0-2244-A4541C738972> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff85417000 -     0x7fff8544dff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8544e000 -     0x7fff85507fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff85508000 -     0x7fff8551dff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8551e000 -     0x7fff85532fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff85533000 -     0x7fff8563dff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff856f6000 -     0x7fff8586dfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8587a000 -     0x7fff858f8ff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff858f9000 -     0x7fff8593afef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8593b000 -     0x7fff85b7dfe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff85b9a000 -     0x7fff85c50ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff85c51000 -     0x7fff85cc2ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff85cc3000 -     0x7fff85cc6ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff85cf7000 -     0x7fff85cfdff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff85d04000 -     0x7fff85e74fff  com.apple.QTKit 7.7 (1800) <10F1DA07-ED26-C103-EE0A-515898C1DB19> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff85e75000 -     0x7fff85e75ff7  com.apple.quartzframework 1.5 (1.5) <5BFE5998-26D9-0AF1-1522-55C78E41F778> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff85e76000 -     0x7fff860ffff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff86100000 -     0x7fff86155ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff86156000 -     0x7fff8616cfe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8616d000 -     0x7fff86869ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8686a000 -     0x7fff8693efe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff869f7000 -     0x7fff86a02fff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff86a0c000 -     0x7fff86f12ff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff86f36000 -     0x7fff87170fef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff87171000 -     0x7fff87201fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff87202000 -     0x7fff8746bfff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8746c000 -     0x7fff8750cfff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8750d000 -     0x7fff87554ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87563000 -     0x7fff87569ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff875b6000 -     0x7fff875bcff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff875bd000 -     0x7fff87600fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff87601000 -     0x7fff876e6fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff876fe000 -     0x7fff87804fe7  com.apple.PubSub 1.0.5 (65.21) <4C14C413-07AD-2529-45FA-8E5B438D38A0> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff87964000 -     0x7fff8797afef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff8797b000 -     0x7fff87a38fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff87a39000 -     0x7fff87a60ff7  libJPEG.dylib ??? (???) <08758593-6436-B29E-1DA8-F15597835EC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff87abb000 -     0x7fff87b1bfe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff87b50000 -     0x7fff87b5cfff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff87b69000 -     0x7fff87e9dfef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff87e9e000 -     0x7fff87f23ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff87fd8000 -     0x7fff87fd8ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff87fd9000 -     0x7fff87fdeff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff87fdf000 -     0x7fff8819efff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8819f000 -     0x7fff882ddfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff882de000 -     0x7fff882effff  SyndicationUI ??? (???) <A7C60837-3B4F-ACDE-5B7B-63DA918763D0> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff88314000 -     0x7fff8832fff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff88330000 -     0x7fff883e5fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff883e6000 -     0x7fff89450fff  com.apple.WebCore 6534.59 (6534.59.6) <24B753DC-1FD4-FFCC-5F66-44799244A125> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: iMac5,1, BootROM IM51.0090.B09, 2 processors, Intel Core 2 Duo, 2.16 GHz, 1 GB, SMC 1.9f4
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3250824AS  Q, 232.89 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-85J, 7.54 GB
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd500000 / 5
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0xfd510000 / 7
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0250, 0xfd520000 / 6
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8501, 0xfd400000 / 4
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd300000 / 3
    USB Device: My Passport 0741, 0x1058  (Western Digital Technologies, Inc.), 0x0741, 0xfd100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x7d100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8240, 0x7d200000 / 3

  • HT203175 I have no problem signing on to iTunes my issue is once on the site I can not use the "search". It says there is a runtime error R6025 pure virtual function call. Has anyone had this problem and how do I fix it. Thanks

    I do not have a problem getting in the iTunes stores. My issue is once on the site I can not use the "search". It says there is a pure virtual function call R6025. How can I solve this problem? Do I have to create a new account? Do I have to uninstall and re-install? Thanks

    Thanks so much for your feedback. I really appreciate any input here.
    If someone from Adobe could GUARANTEE that this problem would go away if I
    purchased CS4, I would pony up the cash and do it. However, I'm skeptical
    about that because I just saw someone else post a message on the forum today
    who is running CS4 and getting the exact same runtime error as me.
    I'll try un-installing and re-installing as Admin, and if that doesn't work,
    maybe I can find a used copy of CS3.
    In the meantime, I'm also wondering if a Photoshop file can carry any sort
    of corrupt metadata inside it once it has errored out? Reason I ask is, I
    had to port all of my old PSD files to the new computer, and I only seem to
    be getting this error when I attempt to work on one of the files that
    previously got the runtime error when they were sitting on my XP machine.
    When I create new files from scratch on this new computer, they seem to be
    working just fine (at least, for now).
    If so, I would probably be smart to never open those troublesome
    "errored-out" files again.

  • Having problems with ipad mini and Siri. Works sporadically, will work once and then the second time not. Worked all the time with the original Mailbox app. Then started doing the same thing when I installed the new update so wondering if it is software?

    Having problems with ipad mini and Siri. Works sporadically, will work once and then the second time not. Worked all the time with the original Mailbox app. Then started doing the same thing when I installed the new update so wondering if it is software?

    Hi,
    I have the check box on a second Partition  but not on the Time Machine one
    I forget what I did now to get this called "Recovery HD"
    For the rest try https://discussions.apple.com/docs/DOC-4055  User Tip that links to Pondini's work on Time Machine.
    10:17 pm      Friday; May 2, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • HT201272 A lot of my songs, once put on the iCloud, will not download to my iPod.  They are on my iTunes, already downloaded, but will not appear in my library on my iPod.  Before I started using iCloud, all music in my iTunes library was on my iPod.

    A lot of my songs, once put on the iCloud, will not download to my iPod.  They are in my iTunes library, already downloaded, but will not appear in my library on my iPod.  There is no common thread for the origin of the songs--many were ripped from CD's, others purchased in the iTunes store.  Before I started using iCloud, all music in my iTunes library was on my iPod without any issues.

    - Are you saying that they are not listed in your Purchased section?
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    - Are they listed in your Puchases history when you log into your account on your computer?
    - Are they still available now for purchase? If not then you are out of luck
    If they are still available and listed in your Puchase History then contact iTunes
    http://www.apple.com/support/itunes/

  • Java.lang.Error: JAX-RPC 1.1 method is not supported in WLS 8.1 clients.

    We have some web services that run under OC4J 10.1.3.4. We have various JEE 'client' apps (JSF, servlets etc.) that use these web services. These JEE apps also run under OC4J.
    We started a migration project from oc4j to weblogic 10.3.2. In phase 1 we want to move these JEE 'client' apps to weblogic. In phase 2 we want to move the web services themselves to weblogic with adjustments to the JEE 'client' apps as needed.
    However we ran into an issue during this phase 1. Deploying these JEE 'client' apps to weblogic results in an error like this:
    java.lang.Error: JAX-RPC 1.1 method is not supported in WLS 8.1 clients. If you are attempting to run an OC4J 10.1.3 JAX-RPC client in WLS, please see the Web Service Migration Guide for instructions.
    We are including Oracle web services client libraries (http://download.oracle.com/otn/java/oc4j/1013/wsclient_extended.zip) in these JEE 'client' apps's war files because weblogic does not have them.
    What part of Web Service Migration Guide is the above error message talking about? Do we have to re-generate the client side proxies for all these web services using weblogic's clientgen task in 'JAXRPC' mode? Many of these web services are doc/literal jax-rpc web services. Or does the migration guide recommend we migrate the web services first to weblogic? Any other specific information on working around this error message would be greatly appreciated.

    Hi,
    I had the same issue but I just managed to fix it. You must upgrade and/or regenerate you proxy. This creates new classes (possibily in a new package) that you must use in your code. I had this error because the classes directory was not clean after the rebuild and the old classes (in the old package) were still present, so the compilation was successful with the old classes. So clean your classes directories, regenerate your proxy and use the new classes in your code.
    Regards,
    Sylvain

  • Jdeveloper 11g - JAX-RPC 1.1 method is not supported in WLS 8.1 clients.

    Hi,
    I am using Jdeveloper 11g and migrating a web Service Proxy created using jdeveloper 10g.
    I imported all the proxy classes and when I try to run web service client In Jdeveloper 11g I get the following error
    "JAX-RPC 1.1 method is not supported in WLS 8.1 clients. If you are attempting to run an OC4J 10.1.3 JAX-RPC client in WLS, please see the Web Service Migration Guide for instructions."
    Please advise on how to solve this?
    which is the offending jar/library file in Jdeveloper 11g which is causing the above error?.
    Is the above problem there in the WebLogic Server Runtime also?
    Please let me know.
    2) I cannot generate web server proxies also with jdev11g because the wsdl has overloaded methods omitting the name property within the input and output message, ie, they have a null name. therefore Jdeveloper 11g is using the library which
    when called with an overloaded operation that contains null input/output message names, a duplicate error occurs because it sees other operations with the same name. so it is effectively not allowing to create the web service proxies.
    Thanks,
    Appreciate your quick response to the above

    Have you checked the 'Web Service Migration Guide' mentioned in the error message?
    Timo

  • 'Input data length not a multiple of blocksize' error in CUP

    Hello All
    I receive the error below when trying to configure CUP. I got this error whilst trying to define the password for the RFC user created in the Connector screen in CUP. CUP doesn't accept the SAP password maintained in SU01. CUP only allows a 4 character password but SU01 is configured to only accept 8 characters. Full error message below.
    'com.virsa.ae.commons.utils.StringEncrypter$EncryptionException: Input data length not a multiple of blocksize.'
    Can anyone shed any light on this?

    Hi All,
    This issue is in Version 5.3 SP 7.1 of CUP. It occurs when we are trying to change the password for the CUP connector.
    Please note that testing the connectors within the Content Administrator --> Maintain JCO Connections screens works fine and the risk analysis from RAR also works without issue. However, whenever we attempt to enter the password for CUP connecotr setup, it returns an error saying "Action Failed" with the 'Input data length not a multiple of blocksize' error showing in the trace logs.
    We seem to be able to store a password of 4 characters e.g. 1234 but this then naturally fails the connection test.
    Can anyone suggest a parameter setting to check or a resolution for this particular issue?
    Thanks,
    Simon

  • How to store xml data fragments, that will not be queried?

    Hello,
    Delphi Client application communicates with Java Server application via XML messages. Client sends XML message over HTTP Post method. Java Servlet gets XML message, parses it, performs requested action (select/insert/update/delete), generates resulting response and sends it back to the Client.
    I use Oracle DB XE 10.2.
    For example: Client sends a request to the server, to append certain Order with new Product info:
    Request:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <Request OrderID="123123123" Action="NewProduct">
    - <Product TempProdID="2" ProdName="L01" VisualID="1" Amount="1" TechClass="1" TechSubject="1" TechVersion="0" TechName="TestTech" ElemOk="0">
    <Modified UserID="XXX" UserGroup="XXX" GroupLevel="0" />
    - <QuickInfo>
    <ProdIcon Format="PNG"
    Encoding="Base64">iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAA
    lC+aJAAAAA3RSTlP////6yOLMAAAAvElEQVR42u3aQQ6EIAwAQP7/afe0
    mo1mBVur0emJgwGmRDFNWwvH9I153OpjyoisefqXW3afm4WypP+MgomvT
    z8AAAAAAAAAAAAAAMAzAClzAWQAdvexfqATEKmA/Fm0rYs5ozvoAWyWj4
    ZqJ9efQKR8BJAHOPEdKAAc/lLdAhC/K68EBG+JWwAixfABgF8Jf6MAAAA
    AAAAAAAAAAAAALwRUGgAAAAAAsgGJ3cfVrcfFl2jiIZzV+V7Zd/8BOtNi
    0MnJ58oAAAAASUVORK5CYII=
    </ProdIcon>
    <Parameters />
    </QuickInfo>
    - <TechProduct CurVer="1" MinVer="1" TotalItems="330" ItemNodeSize="55074">
    - <SubItem Class="TPlGraph" BindID="00B9C004">
    <PropList />
    - <SubItem Ident="Profiles" Class="TProfileList" Child="1" BindID="0188598C">
    <PropList />
    - <SubItem Class="TPlProfile" Child="1" BindID="018CA6CC">
    - <PropList>
    <Property PropIdent="ProfBaze0X" ValText="0" />
    <Property PropIdent="ProfBaze0Y" ValText="990" />
    <Property PropIdent="ProfBaze1X" ValText="990" />
    <Property PropIdent="ProfHier0" ValText="0" />
    - <Property PropIdent="InBorder" ValIdent="None" ValText="N&#279;ra">
    <ExtValue ColIdent="ItemCode" Value="None" />
    <ExtValue ColIdent="Type" Value="" />
    <ExtValue ColIdent="Filter" Value="" />
    <ExtValue ColIdent="Width" Value="0" />
    <ExtValue ColIdent="TechCall" Value="" />
    </Property>
    </PropList>
    </SubItem>
    </SubItem>
    </SubItem>
    </TechProduct>
    </Product>
    </Request>
    I use DOM parsers to parse the received requests, extract certain info and insert it into relational tables using standart SQL queries.
    My question is: what is the best way to store XML data fragments, that are not required to be saved relationally? I need to save the content of node <TechProduct> from the above example to relational table's column. There will be no need to query this column, no need to use relational views. I will use it only when Client application will request to modify certain order's product. Then I will have to send back the same <TechProduct> node via XML response.
    So what column type do I have to use? CLOB? XMLType? Is it better to use object types? Do I have to register XML Schema for better performance? The size of the fragment can be ~2MB.
    Thanks for your help
    Message was edited by:
    Kichas

    Thank you for reply,
    As you suggested, I will use XMLType storage as CLOB (without XML Schema).
    As I mentioned before, I use Java Servlet, deployed on Tomcat WebServer, to receive XML messages from Client application via HTTP POST method.
    I use these libs to get the XML payload and parse it into a Document:
    import org.w3c.dom.*;
    import org.xml.sax.InputSource;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    And here is the code:
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    try {
    // get the XML payload and parse it into a Document
    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
    Document dom;
    InputSource input = new InputSource(request.getInputStream());
    dom = docBuilder.parse(input);
    catch(Exception ex) {
    System.out.println("Exception thrown in XmlService");
    ex.printStackTrace();
    throw new ServletException(ex);
    I create a relational table, that contains XMLType column:
    CREATE TABLE xwarehouses (
    warehouse_id NUMBER,
    warehouse_spec XMLTYPE)
    XMLTYPE warehouse_spec STORE AS CLOB;
    Now I want to insert all DOM Document into XMLType column. So I do like this:
    import oracle.xdb.XMLType;
    String SQLTEXT = "INSERT INTO XWAREHOUSES (WAREHOUSE_ID, WAREHOUSE_SPEC) VALUES (?, ?)";
    XMLType xml = XMLType.createXML(con,dom);
    PreparedStatement sqlStatement = con.prepareStatement(SQLTEXT);
    sqlStatement.setInt(1,2);
    sqlStatement.setObject(2,xml);
    sqlStatement.execute();
    sqlStatement.close();
    dom is the Document, that I got from HTTP Request input stream.
    My servlet throws an exception:
    java.lang.NoClassDefFoundError: oracle/xml/parser/v2/XMLParseException
    at XmlService.GetMatListServiceHandler.processRequest(GetMatListServiceHandler.java:111)
    at XmlService.XmlServiceHandler.handleRequest(XmlServiceHandler.java:43)
    at XmlService.XmlServiceServlet.doPost(XmlServiceServlet.java:69)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:716)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
    why does he needs oracle.xml.parser.v2.XMLParseException? I don't use Oracle parser? Does this code line throws the exception (I am not able to debug my code, because I have not configured JDeveloper to be able to use Remote Debuging):
    XMLType xml = XMLType.createXML(con,dom);
    Does it reparses the given dom Document or what?. When I deploy xmlparserv2.jar to Tomcat, everything is ok, application inserts XML data into XMLType column.
    Is there another way to insert the whole org.w3c.dom Document or Document fragment (that is already parsed) into XMLType column. Can you provide any sample code?
    The Document may contain national symbols, so they should be correctly stored and then later retrieved.
    Many thanks.

  • I can't find preferences for the notes app. and every once in awhile some of my notes just disappear at start up, I see the name and then it refreshes and they are gone, very annoying. Can anyone tell me why it does this and how to stop it? thanks

    I can't find preferences for the notes app. and every once in awhile some of my notes just disappear at start up, I see the name and then it refreshes and they are gone, very annoying. Can anyone tell me why it does this and how to stop it? thanks

    Hi again, I am on an iMac using OSX 10.7.5, I"ve taken screenshots to show you I think my settings are correct

  • HT1212 Old ipod, can not get it to connect with itunes & i no longer have the computer it was once synced to. It will not allow me to do anything but turn it off & on.

    Old ipod, can not get it to connect with itunes & i no longer have the computer it was once synced to. It will not allow me to do anything but turn it off & on.

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

  • [svn:osmf:] 15195: 1. Ensure that fragment ID will not exceed the total number of fragments as indicated by the segment run table .

    Revision: 15195
    Revision: 15195
    Author:   [email protected]
    Date:     2010-04-01 17:51:23 -0700 (Thu, 01 Apr 2010)
    Log Message:
    1. Ensure that fragment ID will not exceed the total number of fragments as indicated by the segment run table.
    2. Fix bug FM-574, FM-586 and FM-614
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-574
        http://bugs.adobe.com/jira/browse/FM-586
        http://bugs.adobe.com/jira/browse/FM-614
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/events/HTTPStreamingFileHandlerEvent.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPNetStream.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPStreamingNetLoader.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/AdobeBootstrapBox.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/AdobeFragmentRunTable.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/BoxParser.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/HTTPStreamingF4FFileHandler.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/HTTPStreamingF4FIndexHandler.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/flv/FLVTagAudio.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/flv/FLVTagVideo.as
        osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/flv/FLVTestHelper.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/flv/TestFLVTagAudio.as
    Added Paths:
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/flv/TestFLVTagScriptDataObject.a s
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/flv/TestFLVTagVideo.as

    Revision: 15195
    Revision: 15195
    Author:   [email protected]
    Date:     2010-04-01 17:51:23 -0700 (Thu, 01 Apr 2010)
    Log Message:
    1. Ensure that fragment ID will not exceed the total number of fragments as indicated by the segment run table.
    2. Fix bug FM-574, FM-586 and FM-614
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-574
        http://bugs.adobe.com/jira/browse/FM-586
        http://bugs.adobe.com/jira/browse/FM-614
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/events/HTTPStreamingFileHandlerEvent.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPNetStream.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPStreamingNetLoader.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/AdobeBootstrapBox.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/AdobeFragmentRunTable.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/BoxParser.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/HTTPStreamingF4FFileHandler.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/HTTPStreamingF4FIndexHandler.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/flv/FLVTagAudio.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/flv/FLVTagVideo.as
        osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/flv/FLVTestHelper.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/flv/TestFLVTagAudio.as
    Added Paths:
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/flv/TestFLVTagScriptDataObject.a s
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/flv/TestFLVTagVideo.as

Maybe you are looking for