Oracle Outside In Image Export SDK API - DAInit() crashes

Hi,
We use DelayLoad concept to load Oracle Outside In Image Export SDK DLLs when it is required. If the necessary DLLs are not present, the DAInit() function call crashes. Is there any other way that it can throw exception and we can catch it and handle it? Or Is there any other method to detect that the necessary DLLs are not present? Kindly help us in this regard.
Thanks
Revathi

Thank for the update.
But I know this link and I searched there for Outside In Technology. No match.
I did try the obvious things, else I wouldn't ask here.
And what about the broken download ? Does nobody from Oracle read this ? Or does nobody care ? Does anyone know where I can mail the broken link ?
Regards
Kai

Similar Messages

  • File does not exist: /export/home/oracle/orahtml/marvel/images/spacer.gif

    Seeing this error in the apache log:
    File does not exist: /export/home/oracle/orahtml/marvel/images/spacer.gif
    I know there are spacer.gif files under the theme folders but why is it looking for a spacer.gif file in the images folder? Is this a bug?

    Hello,
    Yes I just checked it's a problem with theme 9 there are a couple of places where the theme calls #IMAGE_PREFIX#spacer.gif when it should call #IMAGE_PREFIX#themes/theme_9/spacer.gif
    There are two ways for you to fix this
    1. Copy themes/theme_9/spacer.gif to the top level images directory, I recommend this one because then if someone creates the theme from the repository again it wont' come up agian.
    2. Change all #IMAGE_PREFIX#spacer.gif to #IMAGE_PREFIX#themes/theme_9/spacer.gif in theme 9, if you export the theme you can just us a search and replace the export to do this and then reapply the theme.
    This as been bugged and will get fixed in future version.
    Carl

  • Failed to export image in image export (ix-8-5-1-linux-x86-64)

    Hi,
    I am trying to use Oracle OIT Image Export to convert EMF/WMF files to png. And I am trying to run the example "ixsample" in the downloaed SDK.
    I got "No valid fonts" error while running the example as below:
    ./ixsample "../samplefiles/black_shapes.wmf" "../result/test.png"
    Creating file: "test.jpg"
    EXRunExport() failed: No valid fonts found (0x0B03)
    It works if the sample file is "jpg", such as "oivt.jpg" provided in the SDK samplefiles.  Anything else should I do to make "wmf/emf" work?
    OS: Red Hat Enterprise Linux Server release 6.3 (Santiago)
    Thank you.

    Hi
    This error is arising out of library issue. As per the OI documentation https://docs.oracle.com/outsidein/851/supportdocs/ds_oitfiles_8_4_1.pdf these formats are supported. I have not worked these conversions before; but, searched a bit and found that these fonts are very machine dependent.
    Approach 1: Identify the fonts required for WMF and EMF, Find linux compatible version of those and then run the conversions
    Approach 2: Run the IBR instance on those windows machine where these fonts are available
    Or you can go with other converter's like ImageMagick for conversions
    Installing GraphicsMagick
    ImageMagick: Advanced Unix Source Installation
    You can try these installations
    EMF: libEMF: Enhanced Metafile Library
    http://www.csn.ul.ie/~caolan/Packages/libwmf.html
    This might provide you  some pointer
    http://www.rohde-schwarz.com/en/faq/fsiq-fonts-for-wmf-files-faq_78704-30023.html

  • How to create cross tab reports using RAS SDK api with Crystal Reports XI

    Hi Everybody,
    Iam generating reports in a web-based application with Crystal Reports XI using Report Application Server(RAS) SDK API. The columns in my report exceed that of an A4 sized page. So, when I export that report to pdf, only those columns that fit to a page are showing up. To solve, this problem, I thought of using cross tab. But, I donot know how to generate cross tab report using RAS SDK API. I have tried to get some code from the internet. But, I did not find any java code for that.Can some one give me some sample code.It is very urgent.
    Thanks in advance.

    Hi,
    The easiest way I use is to create the worksheet as regular table and then when i verify the data I get (non aggregate) I duplicate it as a cross tab.
    In the duplication wizard I just need to define the axis (using drag and drop).
    if you want to create a cross tab from the beginning you need to define that in the new workbook wizard (check the "cross tab" rather then "table"), chose your fields and define the place you want them.
    The data point (the center of the cross tab) is aggregated as to your machine definition and will happen automatically.
    for example: to find the amount of receipt by months:
    On the left put the "Buyer Name", on top put the "Months" and in the data point put the amount.
    What you'll get is something like:
    months: jan feb mar apr ......
    buyer_name
    jhon_smith 100 50 30 250 ......
    jhon_doe 80 45 90 453 ........
    and so on.....

  • How does one create the Process List (AdminUI) with the provided SDK API?

    Currently we are developing a custom component for Adobe LiveCycle, which should offer the following service operation:
    Fetch a list of schedulers (= long-lived processes with that loop with a Wait-operation) and check whether there are instances running for them
    Input: none
    Output: A list of (long-lived) process definitions together with a list of (running) process instances in XMLXML format could look like:
    <processes>
         <process>
              <name>Mortage/Util/Scheduler A</name>
              <application>Mortage</application>
              <status>Active</status>
              <creationDate>2015-03-25T13:00</creationDate>
              <processInstances>
                   <processInstance>
                        <id>12314</id>
                        <status>RUNNING</status>
                        <createdOn>2015-03-25T13:01</createdOn>
                        <modifiedOn>2015-03-25T13:02</modifiedOn>
                        <operations>
                             <operation>
                                  <name>Set Value X</name>
                                  <status>COMPLETE</status>
                                  <createdOn>2015-03-25T13:01</createdOn>
                                  <completedOn>2015-03-25T13:01</completedOn>
                             </operation>
                             <operation>
                                  <name>Set Value X</name>
                                  <status>STALLED</status>
                                  <createdOn>2015-03-25T13:02</createdOn>
                                  <completedOn>2015-03-25T13:02</completedOn>
                             </operation>
                        </operations>
                   </processInstance>
                   <processInstance>
                        <id>12315</id>
                        <status>RUNNING</status>
                        <createdOn>2015-03-25T13:02</createdOn>
                        <modifiedOn>2015-03-25T13:02</modifiedOn>
                        <operations>
                             <operation>
                                  <name>Set Value X</name>
                                  <status>COMPLETE</status>
                                  <createdOn>2015-03-25T13:02</createdOn>
                                  <completedOn>2015-03-25T13:02</completedOn>
                             </operation>
                             <operation>
                                  <name>Set Value X</name>
                                  <status>RUNNING</status>
                                  <createdOn>2015-03-25T13:02</createdOn>
                                  <completedOn></completedOn>
                             </operation>
                        </operations>
                   </processInstance>
              </processInstances>
         </process>
         <process>
              <name>Mortage/Util/Scheduler B</name>
              <application>Mortage</application>
              <status>Active</status>
              <creationDate>2015-03-25T13:00</creationDate>
              <processInstances/>
         </process>
    </processes>
    Though I'm unable to retrieve these kind of processes, since the SDK API does not offer a way to fetch these kind of processes.
    I tried the following Quick Start: http://help.adobe.com/en_US/livecycle/10.0/ProgramLC/WS624e3cba99b79e12e69a9941333732bac8- 7d27.html
    Quick Start (EJB mode): Searching for Process Instances using the Java API
    (and yes I went through all the possible options (other Quick Starts, API documentation))

    Yes, removing the block diagram obscures the code so much that not even newer versions of LabVIEW can make sense of it.
    I think under the hood it must be converting it to Perl.
    Spoiler (Highlight to read)
    If you believe this and have lots of money please contact me with your credit card info 
    If you believe this and have lots of money please contact me with your credit card info 
    =====================
    LabVIEW 2012

  • Get Rid of the Text-as-Image Export

    For the life of me I can't figure out why Adobe would add such an irritating feature and not allow it to be toggled.
    Come on Adobe developers, exercise some intelligence here.
    I am aware there are potential licensing issues but let's review:
    You cannot use system fonts that are not considered 'web safe' without them exporting as image, even though 99% of Windows users will have them and Mac users will have no trouble with them being substituted.
    It makes manual CSS font stacks useless since Muse abandons this possibility when it goes the image route.
    There are plenty of TypeKit fonts available through Creative Cloud that are accessible when synced, yet many of them are not in Muse's library so will also force image export. If it synced through CC and is licensed for web use then there are no licensing issues. Export as text and let the user drop in their TypeKit code.
    Many users will use Google/Typekit web fonts perfectly fine but downloading and self-hosting the font files just to use them in Muse is a waste of time and not necessarily possible.
    The workaround is to use a completely different font, thus upsetting the page layout, just so that it exports as text and a simple find and replace can be used to change font-family.
    I can't even use Open Sans without it exporting as an image. Seriously? Likely the most widespread web font in existence and you force an image export. That's just bad.
    Please get rid of this... allow users to turn image exports off and handle font styling ourselves or remove it entirely.
    It was fine beforehand when you could use any font installed locally, including CC synced Typekit fonts, with only the Muse fonts triggering placing of a Muse Typekit code.
    This resulted in users having to intervene post-export to have web fonts render properly if they weren't available through Muse which was perfectly reasonable.

    Feature Requests
    1. Provide access to the complete Typekit font offering.
    2. Provide the ability to define and use your own font fallback stacks (aka Web Safe font definitions)
    Possible Misconceptions
    1. Open Sans isn't readily available as a Web Font in Muse
    2. We've changed something in the generated code that makes it more difficult to manually edit the output.
    You're correct. The paid Typekit library is not currently easily available from within Muse. We continue to lobby the Typekit team for changes required to enable paid Typekit in a seamless UI within Muse, but thus far we have yet to reach the top of their development team's priority list.
    If you're familiar with font stacks you're aware there are very few truly "web safe" fonts. In most cases using a "web safe" font means settling for one of a handful of fonts depending on the OS or device being used to view your site. That font variation means variations in the line breaks within text frames and thus changes to text frame heights which are likely to result in changes to the overall layout of your pages. In most cases a Web Font is a much better choice if the visual fidelity of your design is an important part of your site. It's unlikely Muse will provide the ability to define arbitrary font stacks. Given the target market of Muse and our small development team, future additional font support will likely continue to be in the area of Web Fonts.
    If you select "Add Web Fonts" in the Web Fonts section of the Fonts menu you can browser a library of 500+ font families that are provided for free and hosted on Adobe's Typekit service. This set of free fonts is marketed as "Edge Web Fonts." The Edge Web Fonts offering started as the set of public domain fonts hosted by Google with a small number removed due to quality issues and a small number added from the set of fonts Adobe wholly owns. The majority of the ~650 web fonts now hosted by Google are part of the 500+ web fonts readily available within Muse.
    Open Sans is one of the font families in the Edge Web Fonts library. Go to "Add Web Fonts" in the Fonts menu, type "open" in the search field of the Web Fonts dialog, click on Open Sans and it will be added to the Web Fonts section of your Muse Font menu for easy future use. On your site the font will be provided via Typekit without any page view limits or requirement to be a Creative Cloud subscriber.
    To my knowledge there have not been any changes in Muse output that should impact your ability to use a Web Safe font in Design view, then alter the generated code to replace that font with a font from some other source (i.e. paid Typekit, Fonts.com hosting, etc.). It's never been possible to use a System Font in Muse and then alter the output code to replace the font, since the output for a text frame that uses a System Font has always been an image.
    Thank you for taking the time to voice your opinions and provide feature requests.

  • How do you crop outside the image in Adobe Camera Raw?

    I would like to create a crop of a portion of an image in Adobe Camera Raw AND include some area outside that image. Is there a way to do this.

    You can't do that in ACR, but you can if you open it in Photoshop and use the crop tool there.
    Gene
    (If this answers your question, mark it correct.)

  • Still images exported to DVD look deinterlaced and flicker on TV monitor

    Hi,
    I have tried tried almost everything and I still have issues with the still images exported to DVD as sequencefrom FCP 7.0 by using Compressor are deinterlaced and flicker on TV monitor. Please help remove the annoying flicker.
    My FCP Timeline Sequence settings match the image resolution:
    Frame Size: 1024 x 682 (double of 720 x 480 standard DVD res)
    Pixel Aspect Ratio: Square
    Field Dominance: None
    Compressor: Photo JPG (also tried, DVCPRO-NTSC)
    I cropped the original images in Photoshop to the 1024 x 682 and saved as tiffs. They still look deinterlaced in FCP timeline and exported to DVD on my iMac computer monitor.
    Final output of DVD will be on this monitor:
    Specifications:
    Ikegami
    Model: VCM-2101
    Resolution: 450 TV Lines (Horizontal)
    Should I crop the images to 450 horizontal pixels or the double of that 900?
    How can I match the sequence or the images settings to avoid the flicker and deinterlaced look on that monitor? I am not able to test the image by having the monitor next to computer.
    Compressor:
    I used custom DVD settings in Compressor for 90 min best quality DVD. Tried the Porgressive and "Same as Source" in Output field.
    In "Crop to" and "Padding" I set for preserve source aspect ratio and letterbox area of source.
    I followed the advices from below and I still did not resolve the problem. Please is there anythign else I can try?
    Thanks a lot..
    Re: Poor Quality Stills
    Dec 19, 2006 4:08 PM (in response to Steve Braker)
    Things to try (In increasing order of image degradation)
    - (in FCP) field order>none
    - (in FCP or Photoshop) reduce whites by 10% - reduces overly bright areas
    - (in FCP) flicker filter - minimum
    - (in Photoshop) motion blur>vertical> .2 - .5 pixels - blurs vertically only
    - (In FCP or Photoshop) Gaussian blur> .2 - .5 pixels -blurs both horizontally as well as vertically
    - (in FCP or Photoshop) deinterlace - throws away half the image and is generally not appropriate on scanned images

    Dear Russ,
    Thank you very much. Yes, there is something else in the sequence, old documentary, 768 x 570 (no field dominance, 25fps, Apple ProRes 422) but the images are more imporant.
    make a progressive sequence with  square pixels. (I am partial to 720P, 1080 should work – or 540). Choose Pro Res 422
    Do you mean that I should make a sequence in FCP with these settings? If yes, how can I set a "progressive" sequence? I dont see a setting for output field in FCP sequence settings, lnly in customizing Compressor output DVD format.
    Also: "720P, 1080 should work – or 540" are you talking about Frame size? If so, to set in Compressor or in FCP?
    If you have interlaced material, then de-interlace before you bring it in. If you don't have interlaced clips, don't de-interlace.
    The images are not interlaced after  I crop them, apply motion blur filter in Photoshop but look interlaced in FCP timeline after I import them and even to the same as photos sequence in FCP timeline.
    Please help and thank you for your comments.

  • Could work an animated flash bitmap image exported in html 5, in DPS ?

    I'm new in DPS, just started for a couple of weeks and I need to use a image in an animation.
    I created the animation in inDesign exported in .fla, used de toolkit js, load it in a container with web content overlay, and when I preview it with Adobe Content Viewer it doesn't work, it apears a blank screen. Neighter of animation from that stage won't work.
    To be very precise any animation works fine, when I test the html in a browser, the problem appears only in the content viewer.
    The animation is very simple: smal logo entering in the stage from the right, not very complex.
    I tried in flash with other images in a test file and loaded in inDesign, and still don't work. Other vector animation works well, no problem. I saw that if I have an image in library in flash and export a simple animation with a vector ball, won't work in indesign preview, with content viewer.
    My question is, Could work an animated flash bitmap image exported in html 5, in DPS ?  If so, what should I need to do ?
    Thank you in advance.

    Two possible solutions I was considering:
    1) In my index/first page, have all the swfs present (scaled to 1x1, behind something, or invisible) and have a preloader code on that first page... so all the content gets loaded before continuing onto the rest of the site.  That would certainly work in making the site run quick... but would mean a relatively lengthy wait at the start.  Luckily, unlike my current site, all the actual site content (aside from the header/nav interface) is HTML... so the bulk of the site's content is in the HTML pages, not as part of the Flash header... so it probably wouldn't be too horrific a wait.  However, it would be loading EIGHT of these swfs, since there are eight pages... so then maybe it would be....
    2) Have an swf that consists of just the 'draw up' of the interface, and it's idle state... then when each button is pressed, load a new swf to replace the main one, which has the specific page's animated title sequence, and ends with the code to load the html page.  So, each separate HTML page would have embedded into it only the main swf, and the title animation swf would be swapped in when a nav button is pressed.  Main issue here is each button press would envoke a preloader sequence (kind of tedious)... and unfortunately all the 'main interface' elements loaded in with the main swf would have to be loaded in again at the start of each animated title swf (although none of the draw up... just the loading of the interface and buttons).  For highspeed users, it should be okay, I guess....
    Thoughts or better ideas?

  • Watermark not showing correctly on image export

    I've come from Aperture 2, and when I exported jpegs I had a small watermark - a 15 x 18 png file - that I added to my exports. When I upgraded to Aperture 3 I did it by creating a new library and importing the Aperture 2 library. My existing image export presets appeared, but with the watermarks missing. I added the watermark using the preset dialog. When I tried to change the position of the watermark in the dialog, the watermark did not move in the preset dialog. When I printed the picture the *watermark was scaled up* to fill the whole picture. This makes the watermark unusable.
    Anyone else come across this? Any work-arounds?

    Same problem here. They really mucked this up.
    It needs to work EXACTLY the way it did in 2.x, because the way they do it now we can't get a pixel for pixel watermark exactly where we had it in 2.x.
    I'm guessing most of us had a fixed size watermark with transparent padding to push it away from the "edges" that it was set to, set to not scale so we had direct control over the WM's size.
    Regardless of how you set it up now, it scales, and you have no control over how much. If I'd have wanted a buggy windows product that knew more about what I wanted to do than I did, I'd have bought Office 2008.

  • 1.1 vs 1.4 : SDK API's and how they relate to JVM versions

    Hey all,
    I'm hoping some Java expert/guru/enthusiast can help me understand a little (OK, a lot) more about designing applets for backward compatibility .
    My situation is that I need to design applets which are compatibile with the built-in Java features of Internet Explorer and Netscape 6.x - which appears to be JVM versions 1.1.4. I know going with Java2, JDK 1.4, web start whatever would be MUCH better, and will do whatever I can to push clients to plug-in & non-MS browsers, etc. etc., but believe me, supporting MS JVM 1.1.4 is a requirement...
    ...So my question is, are there any things added to the JDK since 1.1.4 that can be used in a 1.1 JVM? If so, how would I be able to determine what those things are without testing them all?
    Like could i take java source for some 1.4 SDK code and add them to a 1.1 project? how do I know if the api requires a new intrinsic or not? (native keyword?)
    Also, I'm using the 1.4 SDK compiling for 1.1 targets, aside from the 1.4 SDK api's & packages, will there be any code I can write that will happily compile for a 1.1 target but then mysteriously fail when testing? What I mean is, if I use a new language feature or compiler feature since 1.1, will the 1.4 compiler's byte-code still be 1.1 compatible, or will there be some potential run-time problems?
    thanks

    As a rule of thumb, avoid all swing components (just use awt) because they are only available in 1.2. You can use all enhancements and bug fixes to awt components that are available in 1.4 (even 1.5).
    ;o)
    V.V.

  • How to get Client IP address in oracle apps. Are there any API's.

    hi,
    I have one query
    ->How to get Client IP address in oracle apps. Are there any API's.
    regards,
    krishna

    Hi,
    this is very usefull
    however are this data stored on the db or is only a temporary view?
    I would like to have to keep track of all client connected.
    Thanx a lot

  • Help required on Oracle Outside In / INSO

    Hi,
    We have a query related to Oracle Outside In technology /INSO .
    Using INSO (sccvw.h / charsets.h) , we are able to fetch raw data for the document which is in english by sending the following message
    SendMessage(SCCVW_GETRAWTEXT,0,(LPARAM)(PSCCVWGETRAWTEXT50)&sRaw) != SCCVWERR_OK )
    But when we are trying to fetch raw data in the similar manner for the document which has UNICODE characters , the unicode characters are getting converted to “*”.
    After going through some documentation , , I found it is due to "SCCID_UNMAPPABLECHAR" (When the Outside In Viewer Technology is displaying a character and cannot find that character in any font on the system, it will display a replacement character. This value is the Unicode value for this character. The default value for this character is 0x002a "*". ") (ref : http://download.oracle.com/docs/cd/E14154_01/dev.835/e12845/e02_vtoptions.htm#sthref382 ).
    The SCCOPT_DEFAULTINPUTCHARSET option will be setted to ANSI1252 on Windows (ref : http://download.oracle.com/docs/cd/E14154_01/dev.835/e12845/e02_vtoptions.htm#sthref382 ). Because of this option , I guess the application is not recognizing Unicode characters.
    I tried to set Unicode support in the following manner .
    Before fetching rawtext using SendMessage(SCCVW_GETRAWTEXT,0,(LPARAM)(PSCCVWGETRAWTEXT50)&sRaw) , I have written the following code .
    locFlags = CS_UNICODE;
    locOption.dwSize = sizeof(SCCVWOPTIONSPEC40);
    locOption.dwId = SCCOPT_DEFAULTINPUTCHARSET;
    locOption.dwFlags = SCCVWOPTION_CURRENT;
    locOption.pData = (VTVOID *)&locFlags;
    SendMessage(SCCVW_SETOPTION,0,(LPARAM)(PSCCVWOPTIONSPEC40)&locOption);
    I am getting 0 as return value for SendMessage which is success .
    But still I am getting same output (“*” , 0x2a in hex ) in sRaw.Text.
    Could you please guide us how to set option to fetch Unicode data.
    Note : Languages are installed in that system and I cross checked by manually typing the same Unicode characters in word documents on the machine.

    Hi
    Check these threads
    1.[Mobile Development Kit,|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/5fea0ec9-0301-0010-8697-f9e65510d2a3]
    2.[SAP MI 2.5 Configuration/Installation|SAP MI 2.5 Configuration/Installation;
    Best Regards
    Satish Kumar

  • Have been trying to export versions to a friend in the UK as JPEG. He receives them as bmp and no Metadata. Tried all the JPEG settings in  Image Export with no success.

    Have been trying to export "versions to a friend in the UK as JPEG. He reseives them as bmp with no Metedata. Have tried all the JPEG settings in Image export with no success.
    Nelson

    Ernie-
    Thanks for responding...but still have a oroblem. Here's what I'm doing:
    In Aperture I choose a "version" that has been Adjusted (croped, etc.).
    - Go to "File"...'Export"..."Version"
    - In next window for "Export preset" I choose "JPEG-Fit within 1024x1024"
    - Click on "Export version"
    The exported version then showes up in "Finder" under "Pictures"
    - Next I open "Mail" (version 5.2)
    - Adderss email to friends in England.
    - Click on attachment (paper clip)
    - Choose my "version" from "pictures"
    - Back in Mail, click on "Format"..."Make Plain Text"
    - Send
    My friends receive it as "bmp", not JPEG, with no Metadata.
    If I do the same procedure but under "File" choose "Export Master", they receive it as JPEG and also the Metadata.....BUT, of course, no Adjustments, such as croping, that were made to the "Version".
    What am I doing wrong? Is there any way to save the "Version" as a "Master" and then send it as a "Master"?
    Thanks,
    Nelson

  • Remove hidden text using SDK api

    HI Guys,
    I am new to SDK and would like to know if there is an API to remove hidden text functionality the one that described here. I need a separate .Net library on top of Acrobat SDK that could remove all hidden data from pdf and save it.
    Please point me to an example or documentation where to start from, if it can be done?
    Thanks,
    Andrey

    I have found in sdk api the following method:
    PDWordFinderAcquireVisibleWordList()
    "Finds all words on the specified page that are visible in the given optional-content context" what does it means 'visible'? it is related with the 'heuristic' Acrobat uses to show 'hidden text'?
    It is not clear also the 'PDOCContext ocContext' parameter this method uses.
    Thanks

Maybe you are looking for

  • Backing up to external hard drive connected to the Time Capsule?

    I have connected an external hard-drive to the 1TB TC. Using the Time Machine settings, I cannot select this disk to backup too, even though this disk is accessible via the finder > timecapsule > external drive. My general issue is: I have a 2TB hard

  • I'm getting a glitch in Acrobat XI PDF document created from Word.

    Hi everyone, I have been using Microsoft Word 2010 and Acrobat for many years. I have this Word document (a user manual) with images that I've pasted into from MS Paint. Then I add some arrows and call-outs. I save my Word document with the Save as A

  • Save form with data from a field

    Hi, Is there an option to save the form with the data from one of the fields? Example: form field "Name", user enters Will William. Can I use this to autmatically save the form in the end as "Will William" and choose the save location? Thanks

  • Application deployment Security Exception in OIM

    Hi All, We tried to deploy application for site minder login page called "SSPR application" For that we generated a war file with (css, images, js,META-INF, WEB-INF) using command jar -cvf sspr.war . Then We deploy it into the console and start and a

  • Trouble getting on itunes store

    Everytime I get on the itunes store I get this message: Itunes could not connect to the itunes store. The network connection was refused. Make sure your network settings are correct and your network connection is active, then try again.