Error #1088

Hi
I've created both a web api and air api using the internal
create data application in Flex 3
using PHP & MYSQL.
the web api display the results fine if in Dreamweaver I use
the Preview in Adobe Air I get the following error code:
Connection error: Error#1088 Does anybody know what this is
and how to resolve this.?
I also get the same Error if I create the Air Api straight
through Flex

I have attached the XML I am seeing with debugging disabled:
Note when I enable debugging and view the page in IE 7 I get:
The XML page cannot be displayed
Cannot view XML input using XSL style sheet. Please correct
the error and then click the Refresh button, or try again later.
End tag was not expected at this location. Error processing
resource
'[MY_URL_HERE]'...
</td></td></td></th></th></th></tr></tr></tr></table></table&...
What do you see when you view source in IE?
I'm sorry for repeating myself but I am only able to
re-create your error message only with debugging enabled.

Similar Messages

  • Help! Flash error: 1088 (Markup in doucment not well-formed)

    I'm trying to use ASP.NET to retrieve data from the sql server, place in inside an xml and sends the xml to flash to display the data.
    However, I'm getting
    TypeError: Error #1088: The markup in the document following the root element must be well-formed.
    at news_fla::mainTimeline/loaded()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()
    This is my code:
    ASP.NET
    =======
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Dim adapter As SqlDataAdapter
            Dim ds As New DataSet
            Dim sql As String
            Dim con As New SqlConnection("data source = GN80000798-0\SQLEXPRESS2008; initial catalog = EL; integrated security = true")
            sql = "select * from news"
            Try
                con.Open()
                adapter = New SqlDataAdapter(sql, con)
                adapter.Fill(ds, "data")
                con.Close()
                Response.ContentType = "text/XML"
                Response.HeaderEncoding = Encoding.UTF8
                ds.WriteXml(Response.OutputStream, XmlWriteMode.WriteSchema)
                MsgBox("Done")
            Catch ex As Exception
                MsgBox(ex.ToString)
            End Try
        End Sub
    Flash
    ====
    import flash.xml.*;
    var newsrequest:URLRequest = new URLRequest("http://localhost:1179/DB/DB.aspx"); //ASP.NET development server
    var newsloader:URLLoader = new URLLoader();
    var newsxml:XML;
    var dvar:URLVariables = new URLVariables();
    dvar.dummy = "dummy";
    newsrequest.data = dvar;
    newsrequest.method = URLRequestMethod.POST;
    newsloader.load(newsrequest);
    newsloader.addEventListener(Event.COMPLETE, loaded);
    titlenews.autoSize = TextFieldAutoSize.LEFT;
    bodynews.autoSize = TextFieldAutoSize.LEFT;
    function loaded(event:Event){
    newsxml = new XML(event.target.data);
    newsxml.ignoreWhitespace = true;
    trace(newsxml);
    HOWEVER, if i replace the
    "ds.WriteXml(Response.OutputStream, XmlWriteMode.WriteSchema)"
    with
    "ds.WriteXml("C:\new.xml")
    it works. But i dont wan a .xml file residing in the server. so i hope that the .xml file would be cleared off as soon as the request is done.
    Did i do something wrong?
    PS: I don't know if i post this in the correct section but since it's related to AS3, thats why i post it here. sorry if i made a mistake.

    Please paste the following line as first statement in loaded function, also compare the output of the following line with expected output from ASP page.
    trace(event.target.data);
    The error is causing due to the fact that XML received is not well formed.
    I guess the problem is with write XML you are getting some additional tag elements and these are not wellformed. so flash is giving error.

  • Dynamic xml from php script throws error: #1088 or #1085

    Hi,
    I'm importing xml formatted data from mysql via php script:
    [code]
    <?php
    require_once('require.php');
    $result = mysql_query("SELECT * FROM `songs`");
    if($result)
        header ("Content-Type: text/xml");
        echo"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
        echo"<songComments>\n";
        while ($row = mysql_fetch_array($result))
            echo"<testimonial>\n";
            echo"<songComment>" . $row['title'] . "</songComment>\n";
            echo"</testimonial>\n";
        echo"</songComments>\n";
    ?>
    [/code]
    In one of my flash projects it's working just fine. But in the new one that I just sterted not anymore. And i have no idea why. I get this errors:
    TypeError: Error #1085: The element type "songComments\n" must be terminated by the matching end-tag "</songComments\n>".
    or:
    TypeError: Error #1088: The markup in the document following the root element must be well-formed.
    When I output that php into txt file and loaded in flash everything is fine, but not from php script directly.
    Could it have something to do with that I'm testing that mysql locally on my computer using WAMP ? Previous project got all data from mysql from server.

    Ho could I trace what flash sees?
    var url:URLLoader = new URLLoader();
    url.addEventListener(Event.COMPLETE, xmlLoaded);
    url.load(new URLRequest("getDataFromDB.php"));
    private function xmlLoaded(event:Event):void {
                myXML = new XML(event.target.data);
                trace(myXML);
    I  got rid of that \n everywhere or move them around  and it's still the same error 1088 or 1085

  • How to solve the error problem error:1088 in flex builder 3

    I'm facing an error while creating an application from Database using wamp web server please tell me how to solve this?

    <!-- incorrect --> 
    <root>
      < myxml label="something" >
    </root>
    <!-- correct -->
    <root>
      <myxml label="something">
    </myxml></root>

  • XML - writing file #1088 (xml not well formed)

    Hi,
    What could cause the IO Error #1088 within the code below? All I can think of is white space issue. It prints to the screen AND saves to the xml file correctly, just keeps throwing up the code.
    Also, writing it this way wont' allow me to add <?xml version='1.0' encoding='utf-8'?> is it required?
    Thanks for any help.
    var authors:XML;
    authors =<authors>
                    <author>
                    <firstname>Rich</firstname>
                    <lastname>Shupe</lastname>
                    </author>
                    <author>
                    <firstname>Zevan</firstname>
                    <lastname>Rosser</lastname>
                    </author>
                    </authors>;
    var xml =authors;
    var book:XML = new XML(xml);
    var xmlResponse:XML;
    var xmlURLReq:URLRequest = new URLRequest("saveXML.php");
    xmlURLReq.data = book;
    xmlURLReq.contentType = "text/xml";
    xmlURLReq.method = URLRequestMethod.POST;
    var xmlSendLoad:URLLoader = new URLLoader();
    xmlSendLoad.addEventListener(Event.COMPLETE, onComplete, false, 0, true);
    xmlSendLoad.addEventListener(IOErrorEvent.IO_ERROR, onIOError, false, 0, true);
    xmlSendLoad.load(xmlURLReq);
    function onComplete(evt:Event):void {
        try {
            xmlResponse = new XML(evt.target.data);
            respTxt.text = xmlResponse;
            removeEventListener(Event.COMPLETE, onComplete);
            removeEventListener(IOErrorEvent.IO_ERROR, onIOError);
        } catch (err:TypeError) {
            respTxt.text = "An error occured when communicating with server:\n" + err.message+" "+xml;
    function onIOError(evt:IOErrorEvent):void {
        respTxt.text = "An error occurred when attempting to load the XML.\n" + evt.text;

    Answered it myself....
    The PHP script was adding additional<tags></tags> so the file I was outputing read:
    <root>
    <teams>
    <team1></team1>
    <team2></team2>
    </teams>
    </root>
    <phpaddedInfo></phpaddedInfo>
    so just a good idea to look in both places when you get an IO error #1088

  • XML from CF not well-formed?

    I have been working through the Training from the Source book
    on Flex2 (Trapper, Boles, Talbot, etc.). In Lesson 17, it deals
    with accessing server-side objects.
    One piece of code accesses a CF template, which brings in an
    XML file:
    <mx:HTTPService id="prodByCatRPC"
    url="
    http://localhost/flexGrocer/xml/categorizedProducts.cfm"
    result="prodByCategoryHandler(event)"
    resultFormat="e4x" />
    The CF plate from the book's file has the following:
    <cfheader name="Expires" value="#now()#" />
    <cfxml variable="xProducts">
    <cfinclude template="categorizedProducts.xml">
    </cfxml>
    <cfset xmlObject=ToString(xProducts)>
    <cfcontent type="text/xml" />
    <cfoutput>#variables.xmlObject#</cfoutput>
    When run the Flex file, I get a run-time message which seems
    to indicate that the XML is not well-formed. (Here is a bit of the
    message; not sure I'm understanding it!):
    [RPC Fault faultString="Error #1088: The markup in the
    document following the root element must be well-formed."
    faultCode="Client.CouldNotDecode" faultDetail="null"]
    I am ASSUMING that the CF page is not returning the xml as
    desired, because if I simply change the flex http service call to
    the xml file that the CF page is including, the flex app runs as
    expected and without errors:
    url="
    http://localhost/flexGrocer/xml/categorizedProducts.xml"
    (something in the posting mech is making the above url
    statement messed up, but you can probably tell what I mean)
    I am a CF developer and although haven't used the book's
    exact method to get the cf generated xml, I have done so
    successfully for Spry and other things.
    I tried some ot the things I had to do to get the CF
    generated xml to work in Spry with this flex, but didn't help.
    Tried adding a reset='true" with the cfcontent tag; tried making
    the cfcontent wrap the output; added cfprocessing tags to
    suppresswhitespace.
    Appreciate any thoughts/help on how to solve this. Also,
    whether others agree that the problem is with the generated xml
    rather than something else.
    Thanks
    Keith

    I don't remember the exact context when I first posted this
    question and answered it; but, if one doesn't want to change
    overall settings for debugging in cf admin., I *think* you can
    ajust for a specific area using cfsetting and/or
    cfprocessingdirective. There's a number of attributes and
    combinations there that I think can take care of the problem. I
    forget for sure, but may want to try that, especially on a
    development box where you might generally want debugging to be on.
    Also, if using cfcs in any part of what you generate, they
    can produce whitespace. To solve (or minimize), make sure that
    output attribute in the component is false and that output in
    function is false (unless directly outputting within the function.
    Seems like CF and whitespace is an ongoing item to try to
    manage.
    Keith

  • A few frequent problems in MOS

    I am facing a bit frequent 'server errors' on MOS - especially if I change the main options (like Knowledge to Service Request, or Patches & updates, etc).
    I have also seen Error #1088 a few times and sometimes, my service requests do not show up a few times if I click on the Service Requests tab. Later they do appear after a few minutes.
    Are these common observations or it could be because of my account settings.
    Thanks!

    I agree with your analysis. This is a commiserating club in effect, though I think and hope that Oracle will not ignore these issues but they will not be a priority or anybody's responsibility. This serves as a consumer feedback for Oracle. I just wanted to confirm, it wasn't only me seeing it.
    BTW, I honestly hate to see how the MOS has killed most of the ways to mask URLs making it really hard to have more than one tabs open for MOS documents. And that's a very dumb idea when browsers are allowing more and more tab functionalities. It's like moving backwards with the progress of time.

  • Unable to delete User object in FIM Portal - Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition"

    Hi,
    ***Problem
    I encounter a problem with FIM (version 4.1.3441.0 and 4.1.3496.0) when I try to delete a User object (and only a User object) whatever if it is
    manually/Expiration Workflow/Powershell.
    Deleting a User object used to be perfectly functional and, without any product version modification, stopped working. I haven't neither deleted/modified or add a
    "Grant" MPR or any of the corresponding Sets since last time I saw it working.
    Displayed error is "Request could not be dispatched" in FIM Portal and is referencing a stored procedure in Event Viewer.
    ***Error details
    When I try to delete a User object, here is the output :
    Portal
    "Processing error" on submit
    with the following details 
    Request status is stuck at "Validating" until next restart of FIM Service (after what it becomes “Canceled”)
    Request’s “Applied Policy” tab does not contain any MPR where, at least, a “Grant” MPR is expected
    As SQL Timeout is relatively high and error happens quickly, I don’t think there is a Timeout problem under that.
    Logs
    « Application »
    The Portal cannot connect to the middle tier using the web service interface.  This failure prevents all portal scenarios from functioning correctly.
    The cause may be due to a missing or invalid server url, a downed server, or an invalid server firewall configuration.
    Ensure the portal configuration is present and points to the resource management service.
     « Forefront Identity Manager »
    Reraised Error 50000, Level 16, State 1, Procedure ReRaiseException, Line 37, Message: Reraised Error 1088, Level 16, State 12, Procedure CalculateRequestSetTransitionsAssembleStatements,
    Line 332, Message: Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition" because it does not exist or you do not have permissions.
    Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0.
    Microsoft.ResourceManagement.WebServices.Exceptions.UnwillingToPerformException: Other ---> System.Data.SqlClient.SqlException: Reraised Error 50000, Level 16, State
    1, Procedure ReRaiseException, Line 37, Message: Reraised Error 1088, Level 16, State 12, Procedure CalculateRequestSetTransitionsAssembleStatements, Line 332, Message: Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition"
    because it does not exist or you do not have permissions.
    Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler,
    TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult
    result)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.ResourceManagement.Data.DataAccess.UpdateRequest(RequestType request, IEnumerable`1 updates)
       --- End of inner exception stack trace ---
    Requestor: urn:uuid:7fb2b853-24f0-4498-9534-4e10589723c4
    Correlation Identifier: e7209633-46d0-4f4b-a59e-807649ef71ea
    Microsoft.ResourceManagement.WebServices.Exceptions.UnwillingToPerformException: Other ---> System.InvalidCastException: Specified cast is not valid.
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.CreateRequest(UniqueIdentifier requestor, UniqueIdentifier targetIdentifier, OperationType
    operation, String businessJustification, List`1 requestParameters, CultureInfo locale, Boolean isChildRequest, Guid cause, Boolean doEvaluation, Nullable`1 serviceId, Nullable`1 servicePartitionId, UniqueId messageIdentifier, UniqueIdentifier requestContextIdentifier,
    Boolean maintenanceMode)
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.CreateRequest(UniqueIdentifier requestor, UniqueIdentifier targetIdentifier, OperationType
    operation, String businessJustification, List`1 requestParameters, CultureInfo locale, Boolean isChildRequest, Guid cause, Boolean doEvaluation, Nullable`1 serviceId, Nullable`1 servicePartitionId, UniqueId messageIdentifier)
       at Microsoft.ResourceManagement.WebServices.ResourceManagementService.Delete(Message request)
       --- End of inner exception stack trace ---
    For information, a maintenance plan rebuild/reorganize indexes daily and this problem has occurred on servers with different performances.
    Is any of you has already encounter this problem ?
    Any help would be greatly appreciated,
    Thanks in advance for your help,
    Matthew

    While there are several SQL Agent jobs (FIM Temporal Events, Maintain Sets, and Maintain Groups among others)created by the FIM install only one of those is enabled and scheduled and it calls all of the same stored procedures that the other
    jobs do. Step 2 is Maintain sets and Step 3 is maintain groups. So the Maintain sets and groups jobs never need to get enabled and scheduled, but if you want them to be maintained more frequently then you can.
    David Lundell, Get your copy of FIM Best Practices Volume 1 http://blog.ilmbestpractices.com/2010/08/book-is-here-fim-best-practices-volume.html

  • Safari crashes whenever I attempt to copy and paste anything

    Whenever I try to copy any text in Safari, it immediately crashes. Stickies does this as well. Any help would be greatly appreciated. Below are the crash reports. Thanks!
    Safari:
    Date/Time: 2007-10-08 03:00:48.701 -0700
    OS Version: 10.4.10 (Build 8R218)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [57]
    Version: 2.0.4 (419.3)
    Build Version: 32
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 245
    Thread: 0
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x00000002
    Code[1]: 0x9396e1cc
    Thread 0 Crashed:
    0 com.apple.AppKit 0x9396e1cc -[NSRTFWriter collectResources] + 748
    1 com.apple.AppKit 0x9396de4c -[NSRTFWriter writeRTF] + 60
    2 com.apple.AppKit 0x9396ddf8 -[NSRTFWriter RTF] + 32
    3 com.apple.AppKit 0x9396d910 -[NSAttributedString(NSAttributedStringKitAdditions) dataFromRange:documentAttributes:error:] + 1088
    4 com.apple.WebKit 0x957e12a0 -[WebHTMLView(WebHTMLViewFileInternal) _writeSelectionWithPasteboardTypes:toPasteboard:cachedAttributedString:] + 464
    5 com.apple.WebKit 0x957e1a34 -[WebHTMLView(WebPrivate) _writeSelectionToPasteboard:] + 188
    6 com.apple.AppKit 0x9381ec4c -[NSApplication sendAction:to:from:] + 108
    7 com.apple.Safari 0x0002956c 0x1000 + 165228
    8 com.apple.AppKit 0x938794b8 -[NSMenu performActionForItemAtIndex:] + 392
    9 com.apple.AppKit 0x9387923c -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 104
    10 com.apple.AppKit 0x93878ce4 -[NSMenu performKeyEquivalent:] + 272
    11 com.apple.AppKit 0x938788c4 -[NSApplication _handleKeyEquivalent:] + 220
    12 com.apple.AppKit 0x93782408 -[NSApplication sendEvent:] + 2944
    13 com.apple.Safari 0x00021238 0x1000 + 131640
    14 com.apple.AppKit 0x93779d10 -[NSApplication run] + 508
    15 com.apple.AppKit 0x9386a87c NSApplicationMain + 452
    16 com.apple.Safari 0x0005c77c 0x1000 + 374652
    17 com.apple.Safari 0x0005c624 0x1000 + 374308
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf0170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92bf00a8 -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x957983d0 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c086a8 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c097e8 +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f0434 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92be830c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a97d42c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 ...romedia.Flash Player.plugin 0x059df688 nativeShockwaveFlashTCallFrame + 1368296
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000009396e1cc srr1: 0x000000000208f030 vrsave: 0x00000000fff00000
    cr: 0x44000284 xer: 0x0000000000000007 lr: 0x000000009396e1b4 ctr: 0x00000000937c8c60
    r0: 0x000000009396e1b4 r1: 0x00000000bfffe3d0 r2: 0x00000000075f8830 r3: 0x0000000004da04d0
    r4: 0x00000000a37adee0 r5: 0x00000000a021e3d0 r6: 0x0000000004060401 r7: 0x0000000001030301
    r8: 0x0000000062242361 r9: 0x00000000075f884c r10: 0x0000000037fcb7c5 r11: 0x0000000000000003
    r12: 0x00000000937c8c60 r13: 0x00000000a37adee0 r14: 0x000000000870b7d0 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000bfffe410 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000a37adee0 r21: 0x0000000000000000 r22: 0x0000000000000000 r23: 0x0000000000000000
    r24: 0x00000000004322e0 r25: 0x0000000000000000 r26: 0x0000000000000000 r27: 0x00000000a37ae710
    r28: 0x0000000000000002 r29: 0x00000000075f8830 r30: 0x000000000041bd90 r31: 0x000000009396dee0
    Binary Images Description:
    0x1000 - 0xdcfff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x4cfb000 - 0x4cfdfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x5729000 - 0x5a3dfff com.macromedia.Flash Player.plugin 9.0.28 (1.0.4f22) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd3fff com.apple.CFNetwork 129.21 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91cdffff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce4000 - 0x91d21fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d28000 - 0x91d41fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d46000 - 0x91d49fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4b000 - 0x91e29fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e49000 - 0x91e49fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4b000 - 0x91f30fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f38000 - 0x91f57fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc3000 - 0x92031fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203c000 - 0x920d1fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920eb000 - 0x92673fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a6000 - 0x929d1fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a01000 - 0x92aeffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af2000 - 0x92b7afff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbb000 - 0x92de6fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f13000 - 0x92f31fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3c000 - 0x92f96fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb4000 - 0x92fb4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb6000 - 0x92fcafff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe2000 - 0x92ff2fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ffe000 - 0x93013fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93025000 - 0x930acfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c0000 - 0x930cbfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d5000 - 0x93102fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311c000 - 0x9312bfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93137000 - 0x9319dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931ce000 - 0x9321dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324b000 - 0x93268fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327a000 - 0x93287fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93290000 - 0x9359efff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936ee000 - 0x936fafff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x936ff000 - 0x9371ffff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93773000 - 0x93773fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93775000 - 0x93da8fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94135000 - 0x941a7fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e0000 - 0x942a4fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f6000 - 0x942f6fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942f8000 - 0x944b8fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94502000 - 0x9453ffff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94547000 - 0x94597fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a0000 - 0x945bafff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945ca000 - 0x945ecfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9467a000 - 0x946b2fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946f5000 - 0x94711fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94725000 - 0x94769fff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9478d000 - 0x9479cfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a4000 - 0x947b1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f7000 - 0x94810fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94817000 - 0x94b36fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c1a000 - 0x94c8bfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e00000 - 0x94f30fff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fc2000 - 0x94fd1fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fd9000 - 0x95006fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9500d000 - 0x9501dfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95021000 - 0x95050fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95060000 - 0x9507dfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95796000 - 0x95824fff com.apple.WebKit 419.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95880000 - 0x95915fff com.apple.JavaScriptCore 418.6.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95952000 - 0x95c5ffff com.apple.WebCore 418.23 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95de8000 - 0x95e11fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x97875000 - 0x97882fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9a97a000 - 0x9a9b0fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a9cd000 - 0x9a9dffff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: PowerBook6,4, BootROM 4.8.3f1, 1 processors, PowerPC G4 (1.1), 1.33 GHz, 768 MB
    Graphics: GeForce FX Go5200, GeForce FX Go5200, AGP, 64 MB
    Memory Module: DIMM0/BUILT-IN, 256 MB, built-in, built-in
    Memory Module: DIMM1/J31, 512 MB, DDR SDRAM, PC2700U-25330
    AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
    Modem: Jump, V.92, Version 1.0
    Bluetooth: Version 1.7.14f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Parallel ATA Device: MATSHITACD-RW CW-8123
    Parallel ATA Device: ST9100824A, 93.16 GB
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    Stickies:
    Date/Time: 2007-10-08 03:04:51.505 -0700
    OS Version: 10.4.10 (Build 8R218)
    Report Version: 4
    Command: Stickies
    Path: /Applications/Stickies.app/Contents/MacOS/Stickies
    Parent: WindowServer [57]
    Version: 5.1.0 (5.1.0)
    Build Version: 113
    Project Name: Stickies
    Source Version: 710100
    PID: 260
    Thread: 0
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x00000002
    Code[1]: 0x9396e1cc
    Thread 0 Crashed:
    0 com.apple.AppKit 0x9396e1cc -[NSRTFWriter collectResources] + 748
    1 com.apple.AppKit 0x9396de4c -[NSRTFWriter writeRTF] + 60
    2 com.apple.AppKit 0x9396ddf8 -[NSRTFWriter RTF] + 32
    3 com.apple.AppKit 0x9396d910 -[NSAttributedString(NSAttributedStringKitAdditions) dataFromRange:documentAttributes:error:] + 1088
    4 com.apple.AppKit 0x93b9eb70 -[NSTextView(NSPasteboard) _writeRTFInRanges:toPasteboard:] + 764
    5 com.apple.AppKit 0x93b9fda4 -[NSTextView(NSPasteboard) writeSelectionToPasteboard:type:] + 184
    6 com.apple.AppKit 0x93ba014c -[NSTextView(NSPasteboard) writeSelectionToPasteboard:types:] + 496
    7 com.apple.AppKit 0x93ba4a6c -[NSTextView(NSPasteboard) copy:] + 204
    8 com.apple.AppKit 0x9381ec4c -[NSApplication sendAction:to:from:] + 108
    9 com.apple.AppKit 0x938794b8 -[NSMenu performActionForItemAtIndex:] + 392
    10 com.apple.AppKit 0x9387923c -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 104
    11 com.apple.AppKit 0x93878ce4 -[NSMenu performKeyEquivalent:] + 272
    12 com.apple.AppKit 0x93878930 -[NSApplication _handleKeyEquivalent:] + 328
    13 com.apple.AppKit 0x93782408 -[NSApplication sendEvent:] + 2944
    14 com.apple.AppKit 0x93779d10 -[NSApplication run] + 508
    15 com.apple.AppKit 0x9386a87c NSApplicationMain + 452
    16 com.apple.Stickies 0x00002104 0x1000 + 4356
    17 com.apple.Stickies 0x00001f44 0x1000 + 3908
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000009396e1cc srr1: 0x000000000208f030 vrsave: 0x0000000000000000
    cr: 0x44000284 xer: 0x0000000000000004 lr: 0x000000009396e1b4 ctr: 0x00000000937c8c60
    r0: 0x000000009396e1b4 r1: 0x00000000bfffe7a0 r2: 0x0000000000375e50 r3: 0x0000000000322080
    r4: 0x00000000a37adee0 r5: 0x00000000a021e3d0 r6: 0x0000000004060401 r7: 0x0000000001030301
    r8: 0x0000000062242361 r9: 0x0000000000375e6c r10: 0x0000000037fcb7c5 r11: 0x0000000000000002
    r12: 0x00000000937c8c60 r13: 0x00000000a37adee0 r14: 0x000000000035fc30 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000bfffe7e0 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000a37adee0 r21: 0x0000000000000000 r22: 0x0000000000000000 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x0000000000000000 r27: 0x00000000a37ae710
    r28: 0x0000000000000002 r29: 0x0000000000375e50 r30: 0x00000000003a94a0 r31: 0x000000009396dee0
    Binary Images Description:
    0x1000 - 0x11fff com.apple.Stickies 5.1.0 /Applications/Stickies.app/Contents/MacOS/Stickies
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd3fff com.apple.CFNetwork 129.21 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91cdffff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce4000 - 0x91d21fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d28000 - 0x91d41fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d46000 - 0x91d49fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4b000 - 0x91e29fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e49000 - 0x91e49fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4b000 - 0x91f30fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f38000 - 0x91f57fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc3000 - 0x92031fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203c000 - 0x920d1fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920eb000 - 0x92673fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a6000 - 0x929d1fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a01000 - 0x92aeffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af2000 - 0x92b7afff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbb000 - 0x92de6fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f13000 - 0x92f31fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3c000 - 0x92f96fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fe2000 - 0x92ff2fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9324b000 - 0x93268fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93290000 - 0x9359efff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936ee000 - 0x936fafff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93773000 - 0x93773fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93775000 - 0x93da8fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94135000 - 0x941a7fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e0000 - 0x942a4fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f6000 - 0x942f6fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942f8000 - 0x944b8fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94502000 - 0x9453ffff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94547000 - 0x94597fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a0000 - 0x945bafff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945ca000 - 0x945ecfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9478d000 - 0x9479cfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a4000 - 0x947b1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f7000 - 0x94810fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    Model: PowerBook6,4, BootROM 4.8.3f1, 1 processors, PowerPC G4 (1.1), 1.33 GHz, 768 MB
    Graphics: GeForce FX Go5200, GeForce FX Go5200, AGP, 64 MB
    Memory Module: DIMM0/BUILT-IN, 256 MB, built-in, built-in
    Memory Module: DIMM1/J31, 512 MB, DDR SDRAM, PC2700U-25330
    AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
    Modem: Jump, V.92, Version 1.0
    Bluetooth: Version 1.7.14f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Parallel ATA Device: MATSHITACD-RW CW-8123
    Parallel ATA Device: ST9100824A, 93.16 GB
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA

    i just managed to fix a similar problem by reinstalling the 10.4.11 update using "Mac OS X 10.4.11 Combo Update (Intel)" available on the Apple Download site.
    http://www.apple.com/downloads/macosx/apple/macosx_updates/macosx10411comboupdat eintel.html
    In my case, many other applications were crashing in NSRTFWriter including: Stickies and most importantly Installer . To work around that that I stumbled on the command-line program /usr/sbin/installer and did something like so in a Terminal
    $sudo /usr/sbin/installer -pkg /Volumes/Mac\ OS\ X\ 10.4.11\ Combined\ Update\ \(Intel\)/MacOSXUpdCombo10.4.11Intel.pkg -target /
    Actually, since I had canceled this the first time part way through and ended up with an OS that wouldn't boot, it was a little more complex. I finally end up with this:
    1. Booted of the original Install CD (Hold down 'C' while booting).
    2. Selected Utilities -> Terminal
    3. Mounted the .dmg file using
    #hdiutil attach /Volumes/Macintosh\ HD/<path to the dmg file>
    3. Ran the installer with something like
    #installer -verbose -pkg /Volumes/Mac\ OS\ X\ 10.4.11\ Combined\ Update\ \(Intel\)/MacOSXUpdCombo10.4.11Intel.pkg -target /Volumes/Machintosh\ HD

  • Xml from a php file does not load

    hi
    i have a php file that output an xml ,in order to use it in
    flash.
    when i test the php file in the browser i get the xml i need
    but in flash i get this error message:
    TypeError: Error #1088: The markup in the document following
    the root element must be well-formed.
    at taakexml_fla::MainTimeline/seexml()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()
    i took the xml i get and made it a separate file (an xml one)
    and i can load it.
    what am i doing wrong?
    best regards
    ron

    Try this php file:
    $xml_output .= "<posts>";
    while($row=mysql_fetch_array($Result)){
    $xml_output .= "<post>";
    $xml_output .=
    "<title>".$row['title']."</title>";
    $xml_output .= "<date>".$row['date']."</date>";
    $xml_output .=
    "<shortdesc>".$row['short_desc']."</shortdesc>";
    $xml_output .=
    "<thepost>".$row['thepost']."</thepost>";
    $xml_output .= "</post>";
    $xml_output .= "</posts>";
    echo $xml_output;
    Flash should do the rest.

  • SQL - PHP - XML - Flex 2

    Howdy everyone!
    I've only been playing with Flex for about 6 weeks or so and
    I've figured out lots and lots from the online tutorials and help
    system. However the project that I'm trying to put together
    requires that I can pass data back and forth to Db's. I haven't
    even tried to write into a database yet because for the last 3
    weeks I've been trying every combination (except the working one's)
    to write my Db data into XML and use an HTTPService tag to retrieve
    it for use as dataProviders. I've tried everything remotely related
    on this site. Several others I've found online and modified the
    resultFormat and my variable types in every combination
    (resultFormat = "[' ', Object, xml, e4x, text, array]" &
    myDP:[ArrayCollection, Array, XML, XMLList, XMLListCollection]) and
    have received as many errors & nonworking results for my
    efforts. I'm not sure if perhaps there's a PHP/MySQL setting on my
    server that's not set how it should be? or if I just have failed to
    notice some simple detail.
    Here's the PHP version I currently believe most promising:
    quote:
    <?php
    require_once('Connections/peaceheartconnection.php');
    header("Content-type: text/xml");
    mysql_select_db($database_peaceheartconnection,
    $peaceheartconnection);
    $query_topics = "SELECT * FROM p_insight_topics";
    $topics = mysql_query($query_topics, $peaceheartconnection)
    or die(mysql_error());
    $row_topics = mysql_fetch_assoc($topics);
    $totalRows_topics = mysql_num_rows($topics);
    mysql_select_db($database_peaceheartconnection,
    $peaceheartconnection);
    $query_categories = "SELECT * FROM p_insight_types";
    $categories = mysql_query($query_categories,
    $peaceheartconnection) or die(mysql_error());
    $row_categories = mysql_fetch_assoc($categories);
    $totalRows_categories = mysql_num_rows($categories);
    print("<?xml version=\"1.0\" encoding=\"utf-8\"?>");
    $dataXML = '';
    $dataXML .= "<data><categories>";
    while($cat = mysql_fetch_object($categories))
    $dataXML .= "<category>$cat->type</category>"
    $dataXML .= "</categories>";
    $dataXML .= "<topics>";
    while($topic = mysql_fetch_object($topics))
    $dataXML .="<topic>$topic->topic</topic>";
    $dataXML .= "</topics></data>";
    ?>
    <?php
    echo $dataXML;
    ?>
    <?php
    mysql_free_result($topics);
    mysql_free_result($categories);
    ?>
    This gives me results that show up in the browser identical
    to
    An XML file from
    "Flex 2 Training from the Source" (I event get the "no
    associated style information ... document tree is shown" message
    from Firefox).
    Here are the relevant parts of the Flex app:
    quote:
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns:ns1="Components.*" layout="absolute" autoLayout="true"
    horizontalScrollPolicy="off" verticalScrollPolicy="off"
    creationComplete=" getData()" >
    <!-- Service Definitions -->
    <mx:HTTPService id="getTypesNTopics" url="../../data.xml"
    method="POST" useProxy="false"
    result="showData(event)" fault="handleFault(event);" />
    <mx:HTTPService id="getTypesNTopics2"
    url="../../topicsNcategories5.php" method="POST" useProxy="false"
    result="showData2(event)" fault="handleFault2(event);" />
    <!-- End Service Definitions-->
    <mx:Script>
    <![CDATA[
    import mx.collections.XMLListCollection;
    import mx.effects.*;
    import mx.effects.easing.*;
    import mx.containers.*;
    import mx.core.*;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.FlexEvent;
    import mx.controls.Alert;
    import flash.events.*;
    import mx.managers.DragManager;
    import mx.events.DragEvent;
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    [Bindable] private var topicsAC:ArrayCollection = new
    ArrayCollection();
    [Bindable] private var categoryAC:ArrayCollection = new
    ArrayCollection();
    [Bindable] private var topics2AC:XMLListCollection = new
    XMLListCollection();
    public function getData():void
    getTypesNTopics.send();
    getTypesNTopics2.send();
    private function showData2(event:ResultEvent):void
    //topics2AC = event.result.data.topics.topic;
    lastResultValue2.text = "Event, Categories:"
    +event.result.data.categories.category
    + "Event, Topics:" + event.result.data.topics.topic;
    scrollMenu.dataProvider = event.result.data.topics.topic;
    lastResultValue2.text = "Result: " +
    String(event.result.data.topics.topic);
    private function handleFault2(event:FaultEvent):void
    lastResultValue2.text = "Error: " + event.fault;
    (Keep in mind that the function & service tag contents
    are just the latest version as of 20 mins ago.)
    Any help would be greatly appreciated. There are still dozens
    of other things I want to get working on but there's no point until
    I can get my app. to talk with mySQL (databases). I'm begging
    PLEASE after weeks of wasting time trying to get my <topic>
    & <category> nodes to populate two ComboBoxes I just
    wrote a static XML file last night--just so I could feel like I had
    accomplished something (that's what the first Service tag does).
    Thanks 2^65536 times!
    Todd

    As it is posted right now (resultFormat (rF) = default object
    with the result assigned directly), I don't receive an error but
    lastResultValue.text & scrollMenu (a comboBox) both read
    "$topic->topic."
    With rF = default (object) & topics2AC:ArrayCollection
    (assigned to the text & CB) I get: "Type Coercion failed:
    cannot convert "$topic->topic" to
    mx.collections.ArrayCollection. ..."
    With rF = e4x, data type (dT) = arrayCollection I get:
    "Error: [RPC Fault faultString="Error #1088: The markup in the
    document following the root element must be well-formed."
    faultCode="Client.CouldNotDecode" faultDetail="null"] "
    (e4x is the format that I WANT to use, but anything working
    will suffice for now)
    rF = xml, dT = AC: "Property data not found on
    flash.xml.XMLDocument and there is no default value."
    With the "xml version" tag removed rF = e4x, dT =
    XMLListCollection I get " Error #1034: Type Coercion failed: cannot
    convert "$topic->topic" to mx.collections.XMLListCollection."
    Likewise with dT=arrayCollection: "Error #1034: Type Coercion
    failed: cannot convert "$topic->topic" to
    mx.collections.ArrayCollection." (Same with dT=XMLList)
    The underlying code(source) of the PHP page's output is:
    "<data><categories><category>Poem</category>
    ...</categories><topics><topic>Teaching</topic>...<topic>Kids</topic></topics></data>"
    There's an empty line above the source. The <?xml version="1.0"
    encoding="utf-8"?> tag is/isn't there depending on whether I
    leave it in or not. I don't know how/why the empty line is there.
    The general result seems to be that I get either "cannot
    decode" using e4x, "cannot convert $topic->topic" using anything
    else. Perhaps the problem is still in the PHP, but Firefox
    recognizes & treats it as valid XML giving me the "
    This XML file does not appear to have any style information
    associated with it. The document tree is shown below.

    <data>

    <categories>
    <category>Poem</category>
    <category>Song</category>
    <category>Prayer</category>
    <category>Idea</category>
    <category>Whim</category>
    <category>Enlightenment</category>
    <category>Quote</category>
    <category>Answers</category> ..." when I call the
    page. So I'm at a loss as to what to even try anymore.
    Thanks again anyone, everyone
    Merry Christmas, Happy Hannukah, Happy Holidays, etc.
    Todd

  • FlexGrocer Problems

    Hi All
    I'm new to this flex stuf and trying to work through the book
    "Flex 2
    Training from the Source"
    Some of the examples run fine. Mostly the lower level
    chapters. After
    applying the Arrata updates to the flexGrocer (completed
    folder) and to the
    files in chapter 17. I also added the three xml files that
    had been left out
    to my CF server. Now when I complie and try to run the
    Ecomm.mxml I get this
    error. I see it has something to do with one of the xml files
    but that's all
    I can read of this error. Can anyone explain it to me?? Also
    the same app
    return NO categories in the header.
    [RPC Fault faultString="Error #1088: The markup in the
    document following
    the root element must be well-formed."
    faultCode="Client.CouldNotDecode"
    faultDetail="null"]
    at
    mx.rpc.http::HTTPService/
    http://www.adobe.com/2006/flex/mx/internal::processResult()
    at
    mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::resultHandler()
    at mx.rpc::Responder/result()
    at mx.rpc::AsyncRequest/acknowledge()
    at ::DirectHTTPMessageResponder/completeHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    Bill

    after running through the debugger and trying to follow the
    processes it
    looks like it's getting tripped up on the
    categorizedProducts.cfm which in
    turn queries the categorizedProducts.xml and that the format
    of that xml is
    not quit what it should be. Probably getting hung up on the
    "White Space"
    because of the way it's developer formatted the content for
    readability.
    gonna change it and post back the results
    Bill
    "Bill Betournay" <[email protected]> wrote in message
    news:f3rp44$ohf$[email protected]..
    > Hi All
    >
    > I'm new to this flex stuf and trying to work through the
    book "Flex 2
    > Training from the Source"
    >
    > Some of the examples run fine. Mostly the lower level
    chapters. After
    > applying the Arrata updates to the flexGrocer (completed
    folder) and to
    > the files in chapter 17. I also added the three xml
    files that had been
    > left out to my CF server. Now when I complie and try to
    run the Ecomm.mxml
    > I get this error. I see it has something to do with one
    of the xml files
    > but that's all I can read of this error. Can anyone
    explain it to me??
    > Also the same app return NO categories in the header.
    >
    > [RPC Fault faultString="Error #1088: The markup in the
    document following
    > the root element must be well-formed."
    faultCode="Client.CouldNotDecode"
    > faultDetail="null"]
    > at
    > mx.rpc.http::HTTPService/
    http://www.adobe.com/2006/flex/mx/internal::processResult()
    > at
    > mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::resultHandler()
    > at mx.rpc::Responder/result()
    > at mx.rpc::AsyncRequest/acknowledge()
    > at ::DirectHTTPMessageResponder/completeHandler()
    > at
    >
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    > at flash.events::EventDispatcher/dispatchEvent()
    > at
    flash.net::URLLoader/flash.net:URLLoader::onComplete()
    >
    >
    > Bill
    >
    >
    >

  • Reimport or extract edb-File

    Hello everyone,
    I have had a total server crash. Everything is not correctly working and the full windows system is damaged (empty popups, strange errors, no desktop icons etc.). BUT fortunately my Exchange-Folder seems to be untouched and completely well. So at first I
    started to copy my Mailbox-Folder (which includes the edb file). Is there anything else I should recover?
    Now I want to reinstall everything which will result in a completely new domain with a new Exchange setup. The domain name will remain the same, but the Domain Controller and Exchange Server will be completely new. Is there a way, to reimport my edb-file
    into the new Exchange server after the Installation or will it crash because the new server cannot handle the old mailbox database? In fact, there is only one Mailbox I want to reimport (my own one) as I am a Student^^
    So I just want to reinstall everything and import my mails again. What should I do or backup else before I format the HDD?
    Thank you!!
    Regards
    Christian

    Exchange version/SP/Rollup updates?
    Domain Really doesn't matter here to mount a database!
    If you have EDB File you can mount it only *IF* the below is true:
    Exchange Organization & Administrative Group Name should be same. In case if your Exchange Organization/Administrative Group doesn't match between your Old Environment
    and New, The database will fail to mount with Error 1088.
    If your old Exchange Server is not a Domain Controller then you may go with Disaster Recovery Process.
    A Guide to Exchange Disaster Recovery Planning
    As you are building the environment from scratch you may follow the below:
    From the command prompt run the command: 
    Find /i "/o=" "Your datbase path\Your Database Name.edb"
    From the output above what we get is: /o=DATAMATICS LTD which is my Exchange organization
    Name and /OU=First Administrative Group which is my administrative group.
    So, you would need to install Exchange with OrganizationName Specified as Datamatics. If your Exchange version is 2007/2010 then you don't need to really worry about Administrative Group. In case if your Exchange version is Exchange 2003 and if you know
    for sure that the name of the Administrative group is "First Administrative Group" (by default this will be the name) the you can mount the old edb file on the new server and you can reconnect your disconnected mailbox after you create an AD Account.
    Also , Make sure to copy the logs as you will need them in case if your database is in dirty shutdown state.
    If your Outlook is in Cached Mode, then you don't need to worry about the Data in the EDB as you will have data cached on your Client. You can export the PST & Import PST after you provision a new mailbox for yourself. but, you may have an issue when
    users reply to your old emails
    M.P.K ~ ( Exchange | 2003/2007/2010/E15(2013)) ~~ Please remember to click “Vote As Helpful" if it really helps and "Mark as Answer” if it answers your question, “Unmark as Answer” if a marked post does not actually answer your question. ~~ This Information
    is provided is "AS IS" and confers NO Rights!!

  • Unable to refresh browser after HTTPService Call

    I"m having a very similar problem and I'm wondering if any resolution has come up. I use an Init() which goes off and uses httpservice to get XML to put int oan array collection. I then use it, and if the user makes a bunch of changes and them pushes a button to publish the changes, it uses httpservice to send the variables via POST back to a PHP script. Works great, except anytime AFTER the user presses publish if they happen to press the refresh button on the broswer I get:
    [RPC Fault faultString="Error #1088: The markup in the document following the root element must be well-formed." faultCode="Client.CouldNotDecode" faultDetail="null"]
    at mx.rpc.http::HTTPService/http://www.adobe.com/2006/flex/mx/internal::processResult()[C:\autobuild\3.2.0\frameworks\ projects\rpc\src\mx\rpc\http\HTTPService.as:924]
    at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()[C:\autobuild\3.2.0\frameworks\ projects\rpc\src\mx\rpc\AbstractInvoker.as:188]
    at mx.rpc::Responder/result()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\Responde r.as:43]
    at mx.rpc::AsyncRequest/acknowledge()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\ AsyncRequest.as:74]
    at DirectHTTPMessageResponder/completeHandler()[C:\autobuild\3.2.0\frameworks\projects\rpc\s rc\mx\messaging\channels\DirectHTTPChannel.as:403]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()
    Again, so long as the user avoids ever using the refresh button all is well. I"m using FLEX 3. Any understanding or reasoning would be really helpful.
    Below are my HTTPService calls
    This one is used to get XML data form the PHP script:
    <mx:HTTPService id="XMLdb" url="http://10.101.50.60/get_config.php"
    method="POST" showBusyCursor="true" resultFormat="e4x" result="phpresultHandler(event)"/>
    This one is used to send back changes values with a key from the array collection:
    <mx:HTTPService id="sendtophp" url="http://10.101.50.60/get_config.php" useProxy="false" method="POST">
        <mx:request xmlns="">
         <key>{keytoinsert}</key><value>{valuetoinsert}</value>
        </mx:request>
    </mx:HTTPService>

    Tried to reproduce your problem:
    Created a PHP which spits out an XML. Read this from Flex Application
    Created another PHP to do update an item on backend SQL database.
    After pressing the publish button, I refresh in browser but see no errors.
    Can you attach your flex/PHP source?

  • Adobe AIR communicate with PHP

    Hi,
    How can I have Adobe AIR program to communicate with PHP? For example, I need my app to get some value from PHP and display it. I have tried with "webservice" and using the example I found here: http://dimuthuc.blogspot.com/2008/01/php-webservice-consume-from-flex.html. But it doesn't work, and it shows "Error #1088: The markup in the document following the root element must be well-formed."
    How can I get it works? Is there any other good example? Thanks.

    My php is exactly the same as from the example from http://dimuthuc.blogspot.com/2008/01/php-webservice-consume-from-flex.html.
    I am totally no idea how Flex work with PHP. Will Flex able to grape a value of the PHP which I simply do an echo on PHP side?
    Here is my flex AIR code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                           xmlns:s="library://ns.adobe.com/flex/spark"
                           xmlns:mx="library://ns.adobe.com/flex/mx">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
            <s:WebService id="service" wsdl="http://localhost/online/test.php"
                          useProxy="false" showBusyCursor="true" result="service_resultHandler(event)" fault="service_faultHandler(event)" />
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.rpc.events.FaultEvent;
                import mx.rpc.events.ResultEvent;
                private function callService():void
                    service.loadWSDL();
                    service.greet(input.text);
                protected function service_resultHandler(event:ResultEvent):void
                    // TODO Auto-generated method stub
                    result.text = event.result.toString();
                protected function service_faultHandler(event:FaultEvent):void
                    // TODO Auto-generated method stub
                    Alert.show(event.fault.faultString, event.fault.faultCode);
            ]]>
        </fx:Script>
        <s:Panel id="pnlMain" x="10" y="10" width="450" height="250" title="My Greeting Client">
            <s:TextArea x = "10" y="15" id="input" editable="true" width="400" height="50" />
            <s:TextArea x = "10" y="100" id="result" editable="false" width="400" height="50" />
            <s:Button x="10" y="170" label="Call WebService"
                       id="butJSDisplay" click="callService()"/>
        </s:Panel>
    </s:WindowedApplication>
    PHP file:
    <?php
    /** greet function
      * @param string $name
      * (map to xs:string)
      * @return string $greetReturn
      * (map to xs:string)
    function greet($name)
       $result = array ('greetReturn' => "Greetings, ".$name);
       return $result;
    $operations = array('greet' => 'greet');
    $parameters = array('greet' => 'MIXED');
    $service = new WSService(array
                   'operations' => $operations,
                   'opParams' => $parameters
    $service->reply();
    ?>

Maybe you are looking for

  • Error while creting webi report on top of query ,using BO XI3.1

    Hi, I'm getting below error while creating webi report ,tried to applying some patches but no luck SAP021_sales value report a database error occured ,the data base error text is error in MDD darasetBW.getcelldata.system error in program CL_RSR_MDX_B

  • How can I make "Open Link in New Tab" open the new tab in the same window, not a different window?

    When I Ctrl-click a link and choose "Open Link in New Tab" it chooses to open the new tab in a different window (one that's already open) rather than opening the new tab in the same window. Even though the other window is minimized, it automatically

  • Problem with saving PDF in Preview

    When I open PDF file in Preview in OS 10.5. (make changes) and save it as PDF again, this pdf file does not display corectly on PC. Fonts are missing. When I save in Acrobat, everything is correct. I looked on the information about saved pdf, and Pre

  • To display images as thumbnails by connecting to the server

    hi all, just wondering if anyone has done something like this i.e.. Make a connection to the server, to a particular directory/directories , get all the images and view the images on the fly as thumbnails... I am struggling to do the view images as t

  • How to activate brightness in Vista with Satellite 5200-802

    Hi! I am using a Toshiba 5200-802 and i have installed VISTA on it. it works fine except that normally in XP, there is a *Toshiba key option (FN key + F7)* that makes the *_screen brighter_*, and this does not work in VISTA. When Vista starts, the De