Problem transferring video using RMI

Hi frnds...I have a code which transfers images using rmi.....this code works fine.....but if i give a .avi file instead of a .jpeg the file gets transferred to the other machine but it gets corrupt...the size is also the same.....do i have to encode the video ??
please help me solve the problem..
thanks..
Nik

here is the code....
import java.io.*;
import javax.media.*;
import javax.media.control.*;
import javax.media.datasink.*;
import javax.media.format.*;
import javax.media.protocol.*;
import java.rmi.*;
import java.sql.*;
public class TestQuickCamPro
     private static boolean                    debugDeviceList = false;
     private static String                    defaultVideoDeviceName = "vfw:Microsoft WDM Image Capture (Win32):0";
     private static String                    defaultAudioDeviceName = "DirectSoundCapture";
     private static String                    defaultVideoFormatString = " ";
     private static String                    defaultAudioFormatString = "linear, 16000.0 hz, 8-bit, mono, unsigned";
     private static CaptureDeviceInfo     captureVideoDevice = null;
     private static CaptureDeviceInfo     captureAudioDevice = null;
     private static VideoFormat               captureVideoFormat = null;
     private static AudioFormat               captureAudioFormat = null;
     public static void main(String args[])
             debugDeviceList = false;
              new TestQuickCamPro();
public TestQuickCamPro(){
          Stdout.log("get list of all media devices ...");
          java.util.Vector deviceListVector = CaptureDeviceManager.getDeviceList(null);
          if (deviceListVector == null)
               Stdout.log("... error: media device list vector is null, program aborted");
               System.exit(0);
          if (deviceListVector.size() == 0)
               Stdout.log("... error: media device list vector size is 0, program aborted");
               System.exit(0);
          for (int x = 0; x < deviceListVector.size(); x++)
               // display device name
               CaptureDeviceInfo deviceInfo = (CaptureDeviceInfo) deviceListVector.elementAt(x);
               String deviceInfoText = deviceInfo.getName();
               if (debugDeviceList)
                    Stdout.log("device " + x + ": " + deviceInfoText);
               // display device formats
               Format deviceFormat[] = deviceInfo.getFormats();
               for (int y = 0; y < deviceFormat.length; y++)
                    // serach for default video device
                    if (captureVideoDevice == null)
                         if (deviceFormat[y] instanceof VideoFormat)
                         if (deviceInfo.getName().indexOf(defaultVideoDeviceName) >= 0)
                         captureVideoDevice = deviceInfo;
                         Stdout.log(">>> capture video device = " + deviceInfo.getName());
                    // search for default video format
                    if (captureVideoDevice == deviceInfo)
                         if (captureVideoFormat == null)
                         if (DeviceInfo.formatToString(deviceFormat[y]).indexOf(defaultVideoFormatString) >= 0)
                         captureVideoFormat = (VideoFormat) deviceFormat[y];
                         Stdout.log(">>> capture video format = " + DeviceInfo.formatToString(deviceFormat[y]));
                    // serach for default audio device
                    if (captureAudioDevice == null)
                         if (deviceFormat[y] instanceof AudioFormat)
                         if (deviceInfo.getName().indexOf(defaultAudioDeviceName) >= 0)
                         captureAudioDevice = deviceInfo;
                         Stdout.log(">>> capture audio device = " + deviceInfo.getName());
                    // search for default audio format
                    if (captureAudioDevice == deviceInfo)
                         if (captureAudioFormat == null)
                         if (DeviceInfo.formatToString(deviceFormat[y]).indexOf(defaultAudioFormatString) >= 0)
                         captureAudioFormat = (AudioFormat) deviceFormat[y];
                         Stdout.log(">>> capture audio format = " + DeviceInfo.formatToString(deviceFormat[y]));
                    if (debugDeviceList)
                         Stdout.log(" - format: " +  DeviceInfo.formatToString(deviceFormat[y]));
          Stdout.log("... list completed.");
          // if args[x] = "-dd" terminate now
          if (debugDeviceList)
               System.exit(0);
          // setup video data source
          MediaLocator videoMediaLocator = captureVideoDevice.getLocator();
          DataSource videoDataSource = null;
          try
               videoDataSource = javax.media.Manager.createDataSource(videoMediaLocator);
          catch (IOException ie) { Stdout.logAndAbortException(ie); }
          catch (NoDataSourceException nse) { Stdout.logAndAbortException(nse); }
          if (! DeviceInfo.setFormat(videoDataSource, captureVideoFormat))
               Stdout.log("Error: unable to set video format - program aborted");
               System.exit(0);
          // setup audio data source
          MediaLocator audioMediaLocator = captureAudioDevice.getLocator();
          DataSource audioDataSource = null;
          try
               audioDataSource = javax.media.Manager.createDataSource(audioMediaLocator);
          catch (IOException ie) { Stdout.logAndAbortException(ie); }
          catch (NoDataSourceException nse) { Stdout.logAndAbortException(nse); }
          if (! DeviceInfo.setFormat(audioDataSource, captureAudioFormat))
               Stdout.log("Error: unable to set audio format - program aborted");
               System.exit(0);
          // merge the two data sources
          DataSource mixedDataSource = null;
          try
               DataSource dArray[] = new DataSource[2];
               dArray[0] = videoDataSource;
               dArray[1] = audioDataSource;
               mixedDataSource = javax.media.Manager.createMergingDataSource(dArray);
          catch (IncompatibleSourceException ise) { Stdout.logAndAbortException(ise); }
          // create a new processor
          // setup output file format  ->> msvideo
          FileTypeDescriptor outputType = new FileTypeDescriptor(FileTypeDescriptor.MSVIDEO);
          // setup output video and audio data format
          Format outputFormat[] = new Format[2];
          outputFormat[0] = new VideoFormat(VideoFormat.INDEO50);
          outputFormat[1] = new AudioFormat(AudioFormat.GSM_MS /* LINEAR */);
          // create processor
          ProcessorModel processorModel = new ProcessorModel(mixedDataSource, outputFormat, outputType);
          Processor processor = null;
          try
               processor = Manager.createRealizedProcessor(processorModel);
          catch (IOException e) { Stdout.logAndAbortException(e); }
          catch (NoProcessorException e) { Stdout.logAndAbortException(e); }
          catch (CannotRealizeException e) { Stdout.logAndAbortException(e); }
          // get the output of the processor
          DataSource source = processor.getDataOutput();
          // create a File protocol MediaLocator with the location
          // of the file to which bits are to be written
          MediaLocator dest = new MediaLocator("file:testcam.avi");
          // create a datasink to do the file
          DataSink dataSink = null;
          MyDataSinkListener dataSinkListener = null;
          try
               dataSink = Manager.createDataSink(source, dest);
               dataSinkListener = new MyDataSinkListener();
               dataSink.addDataSinkListener(dataSinkListener);
               dataSink.open();
          catch (IOException e) { Stdout.logAndAbortException(e); }
          catch (NoDataSinkException e) { Stdout.logAndAbortException(e); }
          catch (SecurityException e) { Stdout.logAndAbortException(e); }
          // now start the datasink and processor
          try
               dataSink.start();
          catch (IOException e) { Stdout.logAndAbortException(e); }
          processor.start();
          Stdout.log("starting capturing ...");
          try { Thread.currentThread().sleep(5000); } catch (InterruptedException ie) {}     // capture for 10 seconds
          Stdout.log("... capturing done");
          // stop and close the processor when done capturing...
          // close the datasink when EndOfStream event is received...
          processor.stop();
          processor.close();
          dataSinkListener.waitEndOfStream(10);
          dataSink.close();
          Stdout.log("[all done]");

Similar Messages

  • Problems transferring video to pc on the 6790

    I am having problems transferring video from my phone to my laptop.  I downloaded the PC Suite and had no problems with my pics, but the video won't play once it transfers to my laptop.  Any ideas on what I need to do to get them to play?

    What program are you using to play the files on your computer?
    The procedure should actually be the same, connect via data transfer and drag and drop is the simplest for me.
    Do the videos play while they are still on your memory card by any chance 
    Show your appreciation. Hit that kudos button real hard

  • Problems transferring video from iTunes to iPad

    Can anyone help with transferring video from iTunes across to an iPad. This has worked smoothly in the past but now nothing seems to transfer across. Within iTunes on my computer, I've opened the iPad and chosen a new movie to transfer (ticking the box adjacent to the film). There apperas to be plenty of space left on the iPad (currently 3.98GB) .Then I've clicked Sync. At the top of the iTunes window, the iPad is shown as syncing (very quickly) but when I check on the ipad, the movie hasn't transferred.
    Next, I've disconneceted the iPad from iTunes and restarted it - I've also tried restarting within iTunes - then reconnected to my computer and tried a fresh Sync. Same problem; the movie won't transfer. On the list of movies shown in iTunes as being on my iPad, the new movie shows up (albeit in grey - so not loaded). As it's not displaying in videos on the iPad, I can't delete it to start afresh. 
    Any suggestions welcome....

    Thanks for the link. As noted I've managed the transfer on many occasions before, but for some reason the iPad and iTunes no longer feel like syncing. I did finally manage the transfer by restarting the computer (as well as the iPad) then trying to Sync the iPad. It shouldn't be such an issue however!
    With regard to the home sharing, point taken but my wifi doesn't reach the room where I want to watch the movie on the iPad. This option doesn't work for me...

  • Final Cut Pro 4:  Problems exporting video using QuickTime conversion

    just recently updated my Mac to version 10.4.11 -
    Ever since, Final Cut Pro won't let me Export my video using QuickTime Conversion.
    Its starts exporting, then freezes at 79%. A general error message pops up.
    I know its not a space issue, because I have 20GB left and the video i'm exporting is only 2 GB.
    I installed all the software updates.
    Can anyone help? Do I need a new version of Final Cut?

    1) this is the final cut express forum not the pro.
    2) 10.4.6 is not the latest, try updating to 10.4.11
    3) after any system update you must run disk utility to repair permissions or errors that may not have been addressed during the upgrade process.
    4) have you tried exporting as a reference movie then playing it in qtpro, if ok then export.
    5) what are you trying to export too?

  • Problem transfering video to ipod......HELP PLEASE

    i have put videos onto itunes(converted them using videoria)they show up on my itues and in my library but when i try to drag them onto my ipod it doesnt highlight. no response at all. i can only drag them to my "pary shuffle" i know this question has probly been answere a million times but i cant figure out what im doing wrong. im even looking in the folder that videoria saves the transfered songs. still no luck adding them to the ipod. please any feed back will help

    I have had this problem, and it deals with the amount of data. It is the Average Bitrate, it should be below 500 kbps. Also try using handbrake or DVD2Pod. I use MacTheRipper to rip the DVD and DVD2oneX to size the DVD to under 4.3 Gig. Also a program that helps is DVDxDV which truns a VOB file to a movie.

  • Problem transferring video from laptop to Z1

    Hello,
    A couple of days ago i installed sony pc companion and media go. I transferred a video up to 2gb from my laptop to Z1 in about 5 minutes... Now there was a new update from Media Go i think 2.5..and everything is transferring very slow...transferring a video of 2gb takes more than one hour....please help...my laptop also makes allot noise when transferring...
    I tried to delete sony pc companion and Media go...and just drag and drop into internal storage..but i get the same problem...it really takes long times to transfer..it shouldn't be like this....first everything went very smooth...

    Did you get a dialog to convert the video first before copying? If yes, and you confirmed, encoding long videos could take ages on weak computer, so perhaps this is not an issue at all..
    The problem with this conversion is that not all formats are readable by default Movies app in the phone, so it asks you to convert it before the transfer "on-the-fly". This takes some time (long if it is some full movie). But if you use another player, like MXVideo for example, you don't really need to convert it, and the transfer will then go very fast (just copying).
    I thought it is the driver issue, because there is such problem too (Media Go acts more like a snail than a media manager, and it happens with PCC active simultaneously).
    When everything have failed already, try to read the manual.
    Kudos mean I am helpful. Am I for you? Then support me back

  • Problems transfering videos to ipod since installing itunes 6.02

    So, i just upgraded to itunes 6.02 and now i can't transfer videos onto my ipod. It tells me they aren't in the correct format or a format the ipod can play. Before i upgraded i had absolutely no problems. I have tried taking off files that uploaded fine with the previous version of itunes and uploading them with the newer version and they don't work either. I've got the latest updater software and that's made no difference.
    I've used both Videora and Apollo ipod convertors and neither make any difference. I've tried both mpeg4 and h.264 formats, but that doesn't work either.
    Why do apple bring out software that creates new bugs?!

    I just bought a 5th gen and cannot transfer videos.
    The videos are a computer format (could not play on TV) and I converted them to play on Ipod like help file stated. It stated that I can drag and drop to Ipod icon that shows when I connect the Ipod and use ITunes. Well no can do! It transfered to ITunes and will play in ITunes but cannot get to Ipod. My Ipod has a video section so I know I can have them on it. I tried with manual and automatic update selected.
    Am I doing something wrong?
    Thanks
    Jim

  • Problem importing videos using Photos for Mac

    I just install photos for mac, everything seems ok since I moved iphoto library to new photos library.
    But there is one problem, I can not import videos from my iphone, every new photo was imported but not a single video.
    The application said the format file is unrecognizable file type.
    I am using macbook air with Mac OS X Yosemite ver 10.10.3 also iphone 4s and iphone 5, each idevice using latest ios.
    Thank you in advance

    iPhoto did not support video syncing over iCloud. The new Photos app does. If you synced, or transferred your videos to iTunes, they should have migrated yo Photos. Enable Sidebar in the View menu, then check the Videos special Album.
    Your old iPhoto app and iPhoto Library remain on your drive and work as before. The iZphotolsb is in your Applications folder.
    How to get iPhoto 9.6.1 if you didn't update before OS X10.10.3. 
    Prepared by Barney-15E: https://discussions.apple.com/docs/DOC-8431

  • Missing video thumbnails when transfering video using Browse Me

    I use Zen Media Explorer on Vista to transfer and organise my media. I have just noticed when video is transferred using the drag and drop method, a thumbnail doesn't appear in the explorer; all it shows is the generic .wmv icon. However, when transferring using 'Add Media', video files have thumbnails in explorer. This is strange. I like using drag and drop, and like having thumbnails, but i dont want to use 'Add Media' because whenever i transfer files and want it not to be in a folder, it still gets copied to a folder with the same name as the source folder.
    Is there a way for 'Add Media' not to automatically create a folder to store transferred files? Or is the a better method of transferring files that doesn't get rid of things such as thumbnails?
    Thanks

    AHHH HA!!!
    I solved the problem!
    It has nothing to do with the format of the video. Simply open it in quicktime (not sure if you need pro or not) and click "view - set poster frame." Then save the movie and reimport into itunes. This was probably very simple and I just overlooked it, but I hope this solution helps other people with the same problem!

  • Problem transfering video to ipod

    I bought some video files (tv episodes) from the iTunes store and for some reason some of them will not transfer onto my iPod. The first few files worked fine and play on my iPod fine too (it's a season's worth of a TV show I'm discussing here). But the last few downloads refuse to transfer. They will play on the computer but when I drag them onto my iPod - a new 160G classic - it tells me "XX was not copied to the iPod because it cannot be played on this iPod."
    Incidentally, I am running the latest iTunes version (7.4.2 (4)) and iPod OS.
    It's especially strange because only some of the video files have this problem, not all of them. And as I said they play fine on iTunes on the computer.
    I checked and made sure my computer is authorized for my account. Rebooting, ejecting and replugging the iPod, or restarting iTunes doesn't help. Any advice?

    I had a similar problem once and solved it by coping the items to another folder. I then removed the items using the iTunes interface and said "Yes" to the "remove video and delete file" question. I then closed iTunes. After opening it again I used the File > Add To Library menu option and added the items again. It worked for me, maybe it wil work for you as well. You may end up needing to do all that, only to find out you need to re-download the titles from the iTunes Store again. Good luck.

  • Problem transfering video from iPhone 4s to iPhone 3gs

    i recorded a video on iPhone 4s and i need to transfer that same video on to my iPhone 3gs can any help me with this problem?

    However, when I go to play them back in the latest Quicktime player the colours are wrong, mainly coming out purple.
    On an XP system, the first thing I'd try would be the "Disable Direct3D acceleration in QuickTime" section of the following document. (iTunes uses QuickTime for video display, so the same basic troubleshooting step applies.) Restart the QuickTime Player prior to checking to see if the settings change has had any effect:
    Troubleshooting iTunes for Windows XP and 2000 video playback performance issues

  • Problem transferring videos from iPhone 4

    Recently, the videos I transfer show up as having 0 KB for size and are not recognized by Quicktime. They play properly on my phone. I am transferring the videos via Windows Explorer. It started happening around the time I updated to iOS 5, but I can not say for sure it was after.

    Put your phone in airplane mode.  The problem is that you are transferring large streams of data and the transfer protocol is getting interrupted by your iphone attempting to update apps in the background (which most people forget about happening constantly).  I had quite a frustrating time with this problem especially since I have small kids and we cherish all of our photos and videos.
    Another tip...  to make sure you don't lose anything in transfer (who knows, it could still happen but I've found in airplane mode its a LOT less)  just copy files over and then once you validate they are good to go on your hard drive, then go back and delete them on your phone.
    Did this work for you too?

  • Problem transferring video to Ipad

    I am a newbie to Ipad. 2 weeks ago I managed to transfer some purchased videos onto to my Ipad. Last weekend I transferred some songs (all through iTunes) and as a result the videos disappeared from my device. what option must I choose so that this won`t happen every time I transfer new content to my Ipad? I tried transferring the videos once again and managed to transfer them all of them except one, which somehow cannot get transferred. I don`t understand why this is happening since i had already transferred it once before on the device and it opens and works fine in iTunes. There is enough storage space on the device so this isn`t the problem. What could be wrong? Any idea why this is happening?

    Sync movies to iPad
    http://ipad.about.com/od/iPad_Guide/ss/How-To-Sync-An-iPad-With-iTunes-Music-Mov ies-Apps_4.htm

  • Help!!! JavaFX problem changing video using MediaPlayer Object

    Hello,
    I hope you can help me. I'm creating a player that constantly displays a playlist of videos. After some time the system seems to go in deadlock changing video. The problem I have encountered is with the release of JavaFX 1.2, JavaFX 1.3 and JavaFX 1.3.1. The code I used is as follows:
    package fx.classes;
    import javafx.scene.Scene;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaView;
    import javafx.scene.media.MediaError;
    import javafx.stage.Stage;
    import java.lang.System;
    import java.lang.Thread;
    import javafx.scene.control.Button;
    import javafx.scene.control.Tooltip;
    var source = "C:/Progetti/OBA/workspaces/apps/Dove6FXVideo/res/video/content/cartoon.mp4";
    var source2 = "C:/Progetti/OBA/workspaces/apps/Dove6FXVideo/res/video/content/spot30.mp4";
    //var source = "C:/Movie/test/test1.avi";
    //var source2 = "C:/Movie/test/test2.avi";
    var i = 0;
    public class MP extends Scene {
    var md: Media = Media {
    source: source
    onError:
    function (e: MediaError) {
    println("got a MediaPlayer error : {e.cause} {e}");
    mediaPlayer.media = null;
    var mediaPlayer: MediaPlayer = MediaPlayer {
    //autoPlay: true
    //repeatCount: MediaPlayer.REPEAT_FOREVER;
    startTime: 100s
    onEndOfMedia: function() {
    changeMovie()
    onError: function(me : MediaError) {
    if (mediaPlayer.status == MediaPlayer.PAUSED) {
    println("Stato: pausa");
    mediaPlayer.stop();
    else {
    print(mediaPlayer.status);
    println("Stato: ");
    onStalled: function(du : Duration) {
    print( mediaPlayer.status );
    media: md
    override var content = [
    MediaView {
    //x: 10
    //y: 10
    //fitWidth: 400
    //fitHeight: 300
    //fitHeight: bind height
    //fitWidth: bind width
    preserveRatio: true
    mediaPlayer: bind mediaPlayer
    function play() {
    mediaPlayer.play();
    function stop() {
    mediaPlayer.stop();
    function pause() {
    mediaPlayer.pause();
    function printStatus() {
    print( mediaPlayer.status );
    protected function changeMovie() : Void {
    mediaPlayer.stop();
    var ss = source;
    if ((i mod 2) != 0) {
    ss = source2;
    md = Media {
    source: ss
    onError:
    function (e: MediaError) {
    println("got a MediaPlayer error : {e.cause} {e}");
    mediaPlayer.media = null;
    mediaPlayer.media = md;
    mediaPlayer.play();
    i = i + 1;
    var sample: MP = MP {
    public function run( args: String[] ) {
    var stage:Stage = Stage {
    //title: bind "CutePlayer 3: {cutePlayer.myPlayer.media.source}"
    title: bind "Media Player: Big Back Bunny"
    width: 1024
    height: 600
    scene: bind sample
    sample.printStatus();
    sample.play();
    The same problem seems to be also using the project Mediabox (between JavaFX demo). Does anyone know how you can solve the problem?
    Thank you in advanced,
    Domenico

    Hello,
    I hope you can help me. I'm creating a player that constantly displays a playlist of videos. After some time the system seems to go in deadlock changing video. The problem I have encountered is with the release of JavaFX 1.2, JavaFX 1.3 and JavaFX 1.3.1. The code I used is as follows:
    package fx.classes;
    import javafx.scene.Scene;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaView;
    import javafx.scene.media.MediaError;
    import javafx.stage.Stage;
    import java.lang.System;
    import java.lang.Thread;
    import javafx.scene.control.Button;
    import javafx.scene.control.Tooltip;
    var source = "C:/Progetti/OBA/workspaces/apps/Dove6FXVideo/res/video/content/cartoon.mp4";
    var source2 = "C:/Progetti/OBA/workspaces/apps/Dove6FXVideo/res/video/content/spot30.mp4";
    //var source = "C:/Movie/test/test1.avi";
    //var source2 = "C:/Movie/test/test2.avi";
    var i = 0;
    public class MP extends Scene {
    var md: Media = Media {
    source: source
    onError:
    function (e: MediaError) {
    println("got a MediaPlayer error : {e.cause} {e}");
    mediaPlayer.media = null;
    var mediaPlayer: MediaPlayer = MediaPlayer {
    //autoPlay: true
    //repeatCount: MediaPlayer.REPEAT_FOREVER;
    startTime: 100s
    onEndOfMedia: function() {
    changeMovie()
    onError: function(me : MediaError) {
    if (mediaPlayer.status == MediaPlayer.PAUSED) {
    println("Stato: pausa");
    mediaPlayer.stop();
    else {
    print(mediaPlayer.status);
    println("Stato: ");
    onStalled: function(du : Duration) {
    print( mediaPlayer.status );
    media: md
    override var content = [
    MediaView {
    //x: 10
    //y: 10
    //fitWidth: 400
    //fitHeight: 300
    //fitHeight: bind height
    //fitWidth: bind width
    preserveRatio: true
    mediaPlayer: bind mediaPlayer
    function play() {
    mediaPlayer.play();
    function stop() {
    mediaPlayer.stop();
    function pause() {
    mediaPlayer.pause();
    function printStatus() {
    print( mediaPlayer.status );
    protected function changeMovie() : Void {
    mediaPlayer.stop();
    var ss = source;
    if ((i mod 2) != 0) {
    ss = source2;
    md = Media {
    source: ss
    onError:
    function (e: MediaError) {
    println("got a MediaPlayer error : {e.cause} {e}");
    mediaPlayer.media = null;
    mediaPlayer.media = md;
    mediaPlayer.play();
    i = i + 1;
    var sample: MP = MP {
    public function run( args: String[] ) {
    var stage:Stage = Stage {
    //title: bind "CutePlayer 3: {cutePlayer.myPlayer.media.source}"
    title: bind "Media Player: Big Back Bunny"
    width: 1024
    height: 600
    scene: bind sample
    sample.printStatus();
    sample.play();
    The same problem seems to be also using the project Mediabox (between JavaFX demo). Does anyone know how you can solve the problem?
    Thank you in advanced,
    Domenico

  • Problems transferring video to ipod

    So, i just upgraded to itunes 6.02 and now i can't transfer videos onto my ipod. It tells me they aren't in the correct format or a format the ipod can play. Before i upgraded i had absolutely no problems. I have tried taking off files that uploaded fine with the previous version of itunes and uploading them with the newer version and they don't work either. I've got the latest updater software and that's made no difference.
    I've used both Videora and Apollo ipod convertors and neither make any difference. I've tried both mpeg4 and h.264 formats, but that doesn't work either.
    Why do apple bring out software that creates new bugs?!

    Can you please give me a little more info on your situation... (that's not much to go on...) thanks...

Maybe you are looking for

  • Where do i put external libraries?

    I have some oracle classes that I use for XML generation. Where do I put the jar file so that Weblogic can use them? Do I reference it in the CLASSPATH variable, or can I put the jar file in the weblogic directory structure? Thanks in advance, Josh C

  • I moved to different country and now I can't use iTunes

    I'm from Canada and my account was registered in Canada with a Canadian credit card. Now I'm living between Slovakia and Spain and iTunes won't let me buy/download anything. I understand that it would be a licensing issue if I were to buy things from

  • View uspto images

    Using QuickTime 7.5.5 on a new iMac, how can I view images on the uspto website? When I attempt to vie the images I get a quick "Q" flash but no image.

  • Help!! I clicked on 'Rebuild' and all my mailboxes are empty!

    help! I have very very important emails that i store in my mailboxes, and now i have to get them back. I can't download them from the email server because it has expired, thus not in use anymore.

  • [REQUEST] UEFI / GOP Vbios for GEFORCE GTX 760 (N760 TF 2GD5/OC)

    Hello, I am looking for a UEFI / GOP Vbios for my new GEFORCE GTX 760 to install Windows 8.1 in UEFI mode. S/N: 602 - V284 - 260B1310053758 Link to ROM: http //1drv.ms/1lSpiLX