Loading local PDF, iOS, iPad2

Hi
I'm trying to make my application view local PDF on iPad. This pdf was downloaded from internet into app-storage dir.  Here is some code:
var f:File = new File(obj.url);
var webView = new StageWebView();
webView.stage=parent.stage;
webView.viewPort=new Rectangle(,20,103,960,640);
//this doesn't work
webView.loadUrl(f.url);
//.. but this works ok.
//webView.loadURL("http://www.adobe.com/devnet/flex/pdfs/getting_started_with_Flex3.pdf")
File url is correct:
"file:///var/mobile/Applications/5053796F-3E4A-41A5-AF05-A2F2D0E71791/Library/Application% 20Support/..."
Target file exists.
But PDF document isn't shown.
Could you help me with this issue please?
Thanks in advance.

It's even more - I'm trying to listen for errors using
webView.addEventListener(ErrorEvent.ERROR,function(e){ ... });
... and I didn't get any errors...
Is there ANY way to show downloaded PDF on iPad, or should I download it using StageWebView each time?

Similar Messages

  • A working method to load local PDF and HTML files on iOS

    I had a lot of trouble getting this to work, and I'm hoping this post saves someone time. Some of the information that's been posted in other locations is either wrong, incomplete, or might only work on Android. By the time you read this message the information here may no longer be accurate, so here's the testing environment:
    Window 7
    Flash CS 5.5.0
    AIR 2.7.0.19530, which was compiled on June 28, 2011
    iPad 1, version 4.3.5 of iOS
    Let's get started.
    On iOS, you load external PDF and HTML files using the StageWebView class.
    On Windows, StageWebView works but the HTMLLoader class is a better choice if you're creating a desktop app.
    You can also load HTML files by reading in the file's text. The information in this post is only for loading external HTML files.
    StageWebView will not load a file that's in File.applicationDirectory. All files bundled in your app are placed in File.applicationDirectory, which means you'll have to copy any external file you wish to load with StageWebView to another directory.
    So where can you copy your file? File.applicationStorageDirectory won't work. File.documentsDirectory does work.
    Several people have recommended copying to a temporary file using File.createTempFile(). This works, but there's a catch: it seems that, like Windows, StageWebView relies on a file's extension when determining how to load it. When you create a temporary file on iOS using File.createTempFile(), the file will have no extension (and on Windows, File.createTempFile() creates a file with the extension .tmp, which is equally problematic).
    The solution to the file extension problem is to rename the temporary file by appending the original file's extension. AIR currently does not have a <file>.rename() function, so you'll have to do it using <tempFile>.moveTo().
    Here's some code I've successfully tested several times on both iOS and Windows. The file is copied to the temp directory. The file's extension is restored by just slapping the original file name to the end of the temp file.
            private function loadExternalFile():void
                var webView = new StageWebView();
                webView.stage = this.stage;
                webView.viewPort = new Rectangle( 0, 0, 1024, 555 );
                // Works with either html or pdf files.
                // These are stored in the root of the application directory.
                var fileName:String = "euei.pdf";
                //var fileName:String = "euei.htm";
                var sourceFile = File.applicationDirectory.resolvePath( fileName );
                var workingFile = File.createTempFile();
                try
                    sourceFile.copyTo( workingFile, true );
                    // You have to rename the temp file
                    var renamedTempFile:File = workingFile.resolvePath(workingFile.nativePath + fileName);
                    workingFile.moveTo(renamedTempFile, true);
                    webView.loadURL( renamedTempFile.url );
                catch (err:Error) { }

    I tried this with Flash CS5.5 and AIR 4.0 SDK. Any pdf loaded simply fills the viewPort with black. Also tested with a png version of the pdf and that displayed just fine.
    What's the purpose of copying to a temp work file? I found that webView.loadURL( sourceFile.url ); gave me the exact same results.
    Any ideas?
    Thanks!

  • Open local PDF inside Air iOS app

    I am developing an AIR for iOS app for the iPad. My client would like the app to open a local PDF file within the app, rather than launching an external app (such as Adobe Reader). This is to give a seamless experience when using the app. I've seen that distriqt.com produce the 'PDF Reader' Native Extension based on www.vfr.org. VFR appears to have a series of interface controls that open along with the PDF, which I don't require. I emailed Distriqt a week ago to clarify, and have had no response.
    Does anyone know of any other solutions to open a PDF inside an AIR iOS app?

    I've managed to load a PDF successfully inside my AIR iOS app, using the code from http://thatsthaway.wordpress.com/201...1/#comment-102.
    However, I've just come across a weird feature / bug when viewing a PDF using stagewebview. I have a PDF that contains several internal hyperlinks, each navigating to a page within the same PDF document. If I select any of the hyperlinks, they do jump to the intended pages. However, if I reselect the same hyperlink again, it no longer works. If I select a different hyperlink, and then reselect a previous link, it will then work, but if I select the same hyperlink twice in a row, without selecting a different hyperlink in between, the link fails to work. The PDF hyperlinks all work ok outside of my app, on both Windows desktop and an iPad, just not inside of the AIR app.
    Any ideas?

  • Unable to load (packaged) locales on iOS

    Hi, for last couple of days I am struggling with loading locales (of course it works on Android and in fast packaging on iOS :-) ).
    Its flex project with AIR SDK 3.7 (without ASC 2.0) and Flex SDK 4.6, FB 4.7. Here's my test app:
         loader = new Loader();
         var url:URLRequest = new URLRequest("assets/locales/en_US.swf");
         var loaderContext:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain, null);
         loader.load(url, loaderContext);
    after its successfully loaded I use ModuleManager..
         modInfo = ModuleManager.getModule("assets/locales/en_US.swf");
         modInfo.load(ApplicationDomain.currentDomain, null, loader.contentLoaderInfo.bytes, FlexGlobals.topLevelApplication.moduleFactory);
    Result is that it stucks with loading the data to the ModuleManager with the error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at mx.core::FlexModuleFactory/getDefinitionByName()
        at mx.core::FlexModuleFactory/docFrameHandler()
        at mx.core::FlexModuleFactory/docFrameListener()
        at mx.core::FlexModuleFactory/docFrameListener()
    I've also tried ResourceManager.loadResourceModule but it throws the same error (I guess it works the same way)
    The en_US.swf file is generated with this script:
         <exec dir="${APP_ROOT}" executable="C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\sdks\4.6.0\bin\mxmlc.exe" failonerror="true">
                <arg line="-locale=en_US" />
                <arg line="-static-link-runtime-shared-libraries=true -verify-digests=false" />
                <arg line="-source-path='${APP_ROOT}/resources/locale/{locale}'" />
                <arg line="-include-resource-bundles=rpxLocale"/>
                <arg line="-swf-version=20" />
                <arg line="-target-player=11.7" />
                <arg line="-output='${outdir}/assets/locales/en_US.swf'" />           
         </exec>
    A note: strange is that loading styles with StyleManager works for me:
         styleManager.loadStyleDeclarations2("assets/css/style.swf", true, ApplicationDomain.currentDomain);
    Thank you for any thoughts!
    Peter

    Hi,
    Could you please open a new bug report on this over at bugbase.adobe.com? When adding the bug, please include reproducible sample application so we can quickly test this out internally. If you would like to keep this private, feel free to email the attachment at nimitja@adobedotcom.
    Once added, please post back with the bug URL/number so that others affected can add their votes and comments.
    Regards,
    Nimit

  • Loading local swf files from Application Dir (ios)

    Hi Guys,
    I would like to load additional local swf files to my ios release build but I am confused a little bit because of the new API changes.
    As far as I know at the moment (from Air 3.7 or newer) it is allowed to load local swf files that contains compiled actionscript both from local folder and from a predefined remote host as well. 
    My assumption based on this article:
    http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/
    I created the text file to include all of my local swf file names and created the following node in the application.xml:
    <iPhone>
           <externalSwfs>assets/SampleSWFInfoFile.txt</externalSwfs>
    </iPhone>
    When I compile the release build (ipa) using command line adt, it converts all of my local swfs into the stripped swfs which is perfect, but even though I include all the swfs in the compiler command, it puts only the SampleSWFInfoFile.txt file into the assets folder in the ipa but not the swf files.
    I assume, it thinks I will load these files from an external host, but I would like to include them in the app itself.
    I tried to copy the stripped swf files from the externalStrippedSwfs folder and comment the <externalSwfs>assets/SampleSWFInfoFile.txt</externalSwfs> node in the application.xml and compile it and this way it puts the swf files into the ipa, but when I try to install and launch the app it crashes and when I test it using Flash Builder it shows an error message
    "VerifyError: Error #1042: Not an ABC file."
    Do any of you guys know the  solution for this problem?
    Thank you for your help in advance!

    You're publishing in AOT mode as long as you use one of these:
    The AIR Developer Tool or ADT has targets that lets you package apps either for the AOT mode or Interpreter mode. The targets for packaging in AOT mode are ipa-app-store, ipa-ad-hoc, ipa-test and ipa-debug.
    Flash Pro CS6 and Flash Builder automate this process pretty well so it's invisible but the SWF loads and executes code just fine for me when directly published.
    If I take it to command line I can use this to compile successfully (iPad test app):
    adt -package -target ipa-ad-hoc -storetype pkcs12 -keystore my.p12 -provisioning-profile my.mobileprovision NameOfApp.ipa NameOfApp-app.xml NameOfApp.swf iTunesArtwork iTunesArtwork@2x AppIconsForPublish swfs/swfs.txt swfs/GenerateText.swf
    I at least include generic icons in there but I made a 'swfs' folder and placed 'swfs.txt' and 'GenerateText.swf' in there. The SWF uses code to randomly generate text and changes every second using a Timer. I load it in using the same code you do with the ApplicationDomain.currentDomain context. I see the SWF appear and text start randomly changing.
    As I compile there's a folder generated called 'externalStrippedSwfs' with the stripped SWF in there.
    One thing to note is I do not supply <externalSwfs>swfs/swfs.txt</externalSwfs> in my iPhone settings. If I do that it doesn't work. I supply the path to the text file containing the SWF I want to be stripped to adt itself along with the SWFs I want stripped and it takes care of the rest.

  • How to mail a local PDF file

    Hi,
    I have local PDF file saved on desktop.
    How to send this file as attacehment in mail.

    Hi,
    see the folowing programm :
    DATA : gf_agb_file TYPE string.
    TYPES: BEGIN OF data_type,
            line(255) TYPE x,
          END OF data_type.
    DATA :  gt_upload TYPE TABLE OF data_type,
            gf_file_upload_lengh TYPE i,      
            agb_content TYPE solix_tab.
    DATA gs_agb_content TYPE solix.
    DATA gs_upload TYPE data_type.
    FIELD-SYMBOLS: <data_x> TYPE x,
                                 <text> TYPE x.
    Load   PDF
    gf_agb_file = '  here access path for PDF'. 
    CLEAR gt_upload[].
    CALL METHOD cl_gui_frontend_services=>gui_upload
       EXPORTING
         filename                = gf_agb_file
         filetype                = 'BIN'
       has_field_separator     = SPACE
       header_length           = 0
       read_by_line            = 'X'
       dat_mode                = SPACE
       depage                = SPACE
       ignore_cerr             = ABAP_TRUE
       replacement             = '#'
       virus_scan_profile      = virus_scan_profile
       IMPORTING
        filelength              = gf_file_upload_lengh
       CHANGING
         data_tab                = gt_upload[]
       EXCEPTIONS
         file_open_error         = 1
         file_read_error         = 2
         no_batch                = 3
         gui_refuse_filetransfer = 4
         invalid_type            = 5
         no_authority            = 6
         unknown_error           = 7
         bad_data_format         = 8
         header_not_allowed      = 9
         separator_not_allowed   = 10
         header_too_long         = 11
         unknown_dp_error        = 12
         access_denied           = 13
         dp_out_of_memory        = 14
         disk_full               = 15
         dp_timeout              = 16
           NOT_SUPPORTED_BY_GUI    = 17
           ERROR_NO_GUI            = 18
         OTHERS                  = 19.
    IF sy-subrc <> 0.
      MESSAGE e057(zsd_eur) WITH 'Fehler bei Load AGB-PDF'.
      EXIT.
    ENDIF.
    LOOP AT gt_upload INTO gs_upload.                 =====>  convert from typ x to typ raw
      ASSIGN gs_upload-line TO <data_x> .
      ASSIGN gs_agb_content TO <text> casting .
      <text> = <data_x>.
      APPEND gs_agb_content TO agb_content.
    ENDLOOP.
    TRY.
      ---------- create persistent send request ----------------------
        send_request = cl_bcs=>create_persistent( ).
        write gf_file_upload_lengh to l_pdf_len.
        document = cl_document_bcs=>create_document(
              i_type    = 'PDF'
              i_hex     = agb_content
              i_length  = l_pdf_len
              i_subject = 'test created by BCS_EXAMPLE_6' ).    "#EC NOTEXT
      add document to send request
        send_request->set_document( document ).
      ---------- add recipient (e-mail address) ----------------------
        recipient = cl_cam_address_bcs=>create_internet_address(
            i_address_string = ' here internet mail adress ' ).
      add recipient to send request
        send_request->add_recipient( i_recipient = recipient ).
      ---------- send document ---------------------------------------
        sent_to_all = send_request->send(
            i_with_error_screen = 'X' ).
        IF sent_to_all = 'X'.
          MESSAGE i022(so).
        ENDIF.
      ---------- explicit 'commit work' is mandatory! ----------------
        COMMIT WORK.

  • Load a PDF and Print it Without User Seeing the PDF

    I have a client who has a need to allow users via a web browser to print PDFs wihtout gaining direct access to them.  Ignoring all the flaws in this logic , I am new to Flex and am having difficulty determining if this is possible.  So, here are the details:
    1) This is a web browser application.
    2) The files reside on a server.
    3) The user will view a list of available PDF files in their browser.
    4) There will be a print icon next to each one.
    5) When they click on the print icon we need to pull in the PDF from the server and initiate a print, all without the user seeing the PDF.  So once they click the print icon the next thing they see is thier browser's print dialog box.
    I have 1-4 done, I just need help with the most important one, #5.
    So, can Flex (without AIR) load a PDF in without displaying it and print it?
    I am using Flash Builder 4.6, if it matters.
    Thanks in advance for any input.

    Well, that's going to be difficult. Before everything else, a silent printing in general, is not what Browser is all about. A print dialog is thrown by the browser when a user selects a print option. Same thing if an application is trying to print using built into it conventional methods of printing - you get Print dialog. It gets even harder if you want to print PDF files silently. You will need to make sure that a file is available to print in case it's generated on the fly. The following code will print your PDF without dialogs to a selected (var printer) printer:
    var WshShell = new ActiveXObject("WScript.Shell");
    var fs = new ActiveXObject("Scripting.FileSystemObject");
    var fi = "AcroRd32.exe /N /T " + '"c:\\temp\\' + "filename" + '" ' + printer;
    WshShell.Run(fi, 0, false);
    As you notice, the file is on the local system. Or you can try printing over the network.
    This code will be a part of a JS function in your html wrapper. You will call this function from Flex using ExternalInterface.
    AcroRd32.exe is an Adobe free PDF reader.  I would suggest starting from the end - have a file on the local system and working on everything esle.
    HTH

  • StageWebView on android jellybean loading local html

    Hi,
    I'm having trouble loading local html files into a local loaded html wrapper using ajax.
    this only happens in JellyBean, iOs and pre-JB is okay. i tracked it down to JB using stricter cross domain policies.
    see this stackOverflow thread. http://stackoverflow.com/questions/14560453/loading-local-html-with-load
    Could AIR please expose the following property on the webview: setAllowUniversalAccessFromFileURLs(true);
    Or if anybody has a workarround, that would be great!
    Tom

    Hi Tom,
    I am experiencing the same problems. Because of this, our team is still using AIR 3.5.
    Somebody just opened a bug report. You should probably follow it closely: https://bugbase.adobe.com/index.cfm?event=bug&id=3610032
    Greets
    kelvin

  • Error loading/saving PDF presets

    Error loading/saving pdf presets
    I am using CS4 and Windows 7. I have a .joboptions file I want to load in InDesign, but when I try, I get the error message: Cannot create the file. The folder may be write protected.
    I am a local administrator on the computer.
    I have tried manually copying the .joboptions file into the folder C:\Users\<my profile>\AppData\Roaming\Adobe\Adobe PDF\Settings, but it doesn’t show up in the list of available presets.
    I used the same version of InDesign with Windows XP and was able to load and save presets this way just fine.

    Thank for the tip. But unfortunately it is only a partial solution.
    When I 'run as administrator' in Windows 7 I have no problems, that is a bit of a solution, but for me it is a mere workaround.
    I want to find out how I can load and save PDF export settings without running as Adminstrator, since we have 7 people using the presets and they don't want to run InDesign everytime as an Administrator.
    I have all the rights (local admin) to all folders, therefore I was hoping somebody already fixed this in his/her system...
    Hope Adobe comes up with some sort of solution for this apperently Windows 7 problem.

  • How do I load pictures onto my iPad2 from my PC?

    I do not have an Apple Store close by and wish I could get someone to sit with me and help me get better acquainted with my iPad2.  I have several questions.
    1.  Can I load pictures onto my iPad2 from my PC?
    2  I don't know how much 3G to get.
    3.  When is the OS5 coming out and will I be able to get rid of my PC?
    4.  Since Apple does not recognize flash player, is there something else?  I cannot do several things (Facebook games, some banking, etc) because of no flash player.
    Sorry for all the questions but I don't have anyone to ask.  Thanks for your help.

    1. Yes. Connect to iTunes. Click your iPad2 in the devices tab on the left. Select the photos tab. Enable photo syncing (should be a check box in the top left), and then choose which folders to sync.
    2. Depends on your data usage and if you have your own home wifi network. If the only way you'll connect to the internet is through your iPads 3G, and you don't have a home network that it will connect to, then I'd go for the higher tier plan as 250mb will not get you far. If you spend time at home and have a home wifi network then 250mb might be enough as you would only use it when you're out and about.
    3. iOS is coming out in September. Once you update it you could theoretically get rid of your PC in so much as an iPad on iOS5 doesn't "need" a computer for anything exactly. Again, depends on your home internet situation as updates will happen over Wifi but I don't think they'll happen over 3G.
    4. Many facebook games have app store versions which you download from the app store, sign in with your facebook details and can use that way (farmville, etc). Most banks have an iPad/iPhone friendly website so even if the PC version has flash elements, you'll likely find when you visit them on your iOS device it no longer serves you flash content. For example YouTube is flash by default, but if you visit on an iPad it serves the appropriate HTML5 content. My bank has a fantastic iPhone app so I don't even need to use the website anymore - do some research. For flash video, in the event the website is *only* flash based you can use an app such as the Skyfire web browser (http://itunes.apple.com/us/app/skyfire-web-browser/id384941497?mt=8) to get around it. Personally, it very rarely comes up.
    Hope that helps

  • How to load a PDF from page 1 in IE

    I am currenty working on a fllex based web application that needs to load multiple PDF documents. The pdfs are loaded and displayed properly but after the user scrolls couple of pages/ lines and switches to a new document, IE saves the last visit cursor position of the pdf document. On user revisit to the first PDF the IE loads it from the last cursor position.
    I need to reload the PDF document from Page 1 everytime the user selects to load a pdf document.
    Is there any setting in the Adobe Acrobat Page display settings or in the IE that would help me accomplish my task.
    Please respond ASAP.
    NOTE: The pdf is loaded inside  an IFRAME.
    Thanks,
    -Karun

    > I have a feeling that removing the save button will not be possible.
    You cannot remove the save button, no, but you can replace its execute method with something that, say, pops up a warning to the user instead.
    > Is there any way to just load the file using a URL?
    The ActiveX control definitely loads a URL. See the "src" property of the ActiveX control. If you download the SDK, the ActiveView sample actually loads a PDF from a URL by default.

  • When I try to load a pdf in iframe and I disable PDF toolbar, Its working fine in Internet Explorer and lower versions of Firefox, but in Firefox 19 its not

    When I try to load a PDF inside Iframe and I disable toolar=0 (as guided by adobe). I am able to see the iframe with PDF with no toolbar in IE and lower versions of Firefox (till version 14).
    But in my current version 29, The PDF is visible with toolbar on top.
    Can you please let me know the way to display pdf with no toolbar in Firefox 29?

    I replied on your similar question here: https://support.mozilla.org/questions/1005225

  • How to load a PDF from a stream

    Hi,
    I'm looking at how to load a PDF file from a stream in .NET, e.g. something like a MemoryStream or FileStream. All of the methods I've seen so far only allow the PDF to be loaded from a file which we don't want to do because of security issues. I know I can do this with a third party tool, but is this possible without using any additional tools?
    Cheers,
    Dave Harrington.

    > I have a feeling that removing the save button will not be possible.
    You cannot remove the save button, no, but you can replace its execute method with something that, say, pops up a warning to the user instead.
    > Is there any way to just load the file using a URL?
    The ActiveX control definitely loads a URL. See the "src" property of the ActiveX control. If you download the SDK, the ActiveView sample actually loads a PDF from a URL by default.

  • Problem when applet going to load local machine jar files

    hi all,
    I have an applet that contains a 'core' module(jar) and 'core dependency' modules(jars).To reduce the applet download time i decided to load some heavy weight and lesser use 'core dependency' jars from local machine and core jar module and other low weight and highly use 'core dependency' jar modules from applet archives. I use the same class loader that used to load the applet archives for load local machine 'core dependency' modules.
    eg- this.getClass().getClassLoader().loadClass("class")
    When applet starts, Local machine 'core dependency' jar modules start loading but it couldn’t find classes in the core module (that download from archives) and stop the loading applet . But when i run that applet using IDE it is work fine. Please someone help me to solve this problem.
    Exception in thread "thread applet-com.dfn.pro.ui.UIContext-1" java.lang.NoClassDefFoundError: com/dfn/pro/plugins/dataupdate/UpdatableTable
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(Unknown Source)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$000(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at com.dfn.pro.plugins.JarClassLoader.invokeClass(Unknown Source)
    at com.dfn.pro.plugins.PluginContext.loadPlugins(Unknown Source)
    at com.dfn.pro.plugins.PluginContext.analyzeDependancies(Unknown Source)
    at com.dfn.pro.plugins.PluginContext.<init>(Unknown Source)
    at com.dfn.pro.plugins.PluginContext.getPluginContext(Unknown Source)
    at com.dfn.pro.ui.UIContext.init(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: com.dfn.pro.plugins.dataupdate.UpdatableTable
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)

    eg- this.getClass().getClassLoader().loadClass("class")Try using Thread.currentThread().getContextClassLoader() instead of this.getClass().getClassLoader().

  • MDM Data Manager - Freezes at loading Local Searches

    Hi all,
    While the loading the MDM data manager (DM) the application freezes for ~5 min while stating "Loading Local Searches", before the DM is finíshed loading.
    Does anyone know how to solve this problem, or at least where the local searches are stored on the drive?
    Kind Regards,
    Christian

    Hi Christian,
    While the loading the MDM data manager (DM) the application freezes for ~5 min while stating "Loading Local Searches", before the DM is finíshed loading.
    Does anyone know how to solve this problem, or at least where the local searches are stored on the drive?
    As per my knowledge, there may be some reasons for this problem.
    1. There might be a version mismatch between the MDM server and the MDM Data Manager Gui. You can check the verison only when the Data Manager opens.
    However, you can check it for other GUi's and compare it with the MDM server version. ( Even the build version should match).
    2. There might be huge number of records saved in your repository.
    3) You might have changed the repository strutcure which has not been updated throughout.
    There might be some other problem also.
    Possible solutions:
    1. Unload the repository and Load it again with UPDATE INDICES. This might solve the problem at the root itself.
    2)I would suggest you to check your GUI version and upgrade it if its not matching with the MDM server version.
    3)If still not working, you can try-unistalling the DM client and re-installing it again.
    Please note these 2 steps before performing the step 2 and step3.
    Check the repository for errors and if any, then verify it
    Do take a back of the repository from the Console- Use Archive repository.
    Hope it helps.
    Thanks and Regards
    Nitin jain

Maybe you are looking for

  • ICal iPhone Sync Issue... Bug?

    I have many repeating events in my calendar. I often have to change the time of one of the events in the string. I seem to have major problems when I do this either in iCal on my Mac or in the iPhone. When I sync I end up with deleted events, duplica

  • A few questions about Arrays and Array Methods.

    I have 2 dimentional arrays in a number of classes, and I wish to pass them about as variables, however, I can only seem to send int[], rather than int[][]. Gives me some compile errors. Another thing. How do i get the length of an array? I've tried:

  • File Cant be Overwritten--File Adapter

    Hi, I am working on File1(csv)-2-File2(csv) scenario using FCC. Now i am trying to append my file1 fields into File2.... But its showing me an error --- File Cant be Overwritten. I don't want to go with "OverWrite Existing File" option in Receiver si

  • AR Customers Account Details - query

    Dear All Can anyone provide me with PL/SQL query to extract AR Customers, Account details all outstanding balances as of date, PLEASE... Thanks n Regards, Iqbal...

  • Applicatio​n crashes when connecting remotely to debug it

    Hello again all you helpful forum-goers! I am trying to debug an odd behavior in my application which only happens on a specific computer under specific circumstances.  In order to do so, I enabled debugging in my application, and eventually was able