Importing "Run and Build Application"

I've been trying to duplicate my Oracle workspace applications on my local machine. It worked fine for one of my apps, but the second one failed. I exported the file several times in DOS format with Unicode UTF-8, Build Status Override "Run and Build Application", and other fields blank. I imported successfully on my machine, and got to the "Application Install" screen. But the routine then failed with the message:
ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 6, column 7: PLS-00103: Encountered the symbol "¿¿¿¿¿¿¿¿4¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿" when expecting one of the following: ( - + case mod new null avg count current max min prior sql stddev sum variance execute forall merge time timestamp interval date 1.4.4.00.33
When I tried to importing the same file back to the Oracle workspace (to create a backup copy so I could further develop without risk) it also failed at the same point with this message:
ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 6, column 7: PLS-00103: Encountered the symbol "䑚⁃敌癡㩥匠汥捥⁴湡攠灭潬敹⁥湡⁤汣捩䈢梠when expecting one of the following: ( - + case mod new null avg count current max min prior sql stddev sum variance execute forall merge time timestamp interval date 1.4.4.00.33
Any ideas?
Thanks.
Bill

Sergio
Here is the output from the NLS query:
PARAMETER VALUE
NLS_LANGUAGE AMERICAN
NLS_TERRITORY AMERICA
NLS_CURRENCY $
NLS_ISO_CURRENCY AMERICA
NLS_NUMERIC_CHARACTERS .,
NLS_CHARACTERSET WE8MSWIN1252
NLS_CALENDAR GREGORIAN
NLS_DATE_FORMAT DD-MON-RR
NLS_DATE_LANGUAGE AMERICAN
NLS_SORT BINARY
NLS_TIME_FORMAT HH.MI.SSXFF AM
NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
NLS_DUAL_CURRENCY $
NLS_COMP BINARY
NLS_LENGTH_SEMANTICS BYTE
NLS_NCHAR_CONV_EXCP FALSE
NLS_NCHAR_CHARACTERSET AL16UTF16
NLS_RDBMS_VERSION 9.2.0.4.0
Here is the output from the procedure in the other thread:
nls_language = {AMERICAN}
nls_territory = {AMERICA}
nls_characterset = {WE8MSWIN1252}
add this line to your DAD config:
PlsqlNLSLanguage AMERICAN_AMERICA.WE8MSWIN1252
How (or where) do I add this line to my DAD?
Bill

Similar Messages

  • Apex :run and build application

    HI ,
    While exporting apex application from test to prod i gave build status override as run and build application instead of run application only.and then i imported
    i this case according to my knowledge user can run as well as can make changes ....
    is it possible to revert it to run only ....
    if yes how ...
    thanks in advance....

    Yes, from the main screen after logging into workspace, look for "*Manage Services*" link. Under Manage Services, find Manage Application Build Status. There, you can convert application between Run and Build Application to Run Application only and vice versa.
    Ittichai

  • HOW TO DO! Important!! Build application Licence protec tion ???

    HI There
    I wanted to to build a Application DLL or EXE from my Labview program  and give it or  sell it to another person .
    but I have no Idea how should I protect it  to work just in one PC or in a Priod of time ?
    in Visual C it is possible to make an Inastaller file including the licenc and Trial and so on by some software but how in Labview could do some protection ?
    becuase I have checked :  if any body just with copy and paste of EXE file could run it in another PC which have installed Labview RUN Engine  .
    this Program is cost me a licence of Labview and near to 1 year hard effort  , and the pepole that will use it are not reliable   :smiley  sad: ,
    what shuold I do to prevent to use and run my EXE codes in another PC or more than a priod of time (2 yaers )
    please tell me your Idea I will appreciate them .
    Thanks
    Babak

    There's been a lot of discussions in this forum on protecting exe's from piracy. The latest was http://forums.ni.com/ni/board/message?board.id=170&message.id=143627&query.id=0#M143627. Possibilities include hard disk ID, MAC address, and dongles. I'm sure if you did a search, you could find other threads on the same subject.

  • Runas and Adobe Application Air 2.x?

    Hello dear people,
    I have been found this trick of RUNASADMIN or EVELATEDPROCESS this url:  http://www.sevenforums.com/tutorials/316-compatibility-mode.html
    Look Step: "OPTION THREE" and Manually in Registry Editor
    I think sure becasue we are suing with Adobe Application AIr 2.x via Administrative rights for Windows Vista and 7....
    Like this Code: But i am not finish this code. I am not sure when you are sure for xml and regkey files?
         Runas to Application Air
         Support for Windows Vista and Windows 7
    package
         import flash.desktop.NativeProcessStartupInfo;
         import flash.filesystem.File;
         import flash.filesystem.FileStream;
         public class StartRunAs
              public var RunasXML:File = new File(var xml:XML = <runas>runasCall()</runas>);
              public var smDir_Runas:File = File.applicationStorageDirectory;
              public var runas_reg_key:File = File.applicationStorageDirectory.resolvePath("runas.reg");
              public function StartRunAs():void
                   // Copy from ApplicationDirectory
                   if(RunasXML.exists)
                        xml.contains("runasCall()");
                        function runasCall():void
                             if(runas_reg_key.exists)
                                  function runas_Addreg():void
                                       // Start regedit with runas.reg
                                       var regeditApp:NativeProcessStartupInfo = new NativeProcessStartupInfo("C:\\Windows\\regedit.exe");
                                       regeditApp.arguments = runas_reg_key;
                                       // Delete startfiles - if you are assigned by UAC readly.
                                       RunasXML.deleteFile();
                                       runas_reg_key.deleteFile();
                             }else
                                  // Write reg file:
                                  var runas_reg_key_Stream:FileStream = new FileStream();
                                  runas_reg_key_Stream.open(runas_reg_key);
                                  runas_reg_key_Stream.writeBoolean(
                                       "Windows Registry Editor Version 5.00" +
                                       "" +
                                       '"' + File.applicationDirectory() + 'myapp.exe"' + '="RUNASADMIN"'
                                  runas_reg_key_Stream.close();
                                  // Execute to regedit add reg file
                                  runas_Addreg();
                   }else
                        SkipInit();
              protected function SkipInit():void
                   // Now Your application with adminstrative rights
    If your runas.reg should see a result: Like this:
    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers]
    "C:\\Program Files (x86)\\MyApp Air\\Myapp.exe"="RUNASADMIN"
    Than Adobe Application Air calls NativeProcessStartInfo with "Regedit.exe runas.reg" and it will to change in administrative mode with Application Air 2.x.
    Than you can close Application Air and you click Shutcut from Desktop. What does it happen? Now Application Air starts with administrative privatages and you prompt "Yes" and Application Air loads and can rewrite in the directory C:\Program Files x(86)\MyApp\
    Did you think sure? That is a nice trick once UAC with read/write mode of Application Air for example:
    Plugins and templates will to copy in ApplicationDirectory Example: C:\Program Files x(86)\\MyApp\plugins or C:\Program Files x(86)\\MyApp\templates
    That is a good suggestion of my access rewriting! Do not worry , dear Windows Users!!!!
    I have been tired nice FileStream with process
    I hope you because you can improve or add suggestions We can work together
    Thanks best regards, SnakeMedia
    That is an example for assignned regkey once Adobe Application Air to adminstrative Application Air like any programs CCleaner or TuneUp Utilities 2011...

    Hello peoples,
    i have been fixed this problem.
    But it show crazy because Adobe Air write worng word : [object file]. I can not try this problem
    I have been writen our code like this.
    AirAdmin.mxml: for Flex 3.5 with Air SDK 2.x
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="init(event)">
         <mx:Script>
              <![CDATA[
                   import mx.events.FlexEvent;
                   protected function init(event:FlexEvent):void
                        // Center main AIR app window on the screen
                        nativeWindow.x = (Capabilities.screenResolutionX - nativeWindow.width) / 2;
                        nativeWindow.y = (Capabilities.screenResolutionY - nativeWindow.height) / 2;
                        // Load regFile and cmdFile
                        getRegFile();
                   private var airAdminFile:String = File.applicationDirectory + "AirAdmin.exe";
                   private var regeditFile:File = new File("C:\\Windows\\regedit.exe");
                   private var regFile:File = new File;
                   private var cmdFile:File = new File;
                   private var cmdAppFile:File = new File("C:\\Windows\\System32\\cmd.exe");
                   protected function getRegFile():void
                        // regfile
                        regFile = File.documentsDirectory.resolvePath("AirAdmin.reg");
                        var regFileStream:FileStream = new FileStream;
                        var regFileStructur:String = 'Windows Registry Editor Version 5.00';
                        regFileStructur += File.lineEnding;
                        regFileStructur += '[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags\\Layers]' + File.lineEnding;
                        regFileStructur += '"' + airAdminFile + '"="RUNASADMIN"' + File.lineEnding;
                        cmdFile = File.documentsDirectory.resolvePath("AirAdmin.cmd");
                        var cmdFileStream:FileStream = new FileStream;
                        var cmdFileContent:String = regeditFile + '"' +regFile + '"' + File.lineEnding;
                        if(regFile.exists, cmdFile.exists)
                             regFileStream.open(regFile, FileMode.READ);
                             regFileStructur = String(regFileStream.readUTFBytes(regFileStream.bytesAvailable));
                             regFileStream.close();
                             cmdFileStream.open(cmdFile, FileMode.READ);
                             cmdFileContent = String(cmdFileStream.readUTFBytes(cmdFileStream.bytesAvailable));
                             cmdFileStream.close();
                             openShell();
                        else
                             regFileStream.open(regFile, FileMode.WRITE);
                             regFileStream.writeUTFBytes(regFileStructur);
                             regFileStream.close();
                             cmdFileStream.open(cmdFile, FileMode.WRITE);
                             cmdFileStream.writeUTFBytes(cmdFileContent);
                             cmdFileStream.close();
                   // NativeProcess
                   private var StartProcess:NativeProcess = new NativeProcess;
                   private var args:Vector.<String> = new Vector.<String>;
                   protected function openShell():void
                        var StartUpInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo;
                        StartUpInfo.executable = cmdAppFile;
                        args.push("start");
                        args.push("/C");
                        args.push(cmdFile);
                        StartUpInfo.arguments = args;
                        if(StartProcess.running)
                             // Your mode is as administrative right
                             StartProcess.start(StartUpInfo);
                        else
                             // It is not an administrative right mode!
                             StartProcess.start(StartUpInfo);
              ]]>
         </mx:Script>
         <mx:Label id="mylab" horizontalCenter="0" verticalCenter="0"/>
    </mx:WindowedApplication>
    Nothing has errors. Work fine...
    But 2 outputs for AirAdmin.reg and AirAdmin.cmd have worng words [object file].
    It has problem of writing with current directory. How do i fix path to text
    For Example:
    var AppFile:File = File.applicationDirectory.resolvedPath("App.exe")
    and i put in writing mode for regedit...
    Output should to show this:
    C:\\Program Fils (x86)\\App\\App.exe <- current result like sometime writing function to text mode
    But i have problem of writing mode - if i put in path and directory to text mode.
    Worng words:
    [object file]App.exe <- What is it crazy?
    2 worng words in 2 files ( reg and cmd )
    AirAdmin.reg:
    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers]
    "[object File]AirAdmin.exe"="RUNASADMIN"
    and AirAdmin.cmd:
    @echo off@echo[object File]"[object File]"
    I do not understand because Air 2.6 has problem of writing path to text mode..
    Like this for example:
    File.applicationDirectory.resolvedPath("MyExampleApp.exe") to "C:\\Program Files (x86)\\MyExampleApp\\MyExampleApp.exe"
    A result will to show current path to executable in the reg file:
    "C:\\Program Files (x86)\\MyExampleApp\\MyExampleApp.exe"="RUNASADMIN"
    Thanks for advanced problem . I want to assign Application Air into Administrative Application Air
    I hope you because you think sure because i want to try Application Air to Administrative Mode
    Thanks for reply

  • Revert Build Status to Run and Build

    In what table in the XE database is the status stored? I accidently set it to Run Only and do not have the time nor patience to export and import.
    I'd even accept what table & column it is stored in at this point.
    Thanx for any help

    Hi John,
    There is a tread how to do that.
    Moreover, Dietmar for Germany has a very good explenation.
    Just search for Dietmar.
    Konstantin
    You still can export the application!!!

  • How to give permission to user to run and install application like data card or modem

    Hi,
    when a standard user try to use an Data card (airtel 3G Dongle), windows 7 prompts for a administrator password to run the application.
    I have to go and type admin password each time when that person uses the dongle. Is there any way that  i can give permission for that user account only to run that application without admin password.
    I don't want to add him to administrator group and then it will be a mess.
    please help me out here............
    Thanks in Advance.

    I would check to see if there is software that can be downloaded to the PC from the manufacturer. I am assuming your device is a "plug and play" device. The manufacturer might still have the device drivers for install on their website.
    Installing the drivers manually should alleviate the problem
    Otherwise, you can make the changes in Group Policy to solve the problem
    See this link: http://technet.microsoft.com/en-us/library/cc725772.aspx

  • My "Adobe installer" is not running  and "adobe application manager" will not update....

    My question?
    When did making art get so technical? Also, have the software engineers at Adobe finally  begun to shed the Cheetos from their beards and then crown themselves as artists extraordinaire? Well good for them! Bad for me! No offense, but I've  been wrestling with this for quite a while. Without a single Cheeto.....
    Could somebody at least tell me that this problem is mostly imaginary? I can relate to that actually, one time in Santa Cruz...
    Bridge crashes frequently, especially during a drag and drop action. Photoshop crashes less frequently, but when even a mere moment's worth of my eternal genius has been shed, all life weeps, including you...unknowingly...
    I was then instructed by the Adobe to perform a strange ritual using an ancient language called the "DOS" and to inquire for the Adobe of the little known " fsutil file setshortname" routine. Then the Adobe would know my true name, and where my short paths were (?).I tried very hard to comply with the demands of the Adobelites who lounged in the Cloud but fled to this place for counsel./
    This is all true. My mother said so.
    Thanks, and with much too much time on his hands,
    Erich
    Operating System: Windows Vista 64-bit
    Version: 6.0 Service Pack 1
    Adobe Photoshop Version: 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch]) x64
    Architecture: AMD CPU Family:15, Model:10, Stepping:0 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 6
    Processor speed: 2593 MHz
    Built-in memory: 8191 MB
    Free memory: 1109 MB
    Memory available to Photoshop: 7173 MB
    Memory used by Photoshop: 70 %
    Image tile size: 132K
    Image cache levels: 4
    Video Card: AMD Radeon HD 5450

    By "not running", what exactly do you mean?
    You can't open it from "Programs"? You can't open it when double clicking a pdf file? You can't open a link to a pdf on a web page? Do you get any error messages?
    More details please.

  • SDM password when running and deploying webdynpro application

    Hi
    I developed a simple webdynpro application, no eventing just displays text. I rebuild it and then 'run and deploy' application. While doing this it pops up with a dialog box asking for a SDM password.
    Is this deploying correctly?
    Any assistance is much appreciated

    Hi Dajee,
    Yes it is deploying correctly. Give sdm as password it sould work if you don't have changed the default password of SDM.
    Regards,
    Bhavik
    Consider Reward points also.

  • How to run the VC application which is deployed

    Hi  All,
    I am new to the VC. I created one model, and i have added some data service and view. and i compiled and deployed. I am not able to find , how to run that deployed application.
    Can any body tell me how to run the deployed VC application.
    Regards
    Vijay

    Hi Vijay,
    go after you have deployed to Deploy on the right side of the VC. There you have to see "see source code" and "Run name of your application". Put your mouse at run and the application will start.
    Another way ist to put the Button "Deploy Model " (it is the picture with the running man) in the 2second menu line. If you do this, the modell will start automatically, if it has no errors.
    Regards
    Thomas

  • I have lost track of the number of websites that do not work properly on the iPad without Adobe Flash player which is unsupported. I cannot use retail sites, billing sites and most important of all job application sites. All are missing tabs, links, info

    I have lost track of the number of websites which do not work properly on my iPad. They include retail sites, billing sites and most important of all job application sites. They all seem to require Adobe Flash Player which cannot be downloaded onto an iPad. Skyfire does not solve the problem. They all load without vital parts of the site such as tabs, links and correct formatting. Any suggestions?

    Most such brower/service combinations have a difficult time working with Flash-based apps and often fail completely. Flash videos are usually the most successful content these browers can handle. You can try the others apps - Puffin, iSwifter, etc - but you may find that none of them work, in which case you will not be able to use your iPad with these sites other than by using one of the various remote control solutions to take over a computer running the full Flash Player.
    IMHO, any developer that built a Flash application for a billing or job application site was an idiot, but I know that's out of the control of anyone but the relevant company.
    Regards.

  • Mac OS X v10.8.2 Mountain Lion - constant chatter on my iMac hard drive on start-up and no applications running.

    When I log in, there is constant loud chatter on my iMac hard drive, before I open any applications, and Time Machine is not doing a backup. It continues sometimes for 10 to 15 minutes. What is running and why is it making so much noise?

    This procedure is a diagnostic test. It will make no changes to your system, and therefore will not, in itself, solve your problem.
    If you have more than one user account, you must be logged in as an administrator to carry out these instructions.
    Triple-click anywhere in the line below to select it:
    sudo iosnoop | sed '50q'
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the page that opens.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    Text will begin to scroll in the Terminal window. When it stops, copy the text output — not a screenshot — from the Terminal window into a reply to this message. Please don't post more than requested.
    If any personal information, such as your name, appears in the output, edit before posting, but don’t remove the context.
    You can then quit Terminal.
    Important: There seems to be an obscure bug in OS X that sometimes causes input devices to lag or stutter after running iosnoop. If you notice this behavior, simply reboot to clear it.

  • Build java and javafx applications

    Hello everybody! Currently, I am building a netbeans project that consist of java and javax applications and the questions are :
    1. How to call java object in javafx object or it reverse. Which one the better?
    2. How to compile and run the project that consist of java and javafx applications.
    Help me, please!Thank's

    Also, If you want to call JavaFX methods from Java you can use interface and have the JavaFX class extend it (interfaces are extended in JavaFX)
    For example, make interface FXAdapter.java
    interface FXAdapter {
         public void modifyLayout();
    }And in your FX class
    public class FXClass extends FXAdapter {
         public override function modifyLayout() : Void { /*Implementation*/ }
    }Now in your java class you can ask for FXAdapter as a parameter and pass a FXClass object

  • IOS/AIR Running and Debugging Issues with Flash Builder

    I'm having very frustrating intermittent issues running and debugging Flex applications on an iPad 3rd generation retina with Flash Builder 4.7.
    Until this morning, launching on device using both standard and fast packaging worked pretty well. Every now and again, I'd get a dialog saying the packaging had completed successfully, but it hadn't. A quick change of the USB cable to another port on my iMac and it started working again. I'd also randomly get a "Error occurred while installing the application: Invalid <device> specified" error, which quickly went away.
    This morning, with the same code base, the same certificate and provisioning profiles, Flash Builder has only managed to successfully package and run my application on my iPad twice and I must have attempted to launch fifty or so times. Standard packaging, fast packaging and with and without the useLegacyAOT.
    Does this sound like a Flash Builder issue? Is my iMac USB driver dodgy? Has anybody else experienced this?
    Any help greatly welcomed!
    Thanks,
    Simon

    Hi I have had this problem sometimes. With my Mac Book Pro.
    Try making a new flex application and see if you have the same result.
    When I had this problem I created a new Application and copied every thing from my other application.
    This my be a hard solution but I don't no any others.

  • Flex Builder, debugger and web application: how?

    Hello,
    I'm traying to setup a project in eclipse with both a java
    web application (servlets, jsp) and flex applications as a
    frontend. So I installed flex builder as a plugin on an eclipse+web
    standard tools, then created a WST web application project, and
    used the "Add flex nature.." of the flex plugin. I don't want to
    use the flex data services.
    Now, in a standard run (I installed a tomcat 5.5 and
    configured it in eclipse), my mxlm files are being correctly
    compiled into swf, and they are successfully calling my servlets
    (which simulates a backend xml-based interface).
    I'm having problems in debug: if I launch the debug profile
    related to tomcat, the normal version of the sfw will be used (even
    manually switching to the "-debug" version, it says that a running
    flex debugger has not be found on localhost). On the other way, if
    I launch the debug as a "flex application", it seems to work (it
    stops at breakpoints) but my tomcat is not started at all, the swf
    is accessed as a local file and all call to my servlet will fail..
    so it will stop working almost immediately.
    There is a way to setup eclipse to start standard java
    debugging with tomcat *and* the flex debugger?
    Thanks
    Cosma

    I found a workaround of sorts for the problem: don't
    terminate the applications!
    Previously, I would terminate the application using either
    the Terminate button in the Debug view or by closing the tab in the
    browser (Firefox). Now I just let them pile up in the browser and I
    rarely see this problem.
    In other words, I was having lots of trouble when doing
    Launch-Terminate-Launch-Terminate... but now I just
    Launch-Launch-Launch... and clean up once in a while.

  • Run and Exit button on application

    Hello,friends! I have some problem and I'll be thanked for any help! I want to create application from my VI with application builder. I want to take away all standard toolbars and buttons when application will be using. So,to do it I must to create Run and Exit buttons in application. But i do not know how to do it :-( It will be cool, if anyone will divide by example of VI, which will contain function for this buttons! Thanks!
    Solved!
    Go to Solution.

    here is a vi attached..just an example 9hittimg stop button will quit Labview)
    If you do not want to see the menu bar or the scroll bar then CTRL+I->VI properties->Window appearence->customize and select from the option to customize accordingly.
    Also if you want to stop and quit the application use the "Quit LabVIEW" function available
    Regards
    Guru (CLA)
    Attachments:
    RunStop.vi ‏12 KB

Maybe you are looking for

  • Surface 1 Pro on 8.1 with Miracast doesn't work on Domain

    I've seen other threads about this but no clear solution.    I have a bunch of Surface Pro's running 8.1. Miracast did work before joining them to the domain.  However, there is no option to add a wireless display now that they're on the domain.   I'

  • Is there any report which I can see the clearing items seperately

    Dear Experts, Is there any standard report which I can see manual clearing postings with chargoff amount. Normally this is posting with document type-AB. There are other documents with AB as reversal documents, settlements and other expenses. So we c

  • HT4589 Problems with FX Factory after updating

    I just updated to FCPX 10.0.6, but as soon as I did it I started having some problems with third party plugins, such as Luca's Visual Effects by FX Factory. This both on my MAcBook Retina 15" and my MacPro Early 2008.  After rendering, strange things

  • Best way to back up material on DVD

    Hi, I have to clean my hard drives, so I want to burn material on DVDs. But one file of material can be over 10GB so what would be the best and easiest way to split these 8-12GB large QuickTime Movie files in order to be able to burn them on a DVD? T

  • Spamming mail

    this morning i woke up with Mail full of messages from different people but with same object and content. i cant access mail from iphone. What shall ii do ? how do i stop this ? thank