"XML load error: invalid xml declaration ', SV Version 11.1.2.2.300 (Build 070)"

Hello

One of our users of Smart View has a new problem with their link of SV.  Woking in an ad hoc network, they changed some descriptions/names defined around Member and then all of a sudden received the error "XML load error: invalid xml declaration" so they were unable to overcome this error - even after completely logging on the company portal and record then back in.  They would get to the point of choosing an application workspace to connect under the table of connections shared for establishing a new ad hoc connection, but then this error still appears.

Any ideas/suggestions on a solution?

Thank you!

Classic mistake with SmartView. The problem is that one last refreshed point of view users are stored in tables. It is a double-edged sword (part Nice is that's effective/downside, it's that sometimes breaks).

The solution to this problem is remote in the SQL database behind HFM. Expand Databases ""-> HYPHFM (or similar)-> Tables-> find your application_USERPARAMS-> right click and edit top 200 rows. Find that users "USERMBRSEL" and delete the record.

This should reset the stored view and allow the user to continue normal.

Confirm this that my diagnosis is correct is to check if this user can access another application with the smartview, because this error is application specific.

Tags: Business Intelligence

Similar Questions

  • Application Loader error: invalid bundle

    I am trying to download a new binary version with the Application Loader. Application loader gives me the following for days now error message:

    'bundle-invalid-key-cfbundleversion-infoplist-must-contain-higher-version-previously-uploa ded-version '.

    I tried to create a new binary and repeat the process, but I get this message. It seems that this is not an unusual problem, but I have not found a way to solve it. Can anyone help?

    Thank you

    Ninetta

    I guess that you're updating an application. This error typically when you use the App to update an application created with a different set of tools. If you contact support, someone must be able to update your identification number of all. Gold support are listed on the dashboard.

  • Invalid xml declaration in MS word to xml loading

    Hello
    I want to develop relationships of eBusinessSuite with the XML editor. I build a competitor and I'm running to get the XML output. This output that I saved locally for use with MS Word to create model *.rtf. I'll show you the header of this file

    <? XML version = "1.0" encoding = "UTF-8"? >
    -<!
    Generated by the Oracle version 10.1.2.0.2 reports
    ->
    -< AR_TEST >
    -< LIST_G_1 >
    -< G_1 >
    < PERIOD_NAME > dec-95 < / PERIOD_NAME >
    < START_DATE > 1 December 95 < / START_DATE >
    < end_date > 31 December 95 < / end_date >
    < PERIOD_SET_NAME > accounting < / PERIOD_SET_NAME >
    Month < PERIOD_TYPE > < / PERIOD_TYPE >
    < NEW_PERIOD_NUM > 1 < / NEW_PERIOD_NUM >
    < / G_1 >
    -< G_1 >
    < PERIOD_NAME > Jan-96 < / PERIOD_NAME >
    < START_DATE > January 1, 96 < / START_DATE >

    When I use the utility add-in Office XML Publisher from MS Word 5.6.2 I get the following: xml declaration invalid (which seems to be in line 1 error)
    Can you tell me why?
    TIA,
    Aurel

    A fixed gaze and compare. The excerpt you posted looks like it's from XML in a browser rather than XML in a text file. If you have a good XML file, similar to what you're trying to use right now, do you see the extra dashes/hyphens before tags? Probably not.

  • SmartView: XML load error: an invalid character was found in text content.

    Hello

    IM using hyperion 11.1.2.1 with SmartView installed with Office 2007. Many forms are works good about it, but we've entered data on a number of them recently and we are unable to open in SmartView either through the icon and menu options in the workspace or via the smartview Panel in excel 2007. The error we get is "XML load error: an invalid character was found in text content.".

    See you soon,.

    Imran

    Take a look at the Oracle Support - "SmartView XML load error:"Year Invalid character was found in text content"[968808.1 ID]".
    It may be the same problem you are having.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Error: Invalid byte 2 of 4-byte UTF-8 sequence. BlackBerry_App_Descriptor.xml

    Hello

    I have a special "o" character in the 'description' of the App descriptor attribute. Eclipse gives me this error: "Invalid byte 2 of 4-byte UTF-8 sequence. BlackBerry_App_Descriptor.xml ".

    How can I solve this problem? Thank you.

    Delete this character.  4 bytes in the BlackBerry_App_Descriptor.xml characters are not supported.

  • ERROR: Invalid input. home page loading IE load properly?

    Try to load the homepage of our local Government to the:
    http://www.addisontx.gov
    results in a blank screen otherwise with the following message is displayed at the top left:

    ERROR: Invalid input. Use the back button on the browser to go to the previous page.

    This page will load free error in Internet Explorer. The problem existed before my update of Firefox in version 9.0.1

    Hello

    Please try after deleting cookies and if it persists, try a Ctrl + F5 refresh: (Alt + T) Tools > clear recent history... (or Ctrl + Shift + Del), next to range of time:, select all, click Details , and check the Cookies. CTRL + F5 Refresh allows bypasses cache and brings in the new page.

    Clear recent history

    ...............................................................................................................................

    Useful links:

    Everything on tools > Options

    Beyond the tools > Options - about: config

    Subject: config entries

    Information page (Alt + T) tools > Page Info, right-click > view Page information

    Keyboard shortcuts

    View without Plugins

    Files & Firefox profile folder

    Firefox commands

    Basic troubleshooting

    After the upgrade

    Safe mode

    Extensions of the issues

    Troubleshooting Extensions and themes

    Troubleshooting Plugins

    Test Plugins

  • How to exclude the each row of the result set XML declaration?

    Hello

    I have a table with an XMLTYPE column and would like to SELECT a set of rows. How can I exclude the each row of the result set XML declaration? My query currently looks like this, I am running through Spring JDBC:
    SELECT XMLSerialize FROM t1 WHERE XMLEXISTS('$e/Event' PASSING XMLTEXT AS "e") ORDER BY t1.time DESC myschema.event (HAPPY t1.xmltext)

    After selecting, in my application I convert each line in a string and concatenate all the rows in a large chain to analyze in a DOM model. I get a parser exception (org.xml.sax.SAXParseException: the target of the processing instruction corresponding to "[xX] [mM] [he's]" is not allowed) because there are several XML statements in my large chain. Of course, I could manually check the string on each line if it starts with the XML declaration, but it would be nicer if I could load the DB does not add it in the first place. Is there a way?

    Thank you!
    -Daniela

    Hello

    Some options that I can think of:

    SELECT XMLSerialize(CONTENT
     XMLtransform(t1.xmltext,
      xmltype('
     
     
    ')
     )
    )
    FROM myschema.event t1
    WHERE XMLEXISTS('$e/Event' PASSING XMLTEXT AS "e")
    ORDER BY t1.time DESC
    ;
    

    or quite simply,.

    SELECT XMLSerialize(CONTENT
      extract(t1.xmltext,'/')
    )
    FROM myschema.event t1
    WHERE XMLEXISTS('$e/Event' PASSING XMLTEXT AS "e")
    ORDER BY t1.time DESC
    ;
    
  • Downsaving to CS2 to CS4 - how to change the XML declaration

    I am under CS4 and am trying to downsave a CS4 CS2 file.  After a Google search, I found this page http://indesignsecrets.com/double-downsave.php that recommend this following:

    "I open the INX file and changed the XML declaration: .

    <? using style = "33″ type is 'document' DOMVersion is" 6.0 readerVersion = "5.0″ featureSet =" product = 257″ "6.0 (352)" "?" >

    TO:

    <? using style = "33″ type is 'document' DOMVersion is" 5.0″ readerVersion = "4.0″ featureSet =" product = 257″ "5.0 (662)" "?" >

    In other words, I have said my file from version 5 (aka CS3) CS2 and that can be read by version 4 (CS2). I changed the attribute 'product' to start, just in case CS2 sought also to this. »

    If I understand his instructions, I am to export the CS4 document in INX CS3 document, and then open that INX doc with a text editing program and edit the text as shown above.  After exporting to INX, I opened in Word and looked for ' <? aid' and it is nowhere in the many pages of text.

    I have also exported the CS4 one doc XML, but have had no success in finding this specific line.  What mistake I have done?


    Thanks in advance for helping this newbie!

    -Laura

    Word is not a text editor, it is processing. Open it in Notepad.

    Bob

  • Version with ControlLogix - link cRIO (implicit messaging), "(Code 16 #0315) problem" connection request error: invalid segment type ""

    I have developed and delivered a system in Germany several years ago.  He worked then.  But the cRIO was damaged and replaced by a newer model, and does not now.  I suspect (and Support technical OR agree) it's a problem of software version, which could be solved with the NOT-MAX Software Installer.  But I do not have access to the system myself, and correspondence is slow and tedious.

    The original system was a cRIO-9073, developed with LabView 2009.  He used the implicit Messaging.  The ID of Instance, sizes, IP addresses, etc everything has worked very well.

    The current system is a cRIO-9074, with LabView DURATION 14.0 (I guess that LV 2014), Scan Engine 4.3, NI - Industrial Communications for Ethernet/IP 14.0.0, etc.  Programs FPGA and processor are responsible and seem to work in the cRIO.  The "EthernetIP Set Assembly Instance Data.vi' will return no error.  But the PLC just pointing out "(Code 16 #0315)" connection request error: invalid segment type "."  We looked at intellectual property (the mistake was different), sizes and body #s.

    The PLC doesn't have to all be modified.

    Anyone know if there is no problem of compatibility with LV-2014 and Ethernet/IP 14.0.0?  Or if there are all the other required packages?

    I am including the NOT-Max reports.

    Hi ZX81

    To help you 2009 application to work with the new cRIO, you must deploy it to the device. You must in order to deploy the cRIO, make sure it has the same versions of software that you used with the old cRIO.

    You can format the cRIO NI MAX and deploy the application of LV, 2009. However, if you do not have access to the cRIO or your client does not have the necessary software, you can deploy the application in another cRIO with software (cRIO same model and same modules as your client) and create a picture of it and send it to your customer so that it can deploy the cRIO even without the software on his computer. The following document explains how to do this.

    Utility of RAD

    WenR

  • Error message: Error Invalid backweb version 1.1.50 Runner - 887648OSL

    Original title: error message

    What does this message mean? "Error Invalid backweb version 1.1.50 Runner - 887648OSL.

    Hello

    1. Once you get this error message?
    2. have you done any change in software on the computer lately?

    Method 1.
    First of all I ask you to run a virus scan and online check. Sometimes the security program installed might not be fair enough. I also recommend you update your security software regularly.
     
    a. follow the link below to start the free online scan:
    http://OneCare.live.com/site/en-us/default.htm
    b. run the malware removal tool from Microsoft.
    Microsoft Malicious - 32-bit removal tool
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en
    Microsoft Malicious removal tool - 64 bit
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=585D2BDE-367F-495e-94E7-6349F4EFFC74&displaylang=en
    c. I recommend you to install the free security software from Microsoft, which is easy to install and updates automatically
    Here is the link to download.
    http://www.Microsoft.com/securepc

    Method 2.
    After removing a spyware or a virus that the program would require the spy software must be installed in order to run, without it you will get the Run Time error again. This program runs on startup, so you will need to uninstall the program that had the spyware that are associated with. We can use the boot minimum troubleshooting to find this program.
    You need to perform a clean boot to find the program that is causing and then disable or remove.
    How to configure Windows XP to start in a "clean boot" State
    http://support.Microsoft.com/kb/310353/en-us
    Note: When you are finished troubleshooting, follow the steps as explained in the article to reset the computer to start as usual.

    I hope this helps.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Download the ipa to itunesconnect defective after the upgrade to 2.2.1 MAF (ITMS-90474 ERROR: "Invalid Bundle.) iPad multitasking support requires these guidelines)

    Hello

    Everyone knows about this problem? It all started after the upgrade to 2.2.1 MAF. The application loader complains with the following message:

    ITMS-90474 ERROR: "Invalid Bundle. iPad multitasking support requires these guidelines: "UIInterfaceOrientationPortraitUpsideDown, UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationPortrait and UIInterfaceOrientationLandscapeRight. Find "UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationLandscapeRight" in all «...» »

    A quick google search lead me to this link http://stackoverflow.com/questions/32559724/ipad-multitasking-support-requires-these-orientations. I'll try again, but I thought that maybe there is a solution that has the parameters of MAF.

    Kind regards

    Majdi Jaqaman

    Hello.

    I am happy that it has worked for you in the end. The CRG team will probably add an option setting somewhere in a later version of the MAF. They also suggested a more clean approach to deal with the issue than to change the XCode project template.

    First, create a file named plugin.xml and paste the following inside XML. I suggest you create the file in a central location, because it can be referenced by more than one app.

    
    
        maf-plugin-opt-out-multitaskingn
        Opt out of iOS multitasking on iOS 9
        
            
                
            
        
    
    

    Then just register the plugin in the MAF - application.xml. Things should look like this:

    Best regards

    Frédéric.

  • Installation of Java 1324 error - invalid character

    It's SO frustrating. Every time I try to install Java, I always get the error message: "Error 1324. The AVG Plugins path contains an invalid character. »
    I remember a folder named 'AVG Plugins' but it is eliminated for some time now and it was located on an external hard drive. I have no idea why he decided to blame for its failure to install on a particular file. Well, I'm sure that the folder has had a registered symbol (®) in its folder I can see where its getting the part "invalid character" of... Before it was deleted, the Plugins of AVG file contained Java installation files, but I deleted them eventually if I could reinstall it on my hard drive. I remember at one point, Java was working fine once again, but after some problems with MP3 Rocket (which depends on Java), I deleted Java and once again tried to reinstall... Which doesn't of course.

    At first I thought that I would just change the destination folder but I tried to save now on many places, but I always get the same exact error message, with the same exact file mentioned (AVG plugins). I tried to install Java the way normal and in one end offline installation, I get finally to the same error message. Can someone help me please?

    Here is part of an old MSINFO report (at the time when Java was installed in AVG Plugins). You can see that Java appears several times in the folder "Plugins AVG", which may have something to do with this current error message... Also, some Java files see the place in my control panel, but I'm unable to uninstall the. Let me know if this is something that I need to study in detail in order to solve this problem...

    [Environment variables]
     
    CLASSPATH. ; J:\AVG Plugins\Java\lib\ext\QTJava.zip   
    QTJAVA J:\AVG Plugins\Java\lib\ext\QTJava.zip

    [Windows error reporting]

    11/03/2011 06:00 application error Faulting application javaw.exe, version 6.0.10.6, time stamp 0x45f7b2e0, failed module Flash10a.ocx, version 10.0.12.36, time stamp 0x48e83175, exception code 0xc0000005, offset 0x000c97a0, process id 0 x 1330 error, start time of application 0x01cbdfa43562f760.
    08/07/2011 16:58 application error Faulting application javaw.exe, version 6.0.240.7, time stamp 0x4d4a0b98, failed module Flash10a.ocx, version 10.0.12.36, time stamp 0x48e83175, exception 0xc0000005, offset error 0x000c97a0, process 0xddc id code, start time of application 0x01cc3d8fe8690aa2.
    SID 2349 = & iBucketTable = 1 & iBucket = 1073051697
    Cabin ID: 0

    Signature of the problem:
    P1: javaw.exe
    P2: 6.0.10.6
    P3: 45f7b2e0
    P4: Flash10a.ocx
    P5: 10.0.12.36
    P6: 48e83175
    P7: c0000005
    P8: 000c97a0
    P9:
    P10:

    Attached files:
    C:\Users\Allen\AppData\Local\Temp\WER36D8.tmp.version.txt

    These files are available here:
    C:\Users\Allen\AppData\Local\Microsoft\Windows\WER\ReportArchive\Report12d952a1
    04/04/2011 bucket 1729795195, type 5 05:01 Windows Error Reporting failure
    Event name: AppHangB1
    Answer: no
    Cabin ID: 0

    Signature of the problem:
    P1: javaw.exe
    P2: 6.0.240.7
    P3: 4d4a0b98
    P4: 6efb
    P5: 6144
    P6:
    P7:
    P8:
    P9:
    P10:

    Attached files:
    C:\Users\Allen\AppData\Local\Temp\WER26DB.tmp.AppCompat.txt

    These files are available here:
    C:\Users\Allen\AppData\Local\Microsoft\Windows\WER\ReportArchive\Report12593dc4
    08/07/2011 type 1729795195, bucket Windows Error Reporting lack of 01:37 5
    Event name: AppHangB1
    Answer: no
    Cabin ID: 0

    Signature of the problem:
    P1: javaw.exe
    P2: 6.0.240.7
    P3: 4d4a0b98
    P4: 6efb
    P5: 6144
    P6:
    P7:
    P8:
    P9:
    P10:

    Attached files:

    These files are available here:
       
    08/07/2011 17:00 Windows Error Reporting crash bucket 2319574050, type 1
    Event name: APPCRASH
    Answer: http://oca.microsoft.com/resredir.aspx?SID=2349&iBucketTable=1&iBucket=-1975393246
    Cabin ID: 0

    Signature of the problem:
    P1: javaw.exe
    P2: 6.0.240.7
    P3: 4d4a0b98
    P4: Flash10a.ocx
    P5: 10.0.12.36
    P6: 48e83175
    P7: c0000005
    P8: 000c97a0
    P9:
    P10:

    Attached files:
    C:\Users\Allen\AppData\Local\Temp\WERD858.tmp.version.txt

    These files are available here:
    C:\Users\Allen\AppData\Local\Microsoft\Windows\WER\ReportArchive\Report0d6172e2
    04/04/2011 05:01 application Hang the javaw.exe version 6.0.240.7 program ceased to interact with Windows and was closed. To see if there is more information about the problem, check the history of the problem in the reports on the problems and Solutions control panel. Process ID: 8Ce Start Time: time of termination 01cbf27550cd99c9: 36

    Hello

    Method 1:
    You can disable the anti-virus installed on the computer and then try to install java and check:
    http://Windows.Microsoft.com/en-us/Windows7/disable-antivirus-software
    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you do not disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network during the time that your antivirus software is disabled, your computer is vulnerable to attacks.

    Method 2:
    You can also try the steps in knowledge base article and check the:
    Problems installing and uninstalling programs on Windows computers
    http://support.Microsoft.com/kb/2438651

    Method 3:
    You can also check the link provided and check:
    How to get Java software installation log files?
    http://Java.com/en/download/help/Log_files.XML

  • ERROR: Invalid Allocation, 1610612738 bytes in Links 2003 running Windows 7 ultimate 32-bit edition

    Hello

    To solve the problem that I have, program uninstalled, rebooted machine. Has conducted an audit of the registry and remove the entries from 7 registry errors in Links 2003. Rebooted the machine. Installed Links 2003, installed patch 1.05, 1.07, and Links2k3-nvidia_win7_FINAL. I also tried to launch, links 2003 Safe Mode and still, I get this error message: ERROR: Invalid allocation, 1610612738 bytes. Any help would be greatly appreciated.

    ERROR: Invalid allocation, 1610612738 bytes

    Processor registers EAX = 0 x 00000000 EBX = 0 x 00000000 ECX = 00000000 EDX = 00000000 Flags x 0 x 0 = 0 x 00000000
    = ESI = 0X00000000 EDI 0X00000000 EBP = 0X0012F4A8 ESP = 0X0012F348 EIP = = 0X00000000
    EIP (0X00000000)? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
    ESP (0X0012F348) 0012F35C 0012F634 0012F62C 01DC3DC0 60000002 00010000 000001A 9 03C20DE0
    00000100 0000002D 01DC4258 00000200 0000003D 01FDFDB0 76F5491C 00000014
    75206AC4 84027F1C 00000674 75206E93 75206E9E 0031007E 75206E9E 004C002E

    Details of the machine
    ===============
    Name of executable: C:\Links 2003\LINKSMMIII. EXE
    Executable hour, date: 19:49:12 Tuesday 3/30/2010
    Command line:
    Current directory: C:\Links 2003
    Currently, date: 19:05:49 Tuesday 6/22/2010
    GameOS build version: Version 1.1 02/11/2000
    Software rasterizer: c:\links 2003\assets\binaries\blade.dll (size 282 693 bytes)
    Username: Mike Harrison
    Computer name: HICHAMCHGORA
    Processor: 2812 MHz AMD 3DNow unknown MMX! Model SSE = 10, Type = 15, Stepping 0 = (6 processors)
    Cache information: unknown
    L2 w/r/rw speed: 4 cycles 22496 Mbps, 4 cycles 22496 Mbps, 4 cycles 22496 Mbps
    Main memory r/w/rw speed: 14 cycles 6427 MB/s, 13 cycles 6921 Mbps, 10 Mbps 8998 cycles
    W/r/rw video memory speed: 204 cycles 441 MB/s, 38 cycles 2368 Mbps, 289 cycles 311 Mbps
    W/r/rw memory AGP speed: 204 cycles 441 MB/s, 37 2432 Mbps, 288 cycles cycles 312 MB/s
    Operating system: Windows (6.1.7600)
    DirectX version: 9.04.00.0904
    Since booted time: 2 h 45 m 25 s
    In the logic of the game time: 0 h 0 m s 0.62 (on frame 3)
    App running time: 0 h 0 m s 0.62
    Physical memory: 2 147 483 647 bytes (2048 Meg)
    Physical memory available: 2 147 483 647 bytes (2048 Meg)
    The swap file size: 4294967295 bytes (0 Meg)
    Available page file: 4294967295 bytes (0 Meg)
    Virtual memory: 2,147,352,576 bytes (2048 Meg)
    Virtual memory available: 1,937,620,992 bytes (1848 Meg)
    Amount of the used battery: 3172 bytes
    Memory load: 31%
    Desktop video mode: 32bpp 1920,1080
    Mode when the accident occurred: full screen 1920 x 1080 x 32 (NVIDIA GeForce GT 220)
    Networked Machine: No.
    Executable version: 01.08.06.2200
    PCI Chipset: unknown

    Path of Threads process Pri
    ==========================================
    TaskHost.exe: 8: 8: C:\Windows\system32\taskhost.exe
    DWM.exe: 13:5: C:\Windows\system32\Dwm.exe
    BCU.exe: 8:6: C:\Program Files\DeviceVM\Browser Configuration Utility\BCU.exe
    RoxioBurnLauncher.exe: 8:8: C:\Program SharedCOM 2010\Roxio Burn\RoxioBurnLauncher.exe
    VxBlockServer.exe: 8:5: C:\Program Files\Common PX storage Engine\VxBlockServer.exe
    SetPoint.exe: 8:5: C:\Program Files\Logitech\SetPoint\SetPoint.exe
    KHALMNPR. EXE:-08:27: C:\Program Files\Fichiers Files\Logishrd\KHAL2\KHALMNPR. EXE
    RtHDVCpl.EXE: 8, 9: C:\Program Files\Realtek\Audio\HDA\RtHDVCpl.EXE
    Skype.exe: 08:20: C:\Program Files\Skype\Phone\Skype.exe
    LinksLauncher.exe: 8:1: C:\Links 2003\LinksLauncher.exe
    LINKSMMIII. EXE: 08:16: C:\Links 2003\LINKSMMIII. EXE

    Version numbers of DLLS
    ===================
    Msvcrt.DLL - Version 7.0.7600.16385 - found in C:\Windows\system32
    'Msvcrtd.dll' is not found
    Msvcirt.DLL - Version 6.1.7600.16385 - found in C:\Windows\system32
    'Msvcirtd.dll' is not found
    amstream.DLL - Version 6.6.7600.16385
    Quartz.DLL - Version 6.6.7600.16385
    Ir50_32.DLL - Version R.5.10.15.2.55
    Dsound.DLL - Version 6.1.7600.16385
    Dinput.DLL - Version 6.1.7600.16385
    D3dim.DLL - Version 6.1.7600.16385
    Ddraw.DLL - Version 6.1.7600.16385
    dplayx.DLL - Version 6.1.7600.16385

    Audio device 0 (current) - (HW disabled mix)
    ==============
    Description: Realtek Digital Output (Optical) (Realtek High Definition Audio)
    Driver file: {0.0.0.00000000}. {cdc8ecc5-7109-4d8d-9ac9-dacfb4f56528}
    Data of the driver file: can not find the driver file
    CERTIFIED: No.
    EMULDRIVER: No.
    CONTINUOUSRATE: Yes
    PRIMARYMONO: Yes
    PRIMARYSTEREO: Yes
    PRIMARY8BIT: Yes
    PRIMARY16BIT: Yes
    SECONDARYMONO: Yes
    SECONDARYSTEREO: Yes
    SECONDARY8BIT: Yes
    SECONDARY16BIT: Yes
    MinSecondarySampleRate: 100
    MaxSecondarySampleRate: 200000
    PrimaryBuffers: 1
    MaxHwMixingAllBuffers: 1
    MaxHwMixingStaticBuffers: 1
    MaxHwMixingStreamingBuffers: 1
    FreeHwMixingAllBuffers: 0
    FreeHwMixingStaticBuffers: 0
    FreeHwMixingStreamingBuffers: 0
    MaxHw3DAllBuffers: 0
    MaxHw3DStaticBuffers: 0
    MaxHw3DStreamingBuffers: 0
    FreeHw3DAllBuffers: 0
    FreeHw3DStaticBuffers: 0
    FreeHw3DStreamingBuffers: 0
    TotalHwMemBytes: 0
    FreeHwMemBytes: 0
    MaxContigFreeHwMemBytes: 0
    UnlockTransferRateHwBuffers: 0
    PlayCpuOverheadSwBuffers: 0

    Video device 0
    ==============
    Description: NVIDIA GeForce GT 220
    Company / Chipset: nVidia.
    Driver file: nvd3dum.dll
    Driver size: 9 386 600 bytes
    Driver date: 22:55:32 Saturday 4/3/2010
    Attributes: Final Version, Private Build
    Driver version: 8.17.11.9745
    Version: 8.17.11.9745
    Hardware ID: 10DE.0A20 (Rev 162, Subsys 0 x 12253842)
    Video memory: 2,375,872,512 bytes (2266 Meg)
    Mem texture map: 1,034,485,760 bytes (987 Meg)
    AGP texture memory: 1,341,386,752 bytes (1279 Meg)
    Modes of FourCC: NV12 NV24 YV12, UYVY, YUY2 AI44 AI88 AYUV AIP8 AV12 PLFF NVMD NVDP NVDB SSAA ATOC
    Texture formats: 555 1555 4444 565 0888 8888 bump N→∞ (8,8) bump map N→∞ (8,8) FourCC (1TXD) FourCC (2TXD) (3TXD) FourCC FourCC (4TXD) FourCC (5TXD) FourCC (SCVN) FourCC (UHVN) FourCC (SHVN)
    Z buffer formats: 16 bit Z 32 bit Z (Z = 32 (0xffffff00) template = 8 (0xff)) (Z = 32 (0xffffff) template = 8 (0xff000000)) 32 bit Z 24 bit Z
    modes 16 bits: 800 x 600 1024 x 768 x 1152 864 1176 x 664 1280 x 720 1280 x 768 1280 x 800 1280 x 960 1280 x 1024 1360 x 768 900 1600 x 1024 1600 x 1600 x 1200 1680 x 1050 992 1920 x 1080 x 1768
    mode 32 bits: 800 x 600 1024 x 768 x 1152 864 1176 x 664 1280 x 720 1280 x 768 1280 x 800 1280 x 960 1280 x 1024 1360 x 768 900 1600 x 1024 1600 x 1600 x 1200 1680 x 1050 992 1920 x 1080 x 1768
    CERTIFIED: No.
    DRAWPRIMITIVES2: Yes
    DRAWPRIMITIVES2EX: Yes
    DRAWPRIMTLVERTEX: Yes
    FLIPINTERVAL: Yes
    FLIPNOVSYNC: Yes
    NO2DDURING3DSCENE: No.
    NONLOCALVIDMEM: Yes
    NOPAGELOCKREQUIRED: No.
    CALIBRATE the GAMMA: No.
    PRIMARYGAMMA: Yes
    ZBuffer: 16 24
    Rendering depth: 16 32
    Texture size: 1 x 1 to 8192 x 8192
    Maximum U, v coords: 8192.0
    Cutting guard :-100000000,-100000000 to 100000000,100000000
    AlphaTest NotEqual: Yes
    Lack of mixture of the CBC:
    Lack of mixture Dest:
    Texture AGP: Yes
    Texture coords: 8
    Mix the steps: 8
    The Textures of max: 8
    Hardware T & L: Yes
    Vertex Blending: 4
    Maximum lights: 8
    Clip planes: 8
    Mix Lightmap: Ok
    Mix Specularmap: Ok
    Mixture of detail: Ok
    Vid linear memory: Yes
    SELECTARG1: Yes
    SELECTARG2: Yes
    ADD: Yes
    ADDSIGNED: Yes
    SUBTRACT: Yes
    MODULATE: Yes
    MODULATE2X: Yes
    MODULATE4X: Yes
    BLENDCURRENTALPHA: Yes
    BLENDDIFFUSEALPHA: Yes
    BLENDTEXTUREALPHA: Yes
    BUMPENVMAP: Yes
    BUMPENVMAPLUMINANCE: Yes
    DOTPRODUCT3: Yes
    ANISOTROPY: Yes
    ANTIALIASSORTINDEP: Yes
    FOGTABLE: Yes
    FOGVERTEX: Yes
    FOGRANGE: Yes
    WFOG: Yes
    WBUFFER: No.
    MIPMAPLODBIAS: Yes
    WBUFFER: No.
    ZBUFFERLESSHSR: No.
    MIPNEAREST: Yes
    LINEARMIPLINEAR: Yes
    DONOTSTRIPELEMENTS: Yes
    TEXTURE CLAMP: Yes
    BORDER TEXTURE: Yes
    MIRROR of TEXTURE: Yes
    ALPHAGOURAUDBLEND: Yes
    SQUAREONLY: No.
    COLORFLATMONO: Yes
    COLORGOURAUDMONO: Yes
    COLORFLATRGB: Yes
    COLORGOURAUDRGB: Yes
    SPECULARFLATRGB: Yes
    SPECULARGOURAUDRGB: No.

    Video device 1
    ==============
    Description: NVIDIA GeForce GT 220
    Company / Chipset: nVidia.
    Driver file: nvd3dum.dll
    Driver size: 9 386 600 bytes
    Driver date: 22:55:32 Saturday 4/3/2010
    Attributes: Final Version, Private Build
    Driver version: 8.17.11.9745
    Version: 8.17.11.9745
    Hardware ID: 10DE.0A20 (Rev 162, Subsys 0 x 12253842)
    Video memory: 2,375,872,512 bytes (2266 Meg)
    Mem texture map: 1,034,485,760 bytes (987 Meg)
    AGP texture memory: 1,341,386,752 bytes (1279 Meg)
    Modes of FourCC: NV12 NV24 YV12, UYVY, YUY2 AI44 AI88 AYUV AIP8 AV12 PLFF NVMD NVDP NVDB SSAA ATOC
    Texture formats: 555 1555 4444 565 0888 8888 bump N→∞ (8,8) bump map N→∞ (8,8) FourCC (1TXD) FourCC (2TXD) (3TXD) FourCC FourCC (4TXD) FourCC (5TXD) FourCC (SCVN) FourCC (UHVN) FourCC (SHVN)
    Z buffer formats: 16 bit Z 32 bit Z (Z = 32 (0xffffff00) template = 8 (0xff)) (Z = 32 (0xffffff) template = 8 (0xff000000)) 32 bit Z 24 bit Z
    modes 16 bits: 800 x 600 1024 x 768 x 1152 864 1176 x 664 1280 x 720 1280 x 768 1280 x 800 1280 x 960 1280 x 1024 1360 x 768 900 1600 x 1024 1600 x 1600 x 1200 1680 x 1050 992 1920 x 1080 x 1768
    mode 32 bits: 800 x 600 1024 x 768 x 1152 864 1176 x 664 1280 x 720 1280 x 768 1280 x 800 1280 x 960 1280 x 1024 1360 x 768 900 1600 x 1024 1600 x 1600 x 1200 1680 x 1050 992 1920 x 1080 x 1768
    CERTIFIED: No.
    DRAWPRIMITIVES2: Yes
    DRAWPRIMITIVES2EX: Yes
    DRAWPRIMTLVERTEX: Yes
    FLIPINTERVAL: Yes
    FLIPNOVSYNC: Yes
    NO2DDURING3DSCENE: No.
    NONLOCALVIDMEM: Yes
    NOPAGELOCKREQUIRED: No.
    CALIBRATE the GAMMA: No.
    PRIMARYGAMMA: Yes
    ZBuffer: 16 24
    Rendering depth: 16 32
    Texture size: 1 x 1 to 8192 x 8192
    Maximum U, v coords: 8192.0
    Cutting guard :-100000000,-100000000 to 100000000,100000000
    AlphaTest NotEqual: Yes
    Lack of mixture of the CBC:
    Lack of mixture Dest:
    Texture AGP: Yes
    Texture coords: 8
    Mix the steps: 8
    The Textures of max: 8
    Hardware T & L: Yes
    Vertex Blending: 4
    Maximum lights: 8
    Clip planes: 8
    Mix Lightmap: Ok
    Mix Specularmap: Ok
    Mixture of detail: Ok
    Vid linear memory: Yes
    SELECTARG1: Yes
    SELECTARG2: Yes
    ADD: Yes
    ADDSIGNED: Yes
    SUBTRACT: Yes
    MODULATE: Yes
    MODULATE2X: Yes
    MODULATE4X: Yes
    BLENDCURRENTALPHA: Yes
    BLENDDIFFUSEALPHA: Yes
    BLENDTEXTUREALPHA: Yes
    BUMPENVMAP: Yes
    BUMPENVMAPLUMINANCE: Yes
    DOTPRODUCT3: Yes
    ANISOTROPY: Yes
    ANTIALIASSORTINDEP: Yes
    FOGTABLE: Yes
    FOGVERTEX: Yes
    FOGRANGE: Yes
    WFOG: Yes
    WBUFFER: No.
    MIPMAPLODBIAS: Yes
    WBUFFER: No.
    ZBUFFERLESSHSR: No.
    MIPNEAREST: Yes
    LINEARMIPLINEAR: Yes
    DONOTSTRIPELEMENTS: Yes
    TEXTURE CLAMP: Yes
    BORDER TEXTURE: Yes
    MIRROR of TEXTURE: Yes
    ALPHAGOURAUDBLEND: Yes
    SQUAREONLY: No.
    COLORFLATMONO: Yes
    COLORGOURAUDMONO: Yes
    COLORFLATRGB: Yes
    COLORGOURAUDRGB: Yes
    SPECULARFLATRGB: Yes
    SPECULARGOURAUDRGB: No.

    Hello again,

    I want to thank each and everyone of you for your input to try to help solve the problems I've had with links.

    I am happy to report that I played my first round in nearly two weeks in this... Morning. The problem is a corrupted file, .l3. I have a little more 1 100 PoliAnis' and am not sure which one is, but I can play. I tried whenever I took one of the following folders on until I finally took the PolyAni folder:

    WAVs, mops, Custom photos of players, sky, Clubs, PIN code files and finally, all but one of PolyAni files. That after taking all but one of the frequented out of the folder PolyAni links has started without giving me the error of attribution not valid.

    Thanks again to you all for your help.

    Sincerely,

    Mike

    Really_Rotten

  • Mob ad works is not in the Application Loader error

    Hello Adobe AIR community.

    I had this problem for awhile now. Basically, I have been using AIR for iOS 15.0, Flash CC (2014) and milkman games Ad Mob DONKEY v.4.4.0.

    I can test my apps perfectly on iPhone and iPad devices. The Mob Ad banner and full-screen ads work very well in testing in a development environment.

    When I try to download my app on the App Store using the v3.0 Application Loader I get an error indicating "ITMS-9000 error: invalid Bundle." The bundle my_app.app does not support the minimum what OS Version specified in the Info.plist file"

    Now, funny thing is when I remove the DONKEY the application downloads on the App Store very well.

    I was forced to stop using ads in my AIR for iOS apps since the release of the iOS 8.

    I have also contacted Milkman games support but they tell me that I'm the only one with the problem, and this technical support is unable to reproduce the problem.

    Also I am on OSX 10.10.1 and I think that xCode has been upgraded to version 6.1.1 (don't know if upgrading xCode makes a difference, but I updated tonight and I tried not to re - download the app since)

    Anyone know what I can do? Any help would be much appreciated.

    Thank you very much!

    Hello world

    Change the minimum OS to 6.0 doesn't work but when I tried 6.1 that he submitted to the app store very well apple.

    Thanks Colin!

  • AUSST - update server problem: 406 IIS7 errors and ERROR: Invalid webfeed

    I spent today, configure, and install an instance of the software AUSST2.0, according to http://www.adobe.com/content/dam/Adobe/en/devnet/creativesuite/pdfs/Up dateServerSetupTool_TechNote.pdf

    Here is where I am:

    Via Firefox/IE, I get the following when you browse the Updaterfeed.xml:

    XML Parsing Error: syntax error

    Geographical area: < SITE SERVER >

    Number of row 1, column 1:

    0001

    ^

    Which I think is ok... the server sends the updaterfeed.xml. I can also download updates directly via IE or Firefox.  The corresponding entry in the IIS log is:

    /AdobeUpdate/webfeed/OOBE/aam20/win/updaterfeed.XML - 80 - < IP ADDRESS > Mozilla / 5.0 + (Windows + NT + 6.1; + WOW64; rv:9.0.1) + Gecko / 20100101 + Firefox / 9.0.1 304 0 0 196

    When I try to do an update via Photoshop, I get:

    "The update server is not responding.  The server may be offline temporarily, or the settings of firewall or internet is perhaps incorrect.  Please try again later.  "Error code: U41M1C213"

    Regardless of the status of firewall locally or on the server.  Further communication with the server is fine.

    the level 10 aamu.log says:

    2012 01-17 T 20: 01:52: slurpURL entry: (http://< SERVER IP > / AdobeUpdate/webfeed/oobe/aam20/win/updaterfeed.xml) bytesPushed

    2012 01-17 T 20: 01:52: main download loop - pending the availability of the network

    2012 01-17 T 20: 01:52: network connection

    2012 01-17 T 20: 01:52: connected to: = http://< SERVER IP > /AdobeUpdate/webfeed/oobe/aam20/win/updaterfeed.xml

    2012 01-17 T 20: 01:52: received the status of the server code

    2012 01-17 T 20: 01:52: slurpURL: (http://< SERVER IP > / AdobeUpdate/webfeed/oobe/aam20/win/updaterfeed.xml) bytesPushed = 0

    2012 01-17 T 20: 01:52: CFU (Webfeed): dumping webfeed: C:\Users\ < USER MY name > \AppData\Local\Adobe\AAMUpdater\1.0\Data\webfeed.xml

    2012 01-17 T 20: 01:52: CFU (Webfeed): ERROR: Invalid webfeed. Could not read webfeed sequence number.

    2012 01-17 T 20: 01:52: UCGetprogress: (B) turning with value = 1

    2012 01-17 T 20: 01:52: UCGetprogress: updates State for back reffId =

    2012 01-17 T 20: 01:52: UCGetprogress: updates return State = 41

    2012 01-17 T 20: 01:52: UCGetprogress: check the updates of returning outError = 213

    2012 01-17 T 20: 01:52: UCGetprogress: check the updates percent return = 0

    2012 01-17 T 20: 01:52: UCGetprogress: updates to string of unique return error code = U41M1C213

    2012 01-17 T 20: 01:52: UCGetprogress: (D) poll with value = 1

    2012 01-17 T 20: 01:52: entered < < UCGetUserPreferences > > call.

    2012 01-17 T 20: 01:52: < < UCGetUserPreferences > > call back with the return value - = 1

    The following IIS log entry for this is:

    GET /AdobeUpdate/webfeed/oobe/aam20/win/updaterfeed.xml - 80 - < IP ADDRESS > AAM + Updater + 1.0 406 0 0 19

    I added the < add name = "SSINC-xml' path ="*.xml"verb =" "*" modules = "ServerSideIncludeModule" resourceType = 'No' > to my web.config, by http://blogs.adobe.com/oobe/2010/09/enterprise-in-house-update-hosting-pour-cs5.html "

    I keep getting the error U41M1C213 while updating.  I can get updates when I remove the AdobeUpdater.Overrides of C:\ProgramData\Adobe\AAMUpdater\1.0 (Win7)

    Help?

    * by evasive: http://forums.adobe.com/thread/951039 -> http://forums.adobe.com/thread/951039 -> here.

    Hi MUIT2012

    I also I got exactly the same problem, but I thought I'd follow upward with my real fix, as looking for "U41M1C213" through google gave this position, as well as your other constantly.

    After digging through responses to blog on this thread > http://blogs.adobe.com/oobe/2010/09/enterprise-in-house-update-hosting-for-cs5.html< i="" did="" find="" the="" answer="" from="" both="" christopher="" kinard="" and="" travis="" henry="" which="" ultimately="" fixed="" this="">

    I'll walk through the general setup

    Hope this helps anyone who might be struggling with this, because it does not seem to be very well documented.

Maybe you are looking for