Pulling data across domains

Hello. I have hit a real deadend with this problem. I would
appreciate some help.
I have designed a website in Flash (
http://www.clarkhulings.com).
Under "Store" on the navigation bar, it contains a PayPal "View
Cart" button that is not working. This is because the Flash does
not allow direct access to data on the PayPal site. For security
reasons, a Macromedia Flash movie playing in a web browser is not
allowed to access data that resides outside the exact web domain
from which the SWF originated. See
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14213
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_16520
I have created a crossdomain.xml file and added it to the
webserver of clarkhuling.com. The file looks like this:
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "
http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*.paypal.com"
secure="false"/>
</cross-domain-policy>
Because clarkhulings.com is not using SSL and PayPal is, I
have used secure="false" in the code above.
My Actionscript code that is attached to the View Cart
button, looks like this:
view_cart_btn.onRelease = function() {
var paypal_lv:LoadVars = new LoadVars();
paypal_lv.onLoad = function(p_success:Boolean) {
if (p_success) {
for (var i in this) {
trace("PayPal Responce "+i+": "+this
} else {
trace("PayPal Responce: Error connecting to server.");
paypal_lv.cmd = "_cart";
paypal_lv.business = "[email protected]";
paypal_lv.display = "1";
paypal_lv.page_style = "hulings";
paypal_lv.sendAndLoad("https://www.paypal.com/cgi-bin/webscr",
paypal_lv, "POST");
As you can see, by going to the website (
http://www.clarkhulings.com),
clicking "View Cart" under STORE does not work. What am I doing
wrong? I would appreciate the help of more learned developers out
there!
You can download a copy of one of my FLA files at
http://www.clarkhulings.com/gallery_affiliates.fla.zip

الحمد لله
thanks for Allah,
and thans for Justin "Cartoon Smart" http://www.cartoonsmart.com/
i fix this problem using the proxy file which he upload with the RSS Reader tutorial,
http://www.cartoonsmart.com/rss_reader.html
so, for any people who have the same problem which is called
Loading data across domains
here you are the solution,
i used the proxy.php file
just Note if you are using Flash Player 10, you must upload it in the root domain
like :
www.yourdomain.com/proxy.php
Note that you don't need to make any modefications to this file at all, just upload it as it is
then you point to it in the flash file or in the XML fle which you control the flash form it,
im my case i control the flash form a xml file called controls.xml and i make variable to load rss feeds from a variable in it called LinkRss
so in this file i must point to the feed using this way
Code:
LinkRss="http://www.yourdomain.com/proxy.php?url=http://rss.news.yahoo.com/rss/topstories"
sure you will change yourdomain to be any domain name you are putting the flash in it,
for example
Code:
LinkRss="http://www.cartoonsmart.com/proxy.php?url=http://rss.news.yahoo.com/rss/topstories"
that's all,

Similar Messages

  • Fix for Data across domains (need java servlet)

    Hi I can resolve accessing data across domains using php from
    info i found here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16520&sliceId=1#proxy
    however php is not and option, i need to use java. how can i
    make a java file that does what this php does:
    <?php
    $dataURL = "
    http://targetdata.xml";
    //note that this will not follow redirects
    readfile($dataURL);
    ?>

    will this work if the PDF pages are already created?
    we are going to be provided about 300 already made PDF pages in which I need to do something like , put JSP or Java tags in a form field that will fill the form field with data that the tag queries for....

  • How do I enable "Access data sources across domains" in firefox?

    Couple of links do not work on my firefox however they work fine on IE. This is because the "Access data sources across domains" is enabled in IE and i am not sure on how to make this setting enable on Firefox as well.
    Please provide the steps to enable "Access data sources across domains" setting in Firefox.
    Please help!

    This should add the permanent exception:
    [https://support.mozilla.org/en-US/kb/connection-untrusted-error-message#w_bypassing-the-warning Connection Untrusted Error Message: Bypassing the Warning]
    However if it is not staying until the next time that the user opens up Firefox, is it possible that they are in permanent private browsing? [[Private Browsing - Browse the web without saving information about the sites you visit]] - that should have instructions to get in and out of it.

  • UNIQUE Problem in pulling DATA from DATA base table to internal table

    Dear Experts,
    I am new to ABAP. I have a very basic question but looks a quite puzzling one to me. Hemnce I am posting it here.
    I am facing an unique problem in pulling data from database table and populating that data into internal table for further use.
    The data in the database table "Zlt_mita" with fields M1 (Employee Name, Type: Char20) and M2 (Employee Code, Type Char7) are:
    Plz refer the screenshot in the attached file:
    My Code:
    1) When I try to pull data from Dbase table by taking M2 as parameter.
         This code is succcessful and I am able to populate data in internal table it_dat.
    TYPES: Begin Of ty_DAT,
                     M1   TYPE  Zlt_mita-M1,
                     M2   TYPE  ZLT_mita-M2,
                 END  OF  ty_DAT.
    DATA: it_dat        TYPE STANDARD TABLE OF ty_dat with header line,
              wa_dat      TYPE   ty_dat.
    PARAMETERS: p_mitar    TYPE  Zlt_Mita-M2.
    SELECT           M1
                           M2
            FROM     ZLt_mita
            INTO       TABLE it_dat
            Where     M2 = p_mitar.
    Loop at it_dat into wa_dat.
       WRITE:/2 wa_dat-M1,
                  10 wa_dat-M2.
    ENDLOOP.
    2) When I try to pull data from Dbase table by taking M1 as parameter.
         This code is NOT succcessful and I am NOT able to populate data in internal table it_dat.
    TYPES: Begin Of ty_DAT,
                     M1   TYPE  Zlt_mita-M1,
                     M2   TYPE  ZLT_mita-M2,
                 END  OF  ty_DAT.
    DATA: it_dat        TYPE STANDARD TABLE OF ty_dat with header line,
               wa_dat      TYPE   ty_dat.
    PARAMETERS:    P_Mita    TYPE   ZLT_Mita-M1.
    SELECT           M1
                           M2
            FROM     ZLt_mita
            INTO       TABLE it_dat
            Where     M1 = P_Mita.
    Loop at it_dat into wa_dat.
       WRITE:/2 wa_dat-M1,
                 10 wa_dat-M2.
    ENDLOOP.
    Why is this happening when both M1 and M2 are Type Character fields.
    Looking forward for your replies.
    Regards
    Chandan Kumar

    Hi Chandan ,
    Database fetch is case sensitive ,So u need to give exact format in where condition.
    Make your parameter and database in same case so that you need not worry about case sensitivity .
    Check the lowecase check box in the domain .
    Then declare your parameter 
    PARAMETERS:
    P_Mita
    TYPE   ZLT_Mita-M1 LOWER CASE . 
    You can do the vice versa also by unchecking lowercase and giving Upper case instead of lower in parameter declartion .
    Regards ,
    Juneed Manha

  • Content Repository sharing across domains

    Hello,
    Is it possible to share a bea content repository across domains?
    Thanks,
    -- Anant

    Ok,
    But besides caching, would there be any other issues, like entitlements and delegated admin?
    If the content cache timeout were to be set to say 20 minutes, then at the most the content would be 20 minutes out of date. So then could you set up a repository in multiple domains, with one domain having the entitlements and delegated admin setup for publishing content and the other domains being read only?
    Thanks,
    -- Anant

  • RE: date-time domain overhead in express queries.

    DateTimeData objects in Forte are inefficient, both in terms of memory
    footprint and instantiation speed. My understanding is that it stores
    different parts of the date as separate textdata sub-objects.. Large
    footprint also means they take a long time to pass across the network.
    We rarely use DataTimeData or any related "domain" type objects. We have
    our own date class which stores the entire date and time in a single string
    attribute.. Much faster, much smaller footprint, etc. Fetches from the
    database use a "to_char(...)" approach to format the date from the database
    directly in to the internal string attribute in the correct format, again
    for speed..
    -Greg
    -----Original Message-----
    From: Jones, Kerreck [SMTP:[email protected]]
    Sent: Tuesday, January 19, 1999 11:36 AM
    To: '[email protected]'
    Subject: date-time domain overhead in express queries.
    In our application, we have an outline window which displays 11 fields, 3
    of
    which are date time domain.
    Our database currently contains about 1500 entries, and the query takes as
    long as 70 seconds. If we
    remove the DTG domains from the application model, then the query takes
    only
    35 seconds. Is there any
    known problem with the overhead of the express date time domain when doing
    queries?
    Thanks in advance for any info.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    I have considered this but have not found an elegant solution to the
    problem of working accross multiple time-zones.
    The application I am working on will ultimately need to work within Europe,
    potentially servicing multiple time zones. By converting the date to a
    string we lose the time-zone conversion that Forte does when an object
    moves partitions and this is likely to cause problems as we then have no
    "central" point of application time. If this is not a problem for you then
    I would use strings as much as you possibly can.
    If anyone has any thougths on how I could use scalar's in this case I'd be
    interested to hear them. I've thought about forcing clients to "register"
    with my central clock and then doing conversions behind the scenes but it
    seems a bit inelegant.
    However, one thing cannot be emphasised enough. Using the simple object
    types (TextData's, IntegerData's etc) as class attributes is a really bad
    idea, and will give you a number of performance penatlies.
    Serialisation/De-serialisation of objects is really slow when compared with
    scalars.
    Scalars take up no 'object space' so you save on garbage collection.
    Scalars are tiny when compared with their object equivalents.
    Hope that helps.
    From: [email protected]
    To: [email protected]
    Cc: [email protected]
    Subject: RE: date-time domain overhead in express queries.
    Date: 19 January 1999 18:22
    DateTimeData objects in Forte are inefficient, both in terms of memory
    footprint and instantiation speed. My understanding is that it stores
    different parts of the date as separate textdata sub-objects.. Large
    footprint also means they take a long time to pass across the network.
    We rarely use DataTimeData or any related "domain" type objects. We have
    our own date class which stores the entire date and time in a singlestring
    attribute.. Much faster, much smaller footprint, etc. Fetches from the
    database use a "to_char(...)" approach to format the date from thedatabase
    directly in to the internal string attribute in the correct format, again
    for speed..
    -Greg
    -----Original Message-----
    From: Jones, Kerreck [SMTP:[email protected]]
    Sent: Tuesday, January 19, 1999 11:36 AM
    To: '[email protected]'
    Subject: date-time domain overhead in express queries.
    In our application, we have an outline window which displays 11 fields,
    3
    of
    which are date time domain.
    Our database currently contains about 1500 entries, and the query takesas
    long as 70 seconds. If we
    remove the DTG domains from the application model, then the query takes
    only
    35 seconds. Is there any
    known problem with the overhead of the express date time domain whendoing
    queries?
    Thanks in advance for any info.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Setting cookies across domains

    Hi there all,
    I'm posting this in desperation to be honest, don't think
    there is a cut'n'dried
    answer to this one.
    I've got a horrible situation, (don't ask why, it's far too
    complex and to
    be quite honest.. boring :) ).
    I'm trying to "mesh" together a classic .asp with an asp.NET
    site on 2
    separate domains.
    Basically I've got a page from the asp.NET site (eg.
    www.something.co.uk)
    displayed within an iframe on the .asp (eg
    www.another.co.uk). So far so
    good.
    I need to set a cookie on www.another.co.uk and be able to
    read it, or
    replicate it on www.something.co.uk. Because they are not
    sub-domains I can't
    set the cookie direct because of security restrictions.
    So, I thought I could pass a URL variable across to
    www.something.co.uk via
    the iframe URL, and then using javascript to read said URL
    variable and set
    a cookie on the www.something.co.uk domain. No go. Suspect
    there is yet
    again security restrictions to setting cookies across domains
    using iframe.
    So I'm kind of stuck. Can anybody suggest anything please,
    bearing in mind I
    have very limited control over the asp.NET
    (www.something.co.uk) site, so
    any solution I come up with needs to be using javascript.
    Major sized thanks in advance.
    @ndyB

    You could also pass the id as a hidden field in a form.
    Have the link call a JavaScript function. The JavaScript funcition could access the cookie and pull out the id. The function would then set a hidden field in a form to the id value and then Post the form to the secure server.
    The form would only have hidden fields so it could be tagged on the end of the HTML page and the user would never know it was there.

  • Sync data across multiple clients

    I am create an application in flex that pulls and pushes data to a MySQL database.  This program will have multiple clients logged in at the same time.  I am wondering what the best way to ensure that the data is accurately updated across all of the clients would be.

    Can you explain what you mean exactly by sockets?
    Is there any way to Sync data across multiple clients without the crazy expensive cost of LCDS?

  • Pulling data from a second sharepoint site that is on a different server

    Hi,
    I need to pull some news stories located in a list on a separate sharepoint site on a separate server. I will also be filtering the stories pulled using a custom column on the list on the source site. Can anyone tell me what would need to configure
    to be able to do this?
    thanks,
    Sherazad
    Sherazad

    Hi,
    According to your post, my understanding is that you want to pull data from a second SharePoint site that is on a different server.
    If the two servers are in the same domain, you can enter the site url in the brower directly.
    If the two servers are in the different domains, you need to create a trust between the domains.
    More information:
    http://stackoverflow.com/questions/12780886/cross-domain-access-in-sharepoint-2010
    http://www.boostsolutions.com/blog/how-to-add-trust-domains-in-a-sharepoint-farm/
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Newbie: how to pull data from different data bases to a central location

    Hello,
    I have no experience at all in Oracle; just in MySQL, PostgreSQL, Firebird for simple applications. I have this project where my Client wants to extract data from related 5 tables, from 12 databases in different locations. Table structure in all 12 locations are the same, and I need to consolidate information for reporting purposes. I was planning in developing a Delphi application for this purpose, yet maybe with pure Oracle SQL or Oracle tools can I automate this?
    Thank you

    Please clarify your term "database".Instance of an Oracle database, one in each of the 12 locations.
    Are the computers in all these locations available via Internet?My client can see all 12 databases from an Oracle database manager; I still have to investigate if its through Internet or private WAN.
    What RDBMS are all these data sources?I have yet to verify the precise Oracle version, yet I know its an old one: 7 or 9. Will confirm it.
    What flavor of RDBMS is the target data repository?Same as previous question
    Is this a 1 shot data load or an ongoing requirement to consolidate "new" data into repository?The require to pull data automatically, maybe a batch process done by night.

  • Pulling data from table to a flat file

    hi all,
    Good day to all,
    Is there any script which i can use for pulling data from tables to a flat file and then import that data to other DB's. Usage of db link is restricted. The db version is 10.2.0.4.
    thanks,
    baskar.l

    Is there any script which i can use for pulling data from tables to a flat file and then import that data to other DB'sFlat file is adequate only from VARCHAR2, NUMBER, & DATA datatypes.
    Other datatypes present a challenge within text file.
    A more robust solution is to use export/import to move data between Oracle DBs.

  • Unable to connect to the server to pull data from mysql

    Hello,
    I am novice working with Flash Builder 4 and I just created a test application which runs well in my computer pulling data from Mysql using PHP and populating a datagrid. But when I transfered it to the my hosting provider failed. I have been doing some modifications to the gateway.php and amf.config.ini to solve some of the issues. Now the application try to run but doesn't populate the data in the datagrid. I included a tracking point in my data service file to read the connections variables, but they come up in blank. I highly appreciate any help. Here are my gateway.php, amf.config.ini and the data service.
    gateway.php
    <?php
    ini_set("display_errors", 1);
    $dir = dirname(__FILE__);
    $webroot = $_SERVER['DOCUMENT_ROOT'];
    $configfile = "$dir/amf_config.ini";
    $fp = fopen("tracking.txt", "a");
    fwrite($fp, "1-config file " . $configfile . "\r\n");
    //default zend install directory
    $zenddir = $webroot. '/ZendFramework/library';
    //-$zenddir = $webroot;
    fwrite($fp, "2-default zendir" . $zenddir . "\r\n");
    //Load ini file and locate zend directory
    if(file_exists($configfile)) {
         $arr=parse_ini_file($configfile,true);
         if(isset($arr['zend']['webroot'])){
              $webroot = $arr['zend']['webroot'];
              $zenddir = $webroot. '/ZendFramework/library';
         if(isset($arr['zend']['zend_path'])){
              $zenddir = $arr['zend']['zend_path'];
    fwrite($fp, "3-after zendir" . $zenddir . "\r\n");
    // Setup include path
    //add zend directory to include path
    set_include_path(get_include_path().PATH_SEPARATOR.$zenddir);
    // Initialize Zend Framework loader
    require_once 'Zend/Loader/Autoloader.php';
    //-require_once 'Autoloader.php';
    Zend_Loader_Autoloader::getInstance();
    // Load configuration
    $default_config = new Zend_Config(array("production" => false), true);
    $default_config->merge(new Zend_Config_Ini($configfile, 'zendamf'));
    $default_config->setReadOnly();
    $amf = $default_config->amf;
    fwrite($fp, "4- configfile" . $dafault_config["production"] . "\r\n");
    // Store configuration in the registry
    Zend_Registry::set("amf-config", $amf);
    // Initialize AMF Server
    $server = new Zend_Amf_Server();
    $server->setProduction($amf->production);
    if(isset($amf->directories)) {
         $dirs = $amf->directories->toArray();
         foreach($dirs as $dir) {
             // get the first character of the path.
             // If it does not start with slash then it implies that the path is relative to webroot. Else it will be treated as absolute path
             $length = strlen($dir);
             $firstChar = $dir;
             if($length >= 1)
                  $firstChar = $dir[0];
             if($firstChar != "/"){
                  // if the directory is ./ path then we add the webroot only.
                  if($dir == "./"){                  
                       $server->addDirectory($webroot);
                  }else{
                       $tempPath = $webroot . "/" . $dir;
                        $server->addDirectory($tempPath);
              }else{
                      $server->addDirectory($dir);             
    fwrite($fp, "5-temp path" . $tempPath . "=>" . "\r\n");
    fwrite($fp, "******************************************" . "\r\n");
    // Initialize introspector for non-production
    if(!$amf->production) {
         $server->setClass('Zend_Amf_Adobe_Introspector', '', array("config" => $default_config, "server" => $server));
            $server->setClass('Zend_Amf_Adobe_DbInspector', '', array("config" => $default_config, "server" => $server));
    // Handle request
    echo $server->handle();
    ?>
    amf.config.ini
    [zend]
    ;set the absolute location path of webroot directory, example:
    ;Windows: C:\apache\www
    ;MAC/UNIX: /user/apache/www
    ;-webroot =c:/wamp/www/
    webroot = /home/frutiexp/public_html
    ;set the absolute location path of zend installation directory, example:
    ;Windows: C:\apache\PHPFrameworks\ZendFramework
    ;MAC/UNIX: /user/apache/PHPFrameworks/ZendFramework
    ;zend_path = /home/frutiexp/public_html/ZendFramework
    [zendamf]
    amf.production = true
    amf.directories[]=fb41/services
    ;amf.directories[]=./
    CoursesService.php
    <?php
    *  README for sample service
    *  This generated sample service contains functions that illustrate typical service operations.
    *  Use these functions as a starting point for creating your own service implementation. Modify the
    *  function signatures, references to the database, and implementation according to your needs.
    *  Delete the functions that you do not use.
    *  Save your changes and return to Flash Builder. In Flash Builder Data/Services View, refresh
    *  the service. Then drag service operations onto user interface components in Design View. For
    *  example, drag the getAllItems() operation onto a DataGrid.
    *  This code is for prototyping only.
    *  Authenticate the user prior to allowing them to call these methods. You can find more
    *  information at <link>
    class CoursesService {
         var $username = "myusername";
         var $password = "mypassword"
         var $server = "localhost";
         var $port = "3306";
         var $databasename = "frutiexp_trainsur";
         var $tablename = "courses";
         var $connection;
          * The constructor initializes the connection to database. Everytime a request is
          * received by Zend AMF, an instance of the service class is created and then the
          * requested method is invoked.
         public function __construct() {
                $this->connection = mysqli_connect(
                                              $this->server, 
                                              $this->username, 
                                              $this->password,
                                              $this->databasename,
                                              $this->port
    $fp = fopen("./tracking.txt", "a");
    fwrite($fp, "1-service".  $databasename . " " . $username . "\r\n");
    fclose($fp);
              $this->throwExceptionOnError($this->connection);
          * Returns all the rows from the table.
          * Add authroization or any logical checks for secure access to your data
          * @return array
         public function getAllCourses() {
              $stmt = mysqli_prepare($this->connection, "SELECT * FROM $this->tablename");         
              $this->throwExceptionOnError();
              mysqli_stmt_execute($stmt);
              $this->throwExceptionOnError();
              $rows = array();
              mysqli_stmt_bind_result($stmt, $row->cou_id, $row->cou_title, $row->cou_overview, $row->cou_objectives);
             while (mysqli_stmt_fetch($stmt)) {
               $rows[] = $row;
               $row = new stdClass();
               mysqli_stmt_bind_result($stmt, $row->cou_id, $row->cou_title, $row->cou_overview, $row->cou_objectives);
              mysqli_stmt_free_result($stmt);
             mysqli_close($this->connection);
             return $rows;
          * Returns the item corresponding to the value specified for the primary key.
          * Add authroization or any logical checks for secure access to your data
          * @return stdClass

    Hello Jdesko,
    Thank you for you prompt response. Yes, I have changed the connections variables in my dataservice ( I didn't post real values). You are right, after all I didn't make changes on the gateway.php except to add some tracking points. The one that I changed is the amf.config,ini. The application runs without any error exceptions, but don't populate the datagrid. According with the tracing is stoping just when establishing the connection to the database. Please let me know if you have any other clue. thanks

  • How do I manage my iCloud Data across my apple devices

    How do I manage my iCloud data across various devices....like my iPhone 5 and Macbook

    If you are using the same iCloud account on all your devices (as recommended), then you could manage your iCloud storage in "Settings > iCloud > Storage & Backup > Manage Storage" which would have effects accross devices.

  • SSRS pulls data from ESSBASE cube, data not showing

    Dear Experts,
    We are connecting SSRS 2012 to Essbase 11.1.3 to pull data from the cube, and having some issues with some members data not showing in the query designer and report, while some have no problem. And we couldn't find a pattern on which members won't show. We are wondering if this is a known issue and if there is a way to solve the problem.
    Thanks very much.
    Grace

    Hi ,
    Check the following:-
    1 Check whether you have made the joins properly.
    2 Check data at multiprovider level .
    3 is data available for reporting in both the cubes
    Regards
    Rahul

  • Pull data from a table in HTML format from external URL into a Servlet

    How do I pull data from existing website html table into a Servlet?
    I will need to pull the data into a servlet. So, the servelet will need to go to the URL and get the data and save them as variables.
    I know I will need an array to store the data. I just dont know how to call the URL and have the servelet search the site for the <table> </table>.
    I will later use this to save to a database.
    Thanks
    Edited by: DJMegabit on Apr 14, 2010 7:36 PM

    Maybe give us more details about what exactly You'd like to achieve. I guess that there might be better solutions to the problem.

Maybe you are looking for

  • PS Retraction from BPS

    Hi All, I am using the UPB_CI_PUSHBACK_PR function module to retract data to Project Systems. The goal is to move the PLAN data from BPS by WBS into PS transaction CJ40. I have followed the guidance of the well written 'BPS Retraction for Cost Cener

  • Converting a long document

    I have a 500 page book I want to convert to Word .docx.  Adobe says it's taking too long, so it stops.  What can I do?

  • PRocess Order Number Ranges

    Dear All, I have a Problem with process order Number ranges, please find the sequence below. 21000200 21000220 21000240 21000260 21000280 21000300 21000320 21000321 21000322 21000340 21000360 21000380 21000381 21000400 21000401 21000402 21000403 2100

  • Right audio port won't play. Warranty?

    My ipod's right audio exit won't play. I am sure that it is not the earbuds, because I have tried with several others. The iPod is bought in an Apple Retail store in Cleveland, but i am currently living in Sweden. Does the limited warranty cover this

  • Msi primo 73 16gb capacity turns 8gb only after firmware update

    can anyone help me to return the 16gb capacity of my msi primo 73, after updated my firmware when I checked it has only 8gb. I downloaded the firmware from msi site with this N71J_V1.3_4.2_0726_V2.zip, version 1.3, released: 2013-09-17, file sized: 3