Copying the file in Director Lingo

Hi!
I am opening a file using the openFile command in director
but what i need is to open the file as well as copy the same file
to a local drive.Can it be done in director and can i get code
snippet for the same.Is there any comand in director for cpying a
file from one location to other.If i only provide a path of the
file then i need to copy the file to desired location.
-Thanks

You could also use the downloadnetthing command to copy files
to and fro.
Though there's enough xtras as mentioned that have more file
handling
functionality than Lingo has.
Manno
ajeet.ghule wrote:
> Hi!
> I am opening a file using the openFile command in
director but what i need is
> to open the file as well as copy the same file to a
local drive.Can it be done
> in director and can i get code snippet for the same.Is
there any comand in
> director for cpying a file from one location to other.If
i only provide a path
> of the file then i need to copy the file to desired
location.
>
> -Thanks
>
Manno Bult
[email protected]

Similar Messages

  • How can I copy my Itunes-library from Iphone to my new Mac, as I forgot to copy the files from the old PC, and now it is to late. I only have music on my Iphone.

    How can I copy my Itunes-library from Iphone to my new Mac, as I forgot to copy the files from the old PC, and now it is to late. I only have music on my Iphone4. Thank you.
    gunnarfromhovik

    For iTunes purchases only..
    Connect the iPhone to your Mac, launch iTunes.
    If you haven't done this yet, go to the iTunes menu bar click Store / Authorize This Computer
    Now from the iTunes menu bar again, click File / Transfer Purchases From...

  • I had to transferr my music files from one computer to another by directly copying the files from the hard drive to a new drive.  Itunes recognized the files and I was able to load in new songs.  The new songs won't sync with ipod.  Ideas?

    To copy the files I had to remove the hard drive and direct copy them to an expansion drive on another machine.  ITunes recognized the copied files and operates correctly on the computer.  I was able to download additional songs to ITunes on the computer without problem.  The IPod however will not recognize the new songs, does an abreviated sync process and gives a message that the IPod cannot sync because files are being used by another application.  It is also does not want to accept the disconnect command.  Any suggestions on how to solve the sync problem?

    how did you save the songs? can you play the songs? have you restarted the computer?

  • I can't open my iphoto library on an external disk (78 gb ntfs); if i copy the files on the iMac the file is smaller and not usable. how can i recover my photo?

    hi all,
    i'm using the last version of iPhoto and i save my library on a western digital external USB drive; the drive is formatted in NTFS; i usually use tuxera to access and browse the files.
    Unfortunately, i don't know why, i access this drive in read only mode, so iPhoto doesn't accept the library any more; i tried to copy the library on the iMac but the copied file is really smaller (54 gb instead on the 78 on the drive), and iphoto doesn't accept it.
    i need to find a solution and to recover my library, i've no other copies?!
    tuxera doesn't open any other ntfs drive i think the problem is there, but i have to finf other solutions to recover my photos.
    thank you all for any suggestion.

    This problem is entirely due to this:
    the drive is formatted in NTFS
    iPhoto needs to have the Library sitting on disk formatted Mac OS Extended (Journaled). Users with the Library sitting on disks otherwise formatted regularly report issues including, but not limited to, importing, saving edits and sharing the photos.
    Do you get any error messages when you try and copy the file back to your Mac?
    Do you have a back up?

  • I just purchased Adobe Photoshop Elements 13 but my computer is not recognizing my CDRom and I cannot download the program. I tried copying the files on the program disc to my hard drive but get a message the installer will not work. I have the redemption

    I just purchased Adobe Photoshop Elements 13 but my PC is not recognizing my CDRom and I cannot download the program. I tried copying the files on the program disc to my hard drive but get a message the installer will not work. I have the redemption code and serial numbers. Can I download the program online somewhere? If I download a trial version for instance will it allow me to enter my serial number and use it for the full program?

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Problem in copying the file

    i had created a frame in which iam getting a source file and then copies the file to certain location...the problem is when i copy a large file it is doing well for the first time but when the second time while iam copying exception occurs like this
    Exception in thread "AWT-EventQueue-0" java.lang.OutOfMemoryError: Java heap space
    iam using the code
    public static void copy(File source, File dest) throws IOException {
         FileChannel in = null, out = null;
         try {         
              in = new FileInputStream(source).getChannel();
              out = new FileOutputStream(dest).getChannel();
              long size = in.size();
              MappedByteBuffer buf = in.map(FileChannel.MapMode.READ_ONLY, 0, size);
              out.write(buf);
         } finally {
              if (in != null)          in.close();
              if (out != null)     out.close();
        }how to solve this

    Do you simply want to copy the file. Try, not using many non-instrictive data types, because these use many extra variables and you end up using a lot more memory than you would have req.
    Eg-
    public void copy(File source,File dest) throws IOException{
         FileInputStream fins=new FileInputStream(source);
         byte[]b=new byte[(int)fins.length()];
         fins.read(b);
         fins.close();
         FileOutputStream fos=new FileOutputStream(dest);
         fos.write(b);
         fos.close();
    }This is code is not a solution, because here i am reading all file at once. This is basically to show you a method.
    In real situation you can set the size of byte[]b to 1024, and loop util read(b); method returns -1.

  • How i will run copy the file in oracle 7.3 ?

    how i will run copy the file in oracle 7.3.
    new version of oracle copy function is available in util_file but in oracle 7.3 this is not available.here i am using 7.3.
    please help
    Thanks
    Deepak S.

    The technique used to be to send messages from your procedure to a waiting shellscript listener using DBMS_PIPE. You would write a script (could be ksh, Perl, Ruby etc) on the server with a loop in which it connects to the database and waits for DBMS_PIPE messages. When it gets one, it executes the command that was contained in the message and loops around to continue waiting again.
    7.3 is really ancient though. If you're running it at all this far out of support it should really just be ticking over and not subject to new development.

  • Has anyone seen this before,? some import operations were not performed , could not copy the file to requested location

    some import operations were not performed , could not copy the file to requested location , has anyone seen this or have a fix?

    cormacc57361247 wrote:
    has anyone seen this or have a fix?
    Oh, I bet that if you'd done a site search, you'd have got answers to both of those questions...

  • Could not copy the file "C:\Microsoft.WITDataStore.dll" because it was not found.

    Hi All,
    I need to use "Microsoft.TeamFoundation.WorkItemTracking.Common, Version=11.0.0.0" dll in my code.
    But when I try to build my application I get the below error.
    "Could not copy the file "C:\Microsoft.WITDataStore.dll" because it was not found."
    And when I try to include version 12 of the same dll , code gets build successfully. And when I try to consume the code(which uses the dll) I get
    'Could not load file or assembly 'Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader,
    Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies.
    The system cannot find the file specified."
    how do I go ahead with this..??
    Thanks
    Uma.K

    Hi Uma,
    You might check whether the version 11 of the assembly is referenced or added into soruce control. When use the referenced files, please use the relative path for building. If the version 11 of the assembly is not added, please add it to source control and
    make sure it's referenced correctly.
    It would be better to let us know the TFS version that you're using. And you can also use version 12 if the assembly works fine. If you have any other concerns, elaborate your scenario with more details.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can we copy the file in to the importdp/exportdp location

    How can we copy the file in to the importdp/exportdp location after doing the import and export activity.?

    How can we copy the file in to the importdp/exportdp location after doing the import and export activity.?use Operating System command; like COPY or cp.

  • Photo library gone during copying the file...

    I bought a new Mac and wanted to import the library into my new computer. So I started to copy the file onto my external hard drive wth the idea to connect that drive to my new computer and use if from there to imported into my new iPhoto 11.
    However, the copying was going to take 256 hours accoring to my G5 because the file was 25 GB big, so I cannceled it to try something else. After canceling, the copied file showed a size of 500 mb and the original file was gone! I checked everywhere, but it seems that I lost my comlete iphoto library. This is rerrible, how can a file dissapear only because I canncels a copy, (not a cut and past).
    Does someone has suggestions?
    André

    How did you go about trying to copy the library from the G5 to the EHD? Did you just click and drag it to the EHD?
    Or did you use the Move method? That is hold down the Command+Shift key and drag the file from the G5 to the EHD. This method copies the file to the destination and delete it from the source when the copy is done. If you did use the move method and cancelled the "move" when you did it might have deleted the source file and left you with just the partial file on the EHD. The "move" feature was an issue a while back as I recall.

  • Microsoft.WebApplication.targets 182 5 error MSB3030 Could not copy the file because it was not found

    We use Visual Studio Online and the integrated continuous integration (build server) from Microsoft. We have a solution that contains multiple projects two of which are latest MVC projects. I updated a bunch of our Nuget packages yesterday and now we are
    getting a build error one of our MVC projects. Any help is greatly appreciated as I have exhausted my resources trying to understand why the error is occurring!
    We use nuget for our external libraries, the solution and projects and set to use Nuget Restore (no packages persisted in TFS).
    We updated Angular to the latest version using Nuget updates inside of visual studio. Here an excerpt from packages.config in the project file. The first block is what was found in the packages.config before the update and the second block is after the
    update.
    <package id="Angular.UI.Bootstrap" version="0.11.0" targetFramework="net451" />
    <package id="angularjs" version="1.2.23" targetFramework="net451" />
    <package id="Angular.UI.Bootstrap" version="0.12.0" targetFramework="net451" />
    <package id="angularjs" version="1.3.8" targetFramework="net451" />
    After I noticed the build error I scheduled another build with Diagnostic level logging turned on, here is the excerpt from the build highlighting the errors
    Task "Copy" (TaskId:395)
    16:42:43.027 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-animate.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.031 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-animate.min.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    Creating directory "C:\a\bin\_PublishedWebsites\Sparco.Cms.Web\Scripts". (TaskId:395)
    Copying file from "Scripts\angular-aria.js" to "C:\a\bin\_PublishedWebsites\Sparco.Cms.Web\Scripts\angular-aria.js". (TaskId:395)
    Copying file from "Scripts\angular-aria.min.js" to "C:\a\bin\_PublishedWebsites\Sparco.Cms.Web\Scripts\angular-aria.min.js". (TaskId:395)
    16:42:43.033 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-cookies.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.033 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-cookies.min.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.034 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-csp.css" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.034 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-loader.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.034 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-loader.min.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    Copying file from "Scripts\angular-messages.js" to "C:\a\bin\_PublishedWebsites\Sparco.Cms.Web\Scripts\angular-messages.js". (TaskId:395)
    Copying file from "Scripts\angular-messages.min.js" to "C:\a\bin\_PublishedWebsites\Sparco.Cms.Web\Scripts\angular-messages.min.js". (TaskId:395)
    16:42:43.036 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-mocks.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.036 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-resource.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.036 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-resource.min.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.036 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-route.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.036 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-route.min.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.036 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-sanitize.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.036 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-sanitize.min.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.036 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-scenario.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.036 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-touch.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.037 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular-touch.min.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.037 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    16:42:43.037 3>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets(182,5): error MSB3030: Could not copy the file "Scripts\angular.min.js" because it was not found. [C:\a\src\Sparco.Cms.Web\Sparco.Cms.Web.csproj]
    Copying file from "Scripts\bootstrap-select.js" to "C:\a\bin\_PublishedWebsites\Sparco.Cms.Web\Scripts\bootstrap-select.js". (TaskId:395)
    Copying file from "Scripts\bootstrap-select.min.js" to "C:\a\bin\_PublishedWebsites\Sparco.Cms.Web\Scripts\bootstrap-select.min.js". (TaskId:395)
    Copying file from "Scripts\bootstrap-select.js.map" to "C:\a\bin\_PublishedWebsites\Sparco.Cms.Web\Scripts\bootstrap-select.js.map". (TaskId:395)
    I looked at the change log of my check-in and noticed that the errors occur for Angular script references that were updated. New angular references (adds in the TFS changeset) are being copied without errors. Example: angular-animate.js was edited
    in the Angular update in TFS but angular-aria.js is a new file in the package so new file in TFS. 
    Using Source Control Explorer I verified the location of the files, the new and the existing files from the Angular nuget package can all be found in the Scripts folder of the MVC project. I can also view the content of each file file without issue.
    The references in the project file (csproj) are all consistent too, I can't see any differences between the files that cause failure and those that do not. The following block is a direct copy/paste from the csproj file
    <Content Include="Scripts\angular-animate.js" />
    <Content Include="Scripts\angular-animate.min.js" />
    <Content Include="Scripts\angular-aria.js" />
    <Content Include="Scripts\angular-aria.min.js" />
    <Content Include="Scripts\angular-cookies.js" />
    <Content Include="Scripts\angular-cookies.min.js" />
    <Content Include="Scripts\angular-csp.css" />
    <Content Include="Scripts\angular-loader.js" />
    <Content Include="Scripts\angular-loader.min.js" />
    <Content Include="Scripts\angular-messages.js" />
    <Content Include="Scripts\angular-messages.min.js" />
    <Content Include="Scripts\angular-mocks.js" />
    <Content Include="Scripts\angular-resource.js" />
    <Content Include="Scripts\angular-resource.min.js" />
    <Content Include="Scripts\angular-route.js" />
    <Content Include="Scripts\angular-route.min.js" />
    <Content Include="Scripts\angular-sanitize.js" />
    <Content Include="Scripts\angular-sanitize.min.js" />
    <Content Include="Scripts\angular-scenario.js" />
    <Content Include="Scripts\angular-touch.js" />
    <Content Include="Scripts\angular-touch.min.js" />
    Is there anything I forgot to mention that would help me figure out what is going on?
    What else can I try with the exception of rolling back the changeset and re-adding the nuget package?
    Thank you very much in advance!
    -Igor
    -Igor

    Hi Igor,
    For your situation, make sure you checked in your source files after updating Angular. You can also check the whether the foders for the Angular reference are under source control in source settings tab of your build definition.
    You can also build locally using MSBuild to see if the building works fine. We have to make sure local build succeed before VSO build since TFS build use MSBuild as its default compiler. Check the links below to see if they are helpful:
    https://social.msdn.microsoft.com/Forums/en-US/f43ceb9e-f253-46e3-a496-05f8cd77f634/msb3030-could-not-copy-the-file-because-it-was-not-found-error?forum=winappswithcsharp
    https://social.msdn.microsoft.com/Forums/en-US/01a29ce7-da2a-40af-9dce-3db1f8998cc2/could-not-copy-the-file-consoleappnameexemanifest-because-it-was-not-found?forum=TFService
    Best regards, 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Restoring my mac book pro after copying the files off via target disk

    Hi guys any help would be great.
    I had a problem with my hard drive in my early MBP, after seeing an apple genius, who said it was mostly likely a software issue and wiping the disk and reinstalling everything shoudl fix it.
    So as i didnt have an up to date time machine back up, i used the target disk utility to copy the files from the drive over onto another mac (actualy on a networked harddrive)
    no i have completed a wipe, and reinstalled the operating system (snow leapeard as thats the last disc i had - MBP was on Lion prior to the issues)
    now i want to restore all my files from before.
    what is the best way to do this?
    can i just drag and drop each file from the networked hard drive back into the coresponding ones on my MBP?
    thanks

    Only your users files inside music, pictures, movies documents etc folders.
    Nothing in Library, nor Applcations, you do that you hose the account and the apps won't work anyway, at least most of them.
    or i will have to reinstall the aplications but i tunes and so on will be able to find the files?
    yes and reinport music into iTunes so it goes into the new itunes library file, ditto with iPhoto Library (old) righ click and "show package contents" and import the Originals folder contents into new iPhoto library.
    support files have paths in their files that go to the path on the origanl system, you changed that so the paths are off, so you import the original files again.

  • I have bought a photoshop elements and have installed it on my MacBookPro. I have just bought an iMac and what to install on this computer as well. The iMac does not have a disc drive. I have copied the file onto a remote hard drive and tried to install b

    I have bought a photoshop elements and have installed it on my MacBookPro. I have just bought an iMac and what to install on this computer as well. The iMac does not have a disc drive. I have copied the file onto a remote hard drive and tried to install but it thinks I have a pirate copy. What can I do?

    If you click the link in my first post in this thread, then click "still need help? Contact us" it takes you to a page that looks exactly like the page where you started, but isn't. Select PSE for the program you want help with, click "Activation and Signing In" for the problem area and you will see this:
    The gray area below the blue bar is a link to start a chat.

  • Error Message "Setup cannot copy the file gp.ocx".

    When I try to download Reader X to new Dell laptop running Windows 7 Pro, I get the error message as follows.
    Setup cannot copy the file gp.ocx.  Ensure that the locations specified below is correct, or change it and insert (Unknown) in the drive you specify.
    c:\Users\Bill\AppData\Local\Temp\1DC2.tmp
    Can anyone help me with how to proceed? Thanks.

    Bummer!  I read something about getting this error due to insufficient permissions, but I attempted to install as local admin and didn't work either.  So I just uninstalled Adobe reader from the servers I was having this issue with, at least until a solution is available (?).  I'm not happy, it is not convenient if I have to use another machine to view PDFs, but I'd rather be inconvenienced than have unpatched servers.  Thanks for responding...let's hope Adobe responds...

Maybe you are looking for

  • Solution ID 201056033 implemented but changes to signin.html still not seen

    Customer have implemented solution id 201056033 in WebLogic 9.2 MP3 patch 2 with PT 8.49.12. However, when they change signin.html for a web site the change is not seen. Browser cache has been purged. Yes, the web server were brought down and back up

  • Port replicator​, docking station 2504

    I need to ask dumb and dumber questions. First the dumb question.  I have a T61 that I upgraded to Windows 7.  I used the automatic driver utility and everything works fine, both docked in a 2504 or undocked.  I would like a more detailed user manual

  • JWSC ant task  getting java.lang.NoSuchMethodError

    Hi all, I am trying to build a webservice with JWSC ant task in JDK 1.6 which uses JWS annotations and a few weblogic specific annotations. I am getting the following error while building it. However, when I build it from my IDE (eclipse) it works fi

  • MSN on Macbook?

    Hi, I am going to purchase the Macbook later on today, but i was wandering; Can you use MSN Messenger on it? If no, what alternatives are there? If yes, can you use your iSight as a webcam to talk to others? Many thanks, points available.

  • App launch date different from apperance date - help !

    Hello I have just searched and trawled through the forum and am unable to find a post regarding the launch date of an app being different from its actual appearance on the store. My app launched yesterday 20th August but the date showing is the 14th