XML Parsing error: not well-formed (invalid token) (error code 4) --- Urgent Help Needed!

Hi all, what im doing now is im trying to create a database connection my my MS SQL 2005 database. I created a data source and went to my Adobe Lifecycle Designer 7.1, i created a new data connection, selected OLEDB and created the connection string using the build function.
Ok, now the problem is, after creating the new data connection and i click on the preview tab, i will receive the error stated above.
'XML Parsing error: not well-formed (invalid token) (error code 4), line 444, column 1 of file'
Does anyone know why am i receiving this error and how do i go about solving this?
I need this database connection to pre-fill my form when the user downloads the form =(

I have a vital form that clients fill out, which is passed to many people in the company along the workflow. The form is a Planner and we have in the following PDF, Word Doc..
Well before, the Planner.pdf was originally created in Word, since most people have access to Word.. but evolved to a PDF form created from the Word Doc via Adobe LiveCycle Designer 8.0 w/ User Rights enabled so that the form could be filled out and saved using Adobe Reader.. which was a step better than Word.. being that it is free. But this needed to be easier and more to the point b/c some clients don't particularly like installing the latest version of Reader, even if you provide them the link. Nor do they like saving the form, filling the form, and attaching the form to send back.
My goal is to have the client fill an HTML version of the form, submit and be done with it, but everyone in the workflow be able to easily receive the filled Planner as a PDF form.
So some months ago I ran into this post Chris Trip, "Populate Livecycle PDF from mySQL database using PHP" #8, 22 Sep 2007 4:37 pm
which uses the command line Win32 pdftk.exe to merge an FDF file into an existing PDF on the remote server, and serve this to whoever.
My problem was with shared hosting and having the ability to use the Win32 pdftk.exe along with PHP which is predominantly used on Linux boxes. And we used a Linux box.
so i created the following unorthodox method, which a client fills the HTML version of the Planner, all field values are INSERTED into a table in MySQL DB, I and all filled planners that have been filled by clients to date can be viewed from a repository page where an XML file is served up of the corresponding client, but someone would have to have Acrobat Professional, to import the form data from the XML file into a blank form.. altoughh this is simple for me.. I have the PHP file already created so that when a Planner is filled and client submits. >> the an email is sent to me with a table row from the repository of the client name, #, email, and a link to d-load the XML file,
But I also have the PHP files created so that the Planner can be sent to by email to various people in the workflow with certain fileds ommitted they they do not need to see, but instead of the XML file beiong served up i need the filled PDF Planner to be served.
I can do this locally with ease on a testing server, but I am currently trying to use another host that uses cross-platform compatibility so i can use PHP and the pdftk.exe to achieve this, as that is why I am having to serve up an XML file b/c we use a Linux server for our website, and cant execute the exe.
Now that I am testing the other server (cross-platform host), just to use them to do the PDF handling (and it's only $5 per month) I am having problems with getting READ, WRITE, EXECUTE permissions..
Si guess a good question to ask is can PHP do the same procedure as the pdftk.exe, and i can eleminate it.
or how in the heck can i get this data from the DB into a blank PDF form, like i have described??
here are some link to reference
Populating a LiveCycle PDF with PHP and MySQL
http://www.andrewheiss.com/Tutorials?page=LiveCycle_PDFs_and_MySQL
HTML form that passed data into a PDF
http://www.mactech.com/articles/mactech/Vol.20/20.11/FillOnlinePDFFormsUsingHTML/index.htm l
and an example
http://accesspdf.com/html_pdf_form/

Similar Messages

  • WHAT IS THE FIX TO THIS ERROR:  XML Parsing error: not well-formed (invalid token) (error code 4)

    Hello, looking to see if there's anyone out there who knows how to resolve this error from popping up when I open a previously saved adobe file with data populated inside (tax form). 
    The error states: 
    XML Parsing error: not well-formed (invalid token) (error code 4), line 16028, column 2 of file. 
    So when I go to open this file, THAT ERROR appears.  But then allows me to view the content inside the PDF (tax form) - however it will not allow further editing - this is an issue. 
    This began after working and populating certain files, then transferring to a hosting site.  Now when I open any PDF file from the hosting site, the error appears.  Could just be coincidental however throwing that out there in case it's useful.
    What causes this error & what is the fix?
    Cheers! 

    Unfortunately No.  This was a tax form downloaded from IRS.gov.  The PDF file has been populated and saved off.  I believe the file has somehow become corrupt.  Curious how to cleanse the file so it opens without issue (that error message).
    Thanks for your response

  • Xml parsing error: not well-formed (invalid token) (error code 4) - URGENT

    Hi all, i am doing an adobe form which requires me to pre-fill my form when a user downloads the form, but 1st i need a database connection, after creating a Data Source, i opened my intereactive form and created a new data connection, but after creating a data connection and i click on the preview tab, i will receive this error:
    'Xml parsing error: not well-formed (invalid token) (error code 4), line 444, column 1 of file'
    It really is a headach for me, i tried many ways of creating a database connection to my MS SQL 2005 database but failed, can anyone tell me why is am i receiving this error? and can someone guide me on solving this problem?
    POINTS AWARDED HANDSOMELY IF ANYONE IS WILLING TO HELP ME
    Thanks in advance

    Hi all, i am doing an adobe form which requires me to pre-fill my form when a user downloads the form, but 1st i need a database connection, after creating a Data Source, i opened my intereactive form and created a new data connection, but after creating a data connection and i click on the preview tab, i will receive this error:
    'Xml parsing error: not well-formed (invalid token) (error code 4), line 444, column 1 of file'
    It really is a headach for me, i tried many ways of creating a database connection to my MS SQL 2005 database but failed, can anyone tell me why is am i receiving this error? and can someone guide me on solving this problem?
    POINTS AWARDED HANDSOMELY IF ANYONE IS WILLING TO HELP ME
    Thanks in advance

  • XML-error: Not well-formed (invalid token)

    Hello,
    I want a new XML structure in the Script from my InDesign CS6 (MAC 10.7.4) document. Here ist my little testscript:
         var doc = app.documents.item(0);
         var allStories = doc.stories;
        newXML = new XML('<root></root>');
        for(var i = 0; i < allStories.length; i++) {
            var curStory = allStories[i];
             for(var j = 0; j < curStory.textStyleRanges.length; j++) {
                var textStyleRange = curStory.textStyleRanges[j];
                alert(textStyleRange.contents);
                t = new XML('<content>' +textStyleRange.contents + '</content>');
                newXML.appendChild(t);
        alert(newXML);
    The document has a text frame with the text, such as "C & A". When the script starts, it shows me the error message "XML-error: Not well-formed (invalid token)" on.
    The problem with the "&" is. Probably also other Characters.
    I think InDesign can automatically convert this into "&amp;" or other entities, but how?

    I solved the Problem.
    The line with
    t = new XML('<content>' +textStyleRange.contents + '</content>');
    is the Problem. textStyleRange.contents is not converted. The right way is here for the line:
    t = new XML('<content></content>');
    t.appendChild(textStyleRange.contents);

  • DPM 2012 R2 install fail - Reporting services "definition contains XML that is not well-formed or the XML is not valid"

    Hi Everyone,
    I've been battling with this for a while and I'm getting nowhere. I'm attempting to install DPM 2012R2 onto a fresh VM with a local SQL installation. The setup is as follows:
    Server OS: 2008R2 SP1
    SQL: 2008 R2 standard with SP3(tried SP2 before this)
    Collation: SQL_Latin1_General_CP1_CI_AS
    Reporting services installed: Yes(ticked do not configure during the installation)
    Enabled reporting servics on port 80 with the default URL
    DPM Installation does not throw any errors during the preinstall stage(The server passes all the checks)
    Basically, when Installing. I get this error(extract):
     at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.DeployFileInServer(Boolean recreate, ReportDBInfo rptInfo)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.DeployReports(String sourceFolderPath, Boolean recreate, Boolean calledFromSetup)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.InstallReports(Boolean calledFromSetup, String sourceFolderPath, String sqlServerName, String sqlInstanceName, String dbConnectionString)
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.ReportingConfiguration.DeployReports(Boolean isRemoteReporting, String sqlMachineName, String sqlInstanceName, String rsMachineName, String rsInstanceName, String installerPath)
    [10/12/2014 2:35:25 p.m.] * Exception :  => Report configuration failed.Verify that SQL Server Reporting Services is installed properly and that it is running.Microsoft.Internal.EnterpriseStorage.Dls.Setup.Exceptions.BackEndErrorException: exception
    ---> Microsoft.Internal.EnterpriseStorage.Dls.Setup.Exceptions.ReportDeploymentException: exception ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.ReportingException:
    exception ---> System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: The report definition is not valid or supported by this version of Reporting Services. This could be the result of publishing a report definition of
    a later version of Reporting Services, or that the report definition contains XML that is not well-formed or the XML is not valid based on the Report Definition schema. Details: Root element is missing.
       at Microsoft.ReportingServices.WebServer.ReportingService2005Impl.CreateReport(String Report, String Parent, Boolean Overwrite, Byte[] Definition, Property[] Properties, Warning[]& Warnings)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.CreateReport(String Report, String Parent, Boolean Overwrite, Byte[] Definition, Property[] Properties, Warning[]& Warnings)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Reporting.ReportingService2005.CreateReport(String Report, String Parent, Boolean Overwrite, Byte[] Definition, Property[] Properties)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.CreateReport(String pathOfReport, ReportDBInfo rptInfo)
       --- End of inner exception stack trace ---
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.CreateReport(String pathOfReport, ReportDBInfo rptInfo)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.DeployFileInServer(Boolean recreate, ReportDBInfo rptInfo)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.DeployReports(String sourceFolderPath, Boolean recreate, Boolean calledFromSetup)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.Library.Reporting.Reporter.InstallReports(Boolean calledFromSetup, String sourceFolderPath, String sqlServerName, String sqlInstanceName, String dbConnectionString)
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.ReportingConfiguration.DeployReports(Boolean isRemoteReporting, String sqlMachineName, String sqlInstanceName, String rsMachineName, String rsInstanceName, String installerPath)
       --- End of inner exception stack trace ---
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.ReportingConfiguration.DeployReports(Boolean isRemoteReporting, String sqlMachineName, String sqlInstanceName, String rsMachineName, String rsInstanceName, String installerPath)
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.BackEnd.DeployReports(String reportserverConfigFilePath, Boolean isOemSetup, String sqlMachineName, String sqlInstanceName, Boolean isRemoteReporting, String reportingServerMachineName, String
    reportingInstanceName)
       --- End of inner exception stack trace ---
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.BackEnd.DeployReports(String reportserverConfigFilePath, Boolean isOemSetup, String sqlMachineName, String sqlInstanceName, Boolean isRemoteReporting, String reportingServerMachineName, String
    reportingInstanceName)
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.DpmInstaller.DeployReports(Boolean isRemoteReporting, Boolean isUpgrade)
       at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.ProgressPage.InstallerThreadEntry()
    *** Mojito error was: ReportDeploymentFailed; 0; None
    [10/12/2014 2:35:25 p.m.] *** Error : Report configuration failed.
    Verify that SQL Server Reporting Services is installed properly and that it is running.
    ID: 812
    [10/12/2014 2:35:25 p.m.] Information : Data Protection Manager installation has failed. All the items that were copied during the installation process have been removed.
    For details, click the Error tab.
    Any ideas?
    I've managed to get it to this stage. Originally I didn't have encryption keys or a listening port(which I fixed).

    Can you try following steps:
    If there are SSL certificates on your computer, by default SQL 2008
    installation configures HTTPS for reporting websites. When DPM tries to
    deploy reports on these websites it may fail if the reporting websites
    are not accessible (might be due to invalid/expired certificates). To
    workaround this, provided you do not require HTTPS for reporting websites do
    the following:
    1. Edit C:\Program Files\Microsoft DPM\SQL\MSRS10.MSDPMV3BETA1EVAL\Reporting
    Services\ReportServer\rsreportserver.config
    2. Set the SecureConnectionLevel to 0 if the current value is 2 (A value to
    2 means secure connection is required)
    3. Connect to SQL reporting service configuration manager and connect to the
    instance MSDPMV3BETA1EVAL
    4. Click on Web Service URL, click advanced and remove SSL identities
    5. Repeat the above for Report Manager URL
    6. Make sure report manager URL and web service URL are accessible with out
    any errors.
    6. Restart report server
    If that doesn't solve the problem, please try following steps:
    1. Open Start-> All programs->SQL server 2008->Configuration Tools->Report
    Server Configuration Manager
    2. Connect to the instance which the DPM is using to install.
    3. Browse Report Manager URL and web service url
    4. If report manager URL or web service url throws any error say 500 or 404
    fix the error. (Try also replacing machine name with localhost in url)
    5. Otherwise delete DPMReports folder (if present) using below instructions
    6. Restart reporting services
    7. Try DPM setup again.
    Deleting DPM reports:
    1. Open report manager URL in IE
    2. Click show details on right hand side
    3. Put a tick against DPMReports folder
    4. Click Delete button.
    Regards, Trinadh [MSFT] This posting is provided AS IS with no warranties, and confers no rights. If you found the reply helpful, please MARK IT AS ANSWER. Looking for source of information for DPM? http://blogs.technet.com/b/dpm/ http://technet.microsoft.com/en-in/library/hh758173.aspx

  • Groupware Integration XML message is not well formed

    Hi everybody,
    I have the problem that i got an message in the error log of the Groupware Connector at the Groupware server.
    ERROR MIDDLEWARE - CREATE APPOINTMENT - - "[ERR: 6005]: Failed to get message from data queue: [ERR: 4001]: XML message is not well formed: [org.xml.sax.SAXException]: org.xml.sax.helpers.AttributesImpl@4cb3a4"
    I also got an entry in the Groupware Connector Administrative Toll under current locks:
    ORGANIZER_UNKNOWN:GWA_01 with error code 4001. (I think this belongs to the message of the error log)
    Error Code 4001 stands for XML message is not well formed.
    Has anybody a solution for the problem. What can I do. Where can I get more information or debugg the problem? Where can i see the XML message?
    Thanks and best regards,
    Sebastian

    Hi Sebastian,
    Have you solved your problem? I have got the same on CRM 6.0.
    Thanks and regards,
    Yann
    Edited by: YANN SZWEC on Feb 17, 2010 10:28 AM

  • 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

  • Since I updated Firefox 4, I cannot open any attachments in my Gmail, whether Word or PDF files, I can only view them. When trying to download attachments I get an error message: "XML Parsing Error:undefined entity. Help!

    The full error message is the following:
    XML Parsing Error: Undefined entity
    Location chrome://mozapps/content/downloads/unknown content type.xul
    Line Number 30, Column 18

    In order to use ''nxm://'' links, Nexus Mod Manager must be installed and associated with the ''nxm'' protocol.
    * http://www.nexusmods.com/skyrim/mods/modmanager/
    In case of problems with this third-party program, please refer to its support forum:
    * http://forums.nexusmods.com/index.php?/forum/1413-nmm-code-development-chat

  • XML output is not well formed

    Hi,
    I'm here with a strange issue.
    My XI server sometimes creates non-well formed xmls. I have observed that this happens only when there is large number of messages. The output was a 14 MB xml file and the error is not consistent.
    I have got "m³" right 19969 times in the 14 MB file and 5 went came with missing superscript and closing tag.
    Output XML file.
    Please help!
    Thanks,
    Anish
    Edited by: Anish Abraham on Apr 23, 2009 10:40 AM

    Anish,
    Firstly, I think it is nothing to do with the size of the file.  Reason being is that out of 19k times only 5 came wrongly.
    I do believe that the data generated from ABAP proxy with those values have to do something on this.
    Is it possible for you to take the 5 item and check it separately by running the interface again.
    If still the superscript is missing, then it is problem with the data else there might be some other issues which i believe you need to raise only OSS notes.
    Regards
    Krish

  • XML Problem - Markup not well-formed? (kinda long)

    Hello, I'm working on my first AIR app and I've run into a bit of a snag.  The app is intended to allow users of our system to create a Word document, save it as XML, and then load it into the AIR app and have some manipulation performed to extract data, and finally store the data in a database.  The reasons for this app to exist are pretty irrelevant for the particular problem that I'm having, but a little background on my development efforts might help shed light on my situation, and with luck one of you might be able to help me figure this out.
    I started on this app using the URLLoader and URLRequest objects to load a Word document saved as XML from a server.  This worked fine, I created logic to distinguish between Word 2007 and Word 2003 XML formats and using the E4X XML and XMLList objects I was able to load that XML into an XML object, change it to a string, grab the document body, strip out namespaces and such (formatting is mostly irrelevant here too, only the actual data is of importance) amd eventually get a much simpler XML object or list that contained just the data relevant to the purpose at hand.  This was all working fine, I managed to get both Word XML formats to process as I wished and spit out new XML that will serve as the basis for another application that we run.  Great! 
    The problem was that in order to use this method in a distributed way I needed to have the original Word documents accessible to the code, which meant having the user upload their Word file (saved as XML) and then retrieving it with the URLLoader and URLRequest.  I actually implemented this method using the FileReference object in AS3 and using some simple PHP code to store the file in a server directory that was accessible to the client.  Unfortunately, this lead me to thinking about the security issues involved and how allowing PHP to write to a directory would open it to potential malicious attacks, yada yada yada, you all know the issues.  So I thought that I might be able to read the file before uploading it in the kind of circular logic that sometimes happens.  When I started into the AS3 docs to check on classes to help, I realized that my initial suspicions were correct and that in order to load and read the file locally, I could use AIR, have the user load up their XML file, process it and then send the resulting XML and info to the database directly (eliminating the need to send files to the server AND preventing the need to allow PHP to write to the server in this instance).
    So after a bit of reading and testing, I managed to modify my FLA to publish an AIR file, and started debugging.  My Word 2007 document worked fine - I create a File object and a FileStream object and they are easily able to access the file the user selects via the File.browseForOpen method.  I then run the processing code, which begins by creating an XML object from the data read from the file.  What's happening now is that while the Word 2007 document loads and processes without an issue, the Word 2003 document is causing a 1088 error: The markup in the document following the root element must be well-formed.
    I don't understand why this is happening since the same document in the same format was able to be loaded into an XML object when I used the URLLoader to grab the file.  The only thing I can conclude is that somehow the FileStream.readUTFBytes() method is somehow causing an issue.  I am able to trace out what is being read, but the file is lengthy and I haven't completed my analysis to see if and where the changes are occuring.
    If anyone has any experience with this type of situation, I'd really appreciate hearing about it.  Thanks in advance for any help you can provide.

    OK, it turns out that for some reason the Word 2003 XML document was being read with an extra character preceding the actual markup.  By dumping the stream into a string and then clipping the first character I was able to get the app running again.  Thanks for taking the time to read this thread! 

  • AddRow in Adobe Interactive Form givin me wierd Prob. (Urgent help needed)

    Hi, i have an issue trying to add a row to my form.. I need to implement a function called AddRow to my form.. I have a few examples which i found, and the coding is as follows:
    Table1.Row1.instanceManager.addInstance(0);
    When i copied the table from their form to my form and implement the codes, everything worked fine on my Adobe LifeCycle Designer, but then when i tried creating the table exactly as shown in all my examples, and implement the codes.. Cant Work!
    Does anyone have any idea why is this happening?
    Another issue is even after i copy the table from the examples and paste it into my form, my add row was able to work, but as i import my form into SAP Netweaver and deploy it, my add row function stops working.. Its seriously wierd.. Does anyone have any tips, ideas or solutions to this issue? T_T
    Really need to get this done.. =(

    Hi Satya, thanks alot for replying =) i managed to get it done using lifecycle.. another issue now is that after i save the Form which i created in Dynamic PDF format, the AddRow can work.. But using lifecycle to create form has 1 problem, when u enter the form halfway and close the form, the data do not save, but using Netweaver to create the intereactive form, the form created can save.
    Example:
    I enter the form halfway and closes the form, the form will prompt me to save.
    So after i import the Dynamic Form(with addrow functioning) into my SAP Netweaver, when i preview inside it cant add row, ok never mind, i try to deploy my project and my form appear, i try to enter data and close the form, it prompts me to save, but when i click on the AddRow, there is just no response.. I have seriously no idea why is this so.. This is giving me way too much problems =(

  • Connection Error with ICHAT --- urgent help needed ---

    Hi,
    I recently purchased a Mac Mini and am trying to configure the ICHAT to talk with family in America. I tried the Ichat when I purchased the computer in American and did not have any issues. When I accept a call, the ICHAT basically locks up and stops functioning and I have to force quit. When I invite someone for a video conference it just say connecting. My hunch is that we have a router issue which is preventing us from connecting. Currently, we are using a new Level One router and would Greatly Appreciate if someonw can help us reslove this issue. Unforuntaly, I have limited knowledge when it comes to networking and configurations of routers, however, my family here is familar with if i know how to direct them. Sorry for the generalities, but we bought the IMAC specially so that we can use the ICHAT and so we are looking to resolve this issue. Thanks

    Thanks for responding, here is the detail on the system I am running and the error message. Let me know what your thoughts are to resolve this issue. We are running a Level One Router here in Israel because we were unable to configure the Dlink model. Best Regards, Shani
    Date/Time: 2007-07-11 08:45:22.748 -0700
    OS Version: 10.4.10 (Build 8R2218)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 1818935801.
    0x17969d80: State change from AVChatNoState to AVChatStateWaiting.
    emaveaba2: State change from AVChatNoState to AVChatStateInvited.
    0x17969d80: State change from AVChatStateWaiting to AVChatStateConnecting.
    emaveaba2: State change from AVChatStateInvited to AVChatStateConnecting.
    0x17969d80: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -22
    emaveaba2: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -22
    Video Conference Error Report:
    @SIP/Transport.c:121 type=4 (00000000/0)
    [NOTIFY sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP uen0.0;branch=z9hG4bK56f60fd952b2df08
    Max-Forwards: 70
    To: "emaveaba2" <sip:[email protected]>;tag=258578183
    From: "u0" <sip:[email protected]>;tag=1810900911
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 3 NOTIFY
    Contact: <sip:[email protected]>;isfocus
    Event: conference
    Subscription-State: terminated;reason=noresource
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK7b52615917ec4bcc
    To: "u0" <sip:[email protected]>;tag=1810900911
    From: "emaveaba2" <sip:[email protected]>;tag=258578183
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 2 BYE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK7a3dda8371f3a362
    To: "u0" <sip:[email protected]>;tag=1810900911
    From: "emaveaba2" <sip:[email protected]>;tag=258578183
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>;isfocus
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [NOTIFY sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP uen0.0;branch=z9hG4bK608b891454a4cb31
    Max-Forwards: 70
    To: "emaveaba2" <sip:[email protected]>;tag=258578183
    From: "u0" <sip:[email protected]>;tag=1810900911
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 2 NOTIFY
    Contact: <sip:[email protected]>;isfocus
    Event: conference
    Subscription-State: active;expires=3600
    User-Agent: Viceroy 1.2
    Content-Type: application/conference-info+xml
    Content-Length: 180
    [<c-i v="0" st="f" en="sip:[email protected]">
    c<h>i</h><m t="a"/>
    c<h>o</h><m t="a"/>
    </c-i>
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK7a3dda8371f3a362
    To: "u0" <sip:[email protected]>;tag=1810900911
    From: "emaveaba2" <sip:[email protected]>;tag=258578183
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>;isfocus
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [ACK sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP uen0.0;branch=z9hG4bK212927833493617c
    Max-Forwards: 70
    To: "emaveaba2" <sip:[email protected]>;tag=258578183
    From: "u0" <sip:[email protected]>;tag=1810900911
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 1 ACK
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP uen0.0;branch=z9hG4bK4c20dd320145b081
    Max-Forwards: 70
    To: "emaveaba2" <sip:[email protected]>
    From: "u0" <sip:[email protected]>;tag=1810900911
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 458
    [v=0
    o=Muntz 0 0 IN IP4 uen0.0
    s=u0
    c=IN IP4 uen0.0
    b=AS:2147483647
    t=0 0
    a=hwi:70:1:400
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16384 RTP/AVP 12 3 0
    a=rtcp:16385
    a=rtpmap:3 GSM/8000/1
    a=rtpmap:0 PCMU/8000/1
    a=rtpID:1791120610
    m=video 16384 RTP/AVP 34
    a=rtcp:16385
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 15:176:144
    a=framerate:15
    a=RTCP:AUDIO 16385 VIDEO 16385
    a=pogo
    a=rtpID:-1475171940
    Video Conference Support Report:
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.0;branch=z9hG4bK56f60fd952b2df08
    To: "emaveaba2" <sip:[email protected]>;tag=258578183
    From: "u0" <sip:[email protected]>;tag=1810900911
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 3 NOTIFY
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [BYE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK7b52615917ec4bcc
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=1810900911
    From: "emaveaba2" <sip:[email protected]>;tag=258578183
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 2 BYE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.0;branch=z9hG4bK608b891454a4cb31
    To: "emaveaba2" <sip:[email protected]>;tag=258578183
    From: "u0" <sip:[email protected]>;tag=1810900911
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 2 NOTIFY
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SUBSCRIBE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK7a3dda8371f3a362
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=1810900911
    From: "emaveaba2" <sip:[email protected]>;tag=258578183
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>
    Event: conference
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SUBSCRIBE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK7a3dda8371f3a362
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=1810900911
    From: "emaveaba2" <sip:[email protected]>;tag=258578183
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>
    Event: conference
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.0;branch=z9hG4bK4c20dd320145b081
    To: "emaveaba2" <sip:[email protected]>;tag=258578183
    From: "u0" <sip:[email protected]>;tag=1810900911
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 393
    v=0
    o=shanipascal 0 0 IN IP4 m.0
    s=u0
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:1660
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16384 RTP/AVP 12
    a=rtcp:16385
    a=rtpID:1340508509
    m=video 16384 RTP/AVP 34
    a=rtcp:16385
    a=RTCP:AUDIO 16385 VIDEO 16385
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 15:176:144
    a=framerate:15
    a=rtpID:41
    @:0 type=2 (00000000/0)
    [VCAUDIO_INCOMINGATTEMPT]
    [1]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP uen0.0;branch=z9hG4bK4c20dd320145b081
    To: "emaveaba2" <sip:[email protected]>;tag=258578183
    From: "u0" <sip:[email protected]>;tag=1810900911
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP uen0.0;branch=z9hG4bK4c20dd320145b081
    To: "emaveaba2" <sip:[email protected]>
    From: "u0" <sip:[email protected]>;tag=1810900911
    Call-ID: 9f8c8742-2fc5-11dc-ba3c-812a754b13c4@171-66-153-168
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x17dfff com.apple.iChat 3.1.8 (445) /Users/shanipascal/Desktop/iChat.app/Contents/MacOS/iChat
    0x144de000 - 0x1452afff com.apple.speech.synthesis.MacinTalkSynthesizer 3.4 /System/Library/Speech/Synthesizers/MacinTalk.SpeechSynthesizer/Contents/MacOS/ MacinTalk
    0x14853000 - 0x14876fff com.apple.iSightAudio 7.0.4 /Library/Audio/Plug-Ins/HAL/iSightAudio.plugin/Contents/MacOS/iSightAudio
    0x14926000 - 0x1492bfff com.apple.audio.AppleHDAHALPlugIn 1.3.2 (1.3.2a5) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1493c000 - 0x14945fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x14973000 - 0x1499cfff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x14ab0000 - 0x14aebfff com.apple.QuickTimeFireWireDV.component 7.0.4 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x14b0a000 - 0x14b39fff com.apple.QuickTimeIIDCDigitizer 7.0.4 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x1675c000 - 0x16844fff com.apple.audio.codecs.Components 1.4.8 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x168ce000 - 0x16914fff com.apple.QuickTimeUSBVDCDigitizer 2.0.0 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x1693c000 - 0x16995fff com.apple.driver.AppleIntelGMA950GLDriver 1.4.56 (4.5.6) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x1699c000 - 0x169b8fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x169bf000 - 0x169e3fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x16c42000 - 0x16d9bfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16f42000 - 0x16f46fff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x17651000 - 0x17651fff com.apple.SpotLightCM 1.0 (121.36) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x176ce000 - 0x176d0fff com.apple.AutomatorCMM 1.0.1 (87) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x176ea000 - 0x176eefff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x70000000 - 0x700fbfff com.apple.audio.units.Components 1.4.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4afff dyld /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff com.apple.ApplicationServices.ATS 2.0.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.26 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91007000 - 0x91045fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91058000 - 0x91068fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91073000 - 0x910f1fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91126000 - 0x91144fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91150000 - 0x9115efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91161000 - 0x91300fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913fe000 - 0x91406fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9140d000 - 0x91414fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91418000 - 0x9143efff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91450000 - 0x914c6fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91517000 - 0x91517fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91519000 - 0x91544fff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91557000 - 0x9162bfff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91666000 - 0x916d9fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91707000 - 0x917b0fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917d6000 - 0x91821fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91840000 - 0x91856fff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91862000 - 0x9187cfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91886000 - 0x918c3fff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918d7000 - 0x918e3fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918ea000 - 0x9192afff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9193d000 - 0x919effff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a35000 - 0x91a4bfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a50000 - 0x91a6efff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a73000 - 0x91ad2fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ae4000 - 0x91ae8fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91aea000 - 0x91b70fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b74000 - 0x91bb1fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bb7000 - 0x91bd1fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bd6000 - 0x91bd8fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bda000 - 0x91cb8fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cd5000 - 0x91cd5fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cd7000 - 0x91d65fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d6c000 - 0x91d6cfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d6e000 - 0x91dc7fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dd0000 - 0x91df4fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91dfc000 - 0x92205fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9223f000 - 0x925f3fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92620000 - 0x9270dfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9270f000 - 0x9278cfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927cd000 - 0x929fdfff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b17000 - 0x92b2efff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b39000 - 0x92b91fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92ba5000 - 0x92ba5fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92ba7000 - 0x92bb7fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bc6000 - 0x92bcefff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bd4000 - 0x92bd9fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bdf000 - 0x92c70fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c84000 - 0x92c87fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c8a000 - 0x92ca8fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cba000 - 0x92cc0fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cc6000 - 0x92d29fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d4d000 - 0x92d8efff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92db5000 - 0x92dc2fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dc9000 - 0x92dcefff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dd3000 - 0x930c8fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931ce000 - 0x931d9fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931de000 - 0x931f9fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93249000 - 0x93249fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9324b000 - 0x93901fff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c82000 - 0x93cfdfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d36000 - 0x93df0fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e33000 - 0x93e33fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e35000 - 0x93ff6fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9403c000 - 0x9407dfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94085000 - 0x940bffff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940c4000 - 0x940d5fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94119000 - 0x94161fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9416b000 - 0x941a9fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941ed000 - 0x941fefff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9420c000 - 0x9424afff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94266000 - 0x94275fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9427c000 - 0x94287fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942d3000 - 0x942edfff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x942f3000 - 0x945a4fff com.apple.QuickTime 7.0.4 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94706000 - 0x9484cfff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x948d8000 - 0x948e7fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x948ee000 - 0x94917fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9491d000 - 0x9492cfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94930000 - 0x94955fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94961000 - 0x9497efff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94985000 - 0x949eafff com.apple.Bluetooth 1.9 (1.9f8) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94ca9000 - 0x94d3cfff com.apple.WebKit 419.2 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94d96000 - 0x94e18fff com.apple.JavaScriptCore 418.5 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94e51000 - 0x95130fff com.apple.WebCore 418.22 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x952af000 - 0x952d2fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96024000 - 0x96036fff com.apple.speech.SpeechDictionary 3.4 /System/Library/PrivateFrameworks/SpeechDictionary.framework/Versions/A/SpeechD ictionary
    0x96450000 - 0x96450fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96933000 - 0x96955fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x969c6000 - 0x96a9dfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96ab8000 - 0x96ab9fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96abb000 - 0x96ac0fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96c15000 - 0x96c16fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97363000 - 0x9744cfff com.apple.viceroy.framework 278.3.10 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97b8e000 - 0x97b90fff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97dbf000 - 0x9895afff com.apple.QuickTimeComponents.component 7.0.4 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99259000 - 0x99264fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9926e000 - 0x993dafff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message

  • JAXB error...urgent help needed

    I am trying to create an XML document from user input (via the request) and am recieving the following error. I am unsure where to look as I have exhausetd everything I can think of. Given the error, where should I be looking? Could it be I am not creating my elements properly?
    Any help would be greatly appreciated.
    Jesse
    error details:
    DefaultValidationEventHandler: [ERROR]: a required object is missing
    Location: unavailable
    com.sun.xml.bind.serializer.AbortSerializationException: a required object is missing
         at sdh.po.impl.runtime.SAXMarshaller.reportError(SAXMarshaller.java:416)
         at sdh.po.impl.runtime.SAXMarshaller.text(SAXMarshaller.java:262)
         at sdh.po.impl.ContactAddressTypeImpl.serializeElementBody(ContactAddressTypeImpl.java:77)
         at sdh.po.impl.runtime.SAXMarshaller.childAsElementBody(SAXMarshaller.java:378)
         at sdh.po.impl.ContactInformationImpl.serializeElementBody(ContactInformationImpl.java:115)
         at sdh.po.impl.runtime.SAXMarshaller.childAsElementBody(SAXMarshaller.java:378)
         at sdh.po.impl.MetadataTypeImpl.serializeElementBody(MetadataTypeImpl.java:60)
         at sdh.po.impl.MetadataImpl.serializeElementBody(MetadataImpl.java:43)
         at sdh.po.impl.runtime.MarshallerImpl.write(MarshallerImpl.java:161)
         at sdh.po.impl.runtime.MarshallerImpl.marshal(MarshallerImpl.java:134)
         at javax.xml.bind.helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java:66)
         at nfis.SubmissionServlet.doPost(SubmissionServlet.java:87)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2416)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:601)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:534)
    --------------- linked to ------------------
    javax.xml.bind.MarshalException
    - with linked exception:
    [com.sun.xml.bind.serializer.AbortSerializationException: a required object is missing]
         at sdh.po.impl.runtime.MarshallerImpl.write(MarshallerImpl.java:166)
         at sdh.po.impl.runtime.MarshallerImpl.marshal(MarshallerImpl.java:134)
         at javax.xml.bind.helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java:66)
         at nfis.SubmissionServlet.doPost(SubmissionServlet.java:87)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2416)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:601)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:534)

    It is probable that you are creating an element, and then explicitly setting its value to null. This will cause the error you are getting even if the minOccurs for the particular element is set to 0.

  • Error 0x 20030003 Urgent help needed . . . .

    I made this file last year in either Qx or Photoshop. Exported or saved as a PDF. Since then, I have made changes to it in Photoshop. I sent it off to the printer and he can't open it. I tried, but can't open it either. I get the error number listed above. When I try to open it in reader, I get the message that "root object is missing or invalid".
    What do I do and how can I open it?

    Me again, I'd still like to know the answer, but it's not as urgent. My printer found a previous cd which also had the file. It opens! But I'd still like to know why . . . .

  • HP laptop does not wake up from the sleep mode! Urgent help needed!

    Hi everyone,
    I have purchased HP Pavilion DM4 laptop 3 months ago, for the past month when the laptop goes in the sleep mode ( after being idle for several minutes) and I then try to wake up by hitting any key, even power button, nothing happens. Power light keeps beeping but nothing happens. I have to pull battery and restart the laptop, this is extremly painful as I keep loosing my unsaved documents all the time.
    This happens once in every 2 tries. I would really appreciate a help!

    Perform a hard reset on the Notebook. To perform a hard reset, follow the steps below.
    Unplug the AC adapter from the notebook PC.
    Remove the battery from the notebook battery compartment.
    Disconnect any external devices or peripherals connected to the notebook. Press and hold down the power button for about 15 seconds
    After this, update the firmware of your Notebook by downloading it from here Let us know if issue persists even after this done.
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

Maybe you are looking for

  • Proxy receiver channel with HTTP destination or URL address?

    Hi Experts,      I have a scenario as below:      (Webservice Client)SOAP --> PI --> PROXY(SAP ECC).      A webservice client calls PI using SOAP. PI then sends the request to SAP ECC using PROXY.     I am using AAE. Therefore I have ICO.     In the

  • Blackberry curve 9360 hang on playing audio and video and then automatic shut down

    Welcome to the BlackBerry Support forums!   Try and pull the battery to reset the devicem first before we move on to other diagnostic steps. If the battery pull does not work, you may need to reload the software through BlackBerry Desktop software. H

  • AS3 and ColfFusion 8

    I am confused and need some guidence and help. How do I make a Flash CS4 movie interface with ColdFusion 8? In AS2 you used to invoke some web services. Does that still work? is there a better way? Thanks for any help on this.

  • Color Space Question...  using Lagarith Lossless Codec.

    Hi all, I use the Lagarith Lossless Codec for all my source editing files importing into Premiere Pro and for exporting to my encoder I use. My question is this.  I found that most of my sources are in YUV color space, so when I prep them for editing

  • Aperture 3.2.1

    can this be used on new macs or do i need to upgrade to aperture 4? thx conrad