WL 5.1 and SDK4

Hi,
Because I have to connect to Weblogic from a COM Client (ASP), I have to
start WL with the SDK instead of the JDK.
But when I start the server the following error occurs:
The WebLogic Server did not start up properly.
Exception raised: java.lang.NoClassDefFoundError
java.lang.NoClassDefFoundError
at weblogic/Server.startServerStatically
at weblogic/Server.main
at weblogic/Server.main
I tried the following script:
set WL_HOME=c:\programme\weblogic
set SDK_HOME="c:\programme\Microsoft SDK for Java 4.0"
set JDK_HOME=c:\programme\java\jkd122
set
WL_CL_PATH=%WL_HOME%\classes;%WL_HOME%/license;%WL_HOME%/lib/weblogicaux.jar;%WL_HOME%/myserver/serverclasses
set PATH=%SDK_HOME%\bin;%JDK_HOME%\bin;%wl_home%\bin
set
CLASSPATH=%WL_HOME%\lib\weblogic510sp2boot.jar;c:\programme\java\jConnect\jconn2.jar;
          c:\programme\java\jConnect\jconnect.jar;%WL_HOME%/classes/boot;
%WL_HOME%/eval/cloudscape/lib/cloudscape.jar;%WL_HOME%/lib/poolorb.jar;
          %WL_CL_PATH%;c:\Winnt\Java\Classes\classes.zip
jview /d:weblogic.system.disableWeblogicClassPath=true weblogic.Server
Are there any hints what there has to be done? Have I forgotten
anything? How can I examine which class was not found?
Thanks,
     Andreas Bunge

Hi,
I just read the docu again:
"Finally, you will need to run WebLogic Server using the Microsoft SDK
for Java. COM clients are not support when running WebLogic
Server under a Sun JVM"
(http://www.weblogic.com/docs51/classdocs/API_com.html)
So, I think it is necessary to run WL under SDK, but I still have the
problem I mentioned in a previous posting. So, can anybody help me
solving this problem?
Andreas Bunge schrieb:
>
Hi,
well, I think I have read something in the WL-Docu about WL only
supporting COM-objects when it runs under sdk??
At the moment, the only problem is to start the server under SDK. But if
this is not necessary, I would be happy because I tested WL under JDK.
Do you have WLS and COM clients in the same machine???Yes, I might do so to test a little bit. Are there any things I have to
know about doing so?
At last, I have a WL 5.1 and and an IIS and I want to access EJBS (WL)
with help of ASP (IIS).
So, I will try it with starting WL with JDK.
Thanks,
Andreas Bunge

Similar Messages

  • Slow data communication (LCDS 3.1) after upgrading to Flex SDK 4.1

    I wonder if anybody experienced something like that.
    It's quite a big project, currently running with Flex SDK 3.5.
    After converting to SDK 4.1 and making all required adjustment the UI runs as good as before, with one problem - creation of new complex UI components takes much longer (3-5 times). Creation of some components involves a number of server calls, which according to Network Monitor do run much longer (e.g. 13 seconds instead of 4).
    I'm considering 2 possibilities:
    1. Something in UI is holding all threads, preventing service calls from finishing promptly, and making impression of slow network.
    2. Server communication somehow got much slower. Against that the fact is because server calls are asynchronous they shouldn't prevent UI from drawing at least empty components.
    Server code is the same for old and new UI, it runs Spring, Hibernate, Jetty (in dev mock) or Tomcat (on dev server), LCDS 3.1.
    I've tried several LCDS 3.1 libraries with and without patches, SDK3 and SDK4 specific, with the same result.
    Flash Player 10.1.xx debug.
    Any idea?
    Thanks, Andrei.

    It turned out that delays where caused by slow instantiation of visual components.
    See http://forums.adobe.com/thread/786472?tstart=0
    Presumably Network Monitor registers facts that server communication is initiated (queued?), but doesn't say when Flash Player frees resources to make actual calls (switch to the second Frame?). Or something like that.

  • Flex charts and trunk sdk or beta build

    has anyone managed to use adobe datavis with latest build of sdk
    anything i try to add, say a line graph just runtime errors wrong number of arg's)
    I'll post more info on this in morning, but been coding for 19 hours today and im worn outt
    if anyone has been usinf latest sdk4 with any data vis components (from any company) can u let me know as I need to get onto this adas
    thanks and excuse any typos
    glenn
    tinylion

    It turns out this was a syntax issue. I assumed “Ensure
    that Java SDK is installed on the computer and that the
    java_home/bin directory is defined in the system path.”,
    meant
    Set Path=C:\Program Files\Java\jdk1.6.0_01\bin;….
    not
    Set java_home=C:\Program Files\Java\jdk1.6.0_01

  • Flex SDK4 - import built in class error

    How are you?
    I am writing a very simple class, which I am trying to compile with ./mxmlc found in Flex SDK4. However I am getting the below errors, it seems like the built in classes cannot be found. I am not sure why the FLVPlayback or VideoPlayer or VideoElement components do not get included. I checked the SVN, and I cannot find any reference to these components.
    1) All I am trying to do is to get Video to display, using the Flex SDK4 compiler with AS3 files. Why the elements do not import? and What elements could I use for this to work?
    package {
         import flash.display.Sprite;
         import fl.video.FLVPlayback;
         public class Welcome extends Sprite {
              private var _video:FLVPlayback;
              private var _videoPath:String = "InsideJob.f4v";
              public function Welcome():void {
                   build();
         protected function build():void {
                   _video = new FLVPlayback();
                   _video.play(_videoPath);
                   var _place = new Position(200, 500);
                   _video.x = _place.xvalue();
                   _video.y = _place.yvalue();
                   stage.addChild(_video)
    ERRORS -----
    --FLVPlayback
    col: 22 Error: Type was not found or was not a compile-time constant: FLVPlayback.
    private var _video:FLVPlayback;
    col: 17 Error: Call to a possibly undefined method FLVPlayback.
    _video = new FLVPlayback();
    --Spark
    col: 25 Error: Definition spark.components:VideoElement could not be found.
    import spark.components.VideoElement;
    col: 22 Error: Type was not found or was not a compile-time constant: VideoElement.
    private var _video:VideoElement;

    How are you?
    I am writing a very simple class, which I am trying to compile with ./mxmlc found in Flex SDK4. However I am getting the below errors, it seems like the built in classes cannot be found. I am not sure why the FLVPlayback or VideoPlayer or VideoElement components do not get included. I checked the SVN, and I cannot find any reference to these components.
    1) All I am trying to do is to get Video to display, using the Flex SDK4 compiler with AS3 files. Why the elements do not import? and What elements could I use for this to work?
    package {
         import flash.display.Sprite;
         import fl.video.FLVPlayback;
         public class Welcome extends Sprite {
              private var _video:FLVPlayback;
              private var _videoPath:String = "InsideJob.f4v";
              public function Welcome():void {
                   build();
         protected function build():void {
                   _video = new FLVPlayback();
                   _video.play(_videoPath);
                   var _place = new Position(200, 500);
                   _video.x = _place.xvalue();
                   _video.y = _place.yvalue();
                   stage.addChild(_video)
    ERRORS -----
    --FLVPlayback
    col: 22 Error: Type was not found or was not a compile-time constant: FLVPlayback.
    private var _video:FLVPlayback;
    col: 17 Error: Call to a possibly undefined method FLVPlayback.
    _video = new FLVPlayback();
    --Spark
    col: 25 Error: Definition spark.components:VideoElement could not be found.
    import spark.components.VideoElement;
    col: 22 Error: Type was not found or was not a compile-time constant: VideoElement.
    private var _video:VideoElement;

  • TextAnim - i need a running example. and please hurry :)

    hi y'all,
    i urgently need help with something which should be very straightforward:
    i am unable to use TextAnim - no matter what. could anyone please send me a complete source code of a running example?
    whatever i do - i run into an exception or a compile error. (for example - addChild cannot be used in SDK4.0 but i cannot use something else with the TextField component).
    some TextAnim tutorial:
    http://www.actionscript.org/forums/showthread.php3?t=226682
    and the project website:
    http://code.google.com/p/textanim/
    so please send a running source code. much appreciated! 
    thanks,
    ronnie

    ok, progress was made - thanks for the tip Ben! 
    on SDK 4.1 it now compiles and runs but the screen stays white. following is the complete MXML code, feedback will be VERY welcome.
    thanks,
    r.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
    initialize="application1_initializeHandler(event)">
    <fx:Script>
    <![CDATA[
    import mx.events.FlexEvent;
    import caurina.transitions.*;
    import flash.text.*;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flupie.textanim.*;
    import mx.events.FlexEvent;
    function myEffect(block:TextAnimBlock):void {
    block.scaleX = block.scaleY = 0;
    block.rotation = -120;
    Tweener.addTween(block, {rotation:0, scaleX:1, scaleY:1, time:.5, transition:"easeoutback"});
    protected function application1_initializeHandler(event:FlexEvent):void
    var myTextField:TextField = new TextField();
    myTextField.x = 100;
    myTextField.y = 200;
    myTextField.htmlText = "TextAnim <font color=\"#FF0000\">Maker!</font> Lorem ipsum<br>tashin ishi quiring din.";
    myTextField.autoSize = "left";
    myTextField.embedFonts = true;
    con.addChild(myTextField);
    var txtanim:TextAnim = new TextAnim(myTextField);
    txtanim.interval = 7;
    txtanim.blocksVisible = false;
    txtanim.effects = myEffect;
    txtanim.start();
    ]]>
    </fx:Script>
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:SpriteVisualElement id="con" />
    </s:Application>

  • CCM 5.0.2 and SDK 4.1

    Hi everyone, I'm newbie here, hope you can help me solve this problem: I have got a CCM5.0.2 and IP Phone 7940.
    Because SDK 5.0 hasn't been released yet, so i'm trying to use SDK 4.1 to go with CCM5.0.2.
    I've already install SDK4.1 and 4 components of COM Server, IIS works well, i added logo service in CCM
    and URL is http://<local_ip_of_CCM>/CiscoIPServices/logo/logo.asp
    But my problem is : when i press "service" button on my IP Phone, the menu doesn't appear.
    I see the LCD say that i have to go to this URL to add service to my phone https://<ip_add_of_CCM>/ccmuser/showHome.do
    but i can not access this page because of this error :"Access to the requested resource has been denied.
    You must restart your web browser in order to log in again."
    I really confuse about this issue, hope you can help me, thank you so much

    Check out the CCM Admin guide.. it tells you how to configure a service.
    Quick rundown without the details: first you declare your service. The ccm admin has to do that.
    Then you can either assign services from the admin pages to individual phones / user device profiles, or your users can access the ccmuser pages via their webbrowser (https://
    And... http:///CiscoIPServices/logo/logo.asp is most definitely not going to work.. there's not even an IIS on call manager anymore... it's all linux based and thus you have a tomcat and you cannot run any apps on the call manager anymore ;)

  • Can sdk3.0 application swfloader swf file builder with sdk4.6

    I have an application builder with sdk3.0. Can I use swfloader to load a swf file builder with sdk4.6?

    That configuration is not supported.  The 3.0 SWF will set the API version to some lower number and any FP10 or FP11 APIs will break.

  • A problem with Threads and loops.

    Hi, I have some code that needs to be constantly running, like while(true)
          //code here
    }However, the code just checks to see if the user has input anything (and then if the user has, it goes to do some other stuff) so I don't need it constantly running and hogging up 98% of the CPU. So I made my class (which has the method that needs to be looped, call it ClassA) implement Runnable. Then I just added the method which needed to be looped into the public void run()
    I have another class which creates an instance of the above class (call it ClassB), and the main(String[] args) is in there.
    public static void main(String[] args)
              ClassA test = new ClassA();
              Thread thread = new Thread(test.getInstanceOfClassA());
              thread.start();
              while(true)
                           //I do not know what to put here
                   try
                        thread.sleep(100);
                   catch(InterruptedException iex)
         }However, the thread only calls run() once,(duh...) but I can't think of away to get it to run - sleep - run -sleep forever. Can someone help me?

    Hi, I have some code that needs to be constantly
    running, like while(true)
    //code here
    }However, the code just checks to see if the user has
    input anything (and then if the user has, it goes to
    do some other stuff) so I don't need it constantly
    running and hogging up 98% of the CPU. Where does the user input come from. Are you reading from an InputStream? If so, then your loop will be blocked anyway when reading from the InputStream until data is available. During that time, the loop will not consume processor cycles.
    public static void main(String[] args)
              ClassA test = new ClassA();
    Thread thread = new Thread(test.getInstanceOfClassA());I have never seen this idiom. If ClassA instanceof Runnable, you simply write new Thread(test).
              thread.start();
              while(true)
    //I do not know what to put
    do not know what to put here
                   try
                        thread.sleep(100);
                   catch(InterruptedException iex)
         }However, the thread only calls run() once,(duh...)Yeah, why would you want to call it more than once given that you have an infinite loop in ClassA.run()?
    Harald.
    Java Text Crunching: http://www.ebi.ac.uk/Rebholz-srv/whatizit/software

  • A problem with Threads and MMapi

    I am tring to execute a class based on Game canvas.
    The problem begin when I try to Play both a MIDI tone and to run an infinit Thread loop.
    The MIDI tone "Stammers".
    How to over come the problem?
    Thanks in advance
    Kobi
    See Code example below:
    import java.io.IOException;
    import java.io.InputStream;
    import javax.microedition.lcdui.Graphics;
    import javax.microedition.lcdui.Image;
    import javax.microedition.lcdui.game.GameCanvas;
    import javax.microedition.media.Manager;
    import javax.microedition.media.MediaException;
    import javax.microedition.media.Player;
    public class MainScreenCanvas extends GameCanvas implements Runnable {
         private MainMIDlet parent;
         private boolean mTrucking = false;
         Image imgBackgound = null;
         int imgBackgoundX = 0, imgBackgoundY = 0;
         Player player;
         public MainScreenCanvas(MainMIDlet parent)
              super(true);
              this.parent = parent;
              try
                   imgBackgound = Image.createImage("/images/area03_bkg0.png");
                   imgBackgoundX = this.getWidth() - imgBackgound.getWidth();
                   imgBackgoundY = this.getHeight() - imgBackgound.getHeight();
              catch(Exception e)
                   System.out.println(e.getMessage());
          * starts thread
         public void start()
              mTrucking = true;
              Thread t = new Thread(this);
              t.start();
          * stops thread
         public void stop()
              mTrucking = false;
         public void play()
              try
                   InputStream is = getClass().getResourceAsStream("/sounds/scale.mid");
                   player = Manager.createPlayer(is, "audio/midi");
                   player.setLoopCount(-1);
                   player.prefetch();
                   player.start();
              catch(Exception e)
                   System.out.println(e.getMessage());
         public void run()
              Graphics g = getGraphics();
              play();
              while (true)
                   tick();
                   input();
                   render(g);
          * responsible for object movements
         private void tick()
          * response to key input
         private void input()
              int keyStates = getKeyStates();
              if ((keyStates & LEFT_PRESSED) != 0)
                   imgBackgoundX++;
                   if (imgBackgoundX > 0)
                        imgBackgoundX = 0;
              if ((keyStates & RIGHT_PRESSED) != 0)
                   imgBackgoundX--;
                   if (imgBackgoundX < this.getWidth() - imgBackgound.getWidth())
                        imgBackgoundX = this.getWidth() - imgBackgound.getWidth();
          * Responsible for the drawing
          * @param g
         private void render(Graphics g)
              g.drawImage(imgBackgound, imgBackgoundX, imgBackgoundY, Graphics.TOP | Graphics.LEFT);
              this.flushGraphics();
    }

    You can also try to provide a greater Priority to your player thread so that it gains the CPU time when ever it needs it and don't harm the playback.
    However a loop in a Thread and that to an infinite loop is one kind of very bad programming, 'cuz the loop eats up most of your CPU time which in turn adds up more delays of the execution of other tasks (just as in your case it is the playback). By witting codes bit efficiently and planning out the architectural execution flow of the app before start writing the code helps solve these kind of issues.
    You can go through [this simple tutorial|http://oreilly.com/catalog/expjava/excerpt/index.html] about Basics of Java and Threads to know more about threads.
    Regds,
    SD
    N.B. And yes there are more articles and tutorials available but much of them targets the Java SE / EE, but if you want to read them here is [another great one straight from SUN|http://java.sun.com/docs/books/tutorial/essential/concurrency/index.html] .
    Edited by: find_suvro@SDN on 7 Nov, 2008 12:00 PM

  • Problem with Threads and a static variable

    I have a problem with the code below. I am yet to make sure that I understand the problem. Correct me if I am wrong please.
    Code functionality:
    A timer calls SetState every second. It sets the state and sets boolean variable "changed" to true. Then notifies a main process thread to check if the state changed to send a message.
    The problem as far I understand is:
    Assume the timer Thread calls SetState twice before the main process Thread runs. As a result, "changed" is set to true twice. However, since the main process is blocked twice during the two calls to SetState, when it runs it would have the two SetState timer threads blocked on its synchronized body. It will pass the first one, send the message and set "changed" to false since it was true. Now, it will pass the second thread, but here is the problem, "changed" is already set to false. As a result, it won't send the message even though it is supposed to.
    Would you please let me know if my understanding is correct? If so, what would you propose to resolve the problem? Should I call wait some other or should I notify in a different way?
    Thanks,
    B.D.
    Code:
    private static volatile boolean bChanged = false;
    private static Thread objMainProcess;
       protected static void Init(){
            objMainProcess = new Thread() {
                public void run() {
                    while( objMainProcess == Thread.currentThread() ) {
                       GetState();
            objMainProcess.setDaemon( true );
            objMainProcess.start();
        public static void initStatusTimer(){
            if(objTimer == null)
                 objTimer = new javax.swing.Timer( 1000, new java.awt.event.ActionListener(){
                    public void actionPerformed( java.awt.event.ActionEvent evt){
                              SetState();
        private static void SetState(){
            if( objMainProcess == null ) return;
            synchronized( objMainProcess ) {
                bChanged = true;
                try{
                    objMainProcess.notify();
                }catch( IllegalMonitorStateException e ) {}
        private static boolean GetState() {
            if( objMainProcess == null ) return false;
            synchronized( objMainProcess ) {
                if( bChanged) {
                    SendMessage();
                    bChanged = false;
                    return true;
                try {
                    objMainProcess.wait();
                }catch( InterruptedException e ) {}
                return false;
        }

    Thanks DrClap for your reply. Everything you said is right. It is not easy to make them alternate since SetState() could be called from different places where the state could be anything else but a status message. Like a GREETING message for example. It is a handshaking message but not a status message.
    Again as you said, There is a reason I can't call sendMessage() inside setState().
    The only way I was able to do it is by having a counter of the number of notifies that have been called. Every time notify() is called a counter is incremented. Now instead of just checking if "changed" flag is true, I also check if notify counter is greater than zero. If both true, I send the message. If "changed" flag is false, I check again if the notify counter is greater than zero, I send the message. This way it works, but it is kind of a patch than a good design fix. I am yet to find a good solution.
    Thanks,
    B.D.

  • Problem with Threads and "plase wait..."-Window

    Hi everyone,
    I have a problem that I'm not able to solve in any way... I have a time-consuming task (a file decryption) which I execute in a separate thread; I've used the SwingWorker class, like suggested by sun-tutorial, and it works right. The problem is that I have to wait that the decryption have finished before continuing with program-execution. Therefore I would like to display a "please wait"-window while the task runs. I've tryed all the possible ways I know but the problem is always the same: the waitWindow is displayed empty, the bounds are painted but the contents no; it's only painted when the decrypt-task has finished. Please help me, I have no more resources....
    decrypt-file code:
    public class DecryptFile {
      private String cryptedFileNameAndPath;
      private ByteArrayInputStream resultStream = null;
      // need for progress
      private int lengthOfTask;
      private int current = -1;
      private String statMessage;
      public DecryptFile(String encZipFileNameAndPath) {
        cryptedFileNameAndPath = encZipFileNameAndPath;
        //Compute length of task...
        // 0 for indeterminate
        lengthOfTask = 0;
      public ByteArrayInputStream getDecryptedInputStream() {
        return this.resultStream;
       * Called from ProgressBarDemo to start the task.
      public void go() {
        current = -1;
        final SwingWorker worker = new SwingWorker() {
          public Object construct() {
            return new ActualTask();
        worker.start();
       * Called from ProgressBarDemo to find out how much work needs
       * to be done.
      public int getLengthOfTask() {
        return lengthOfTask;
       * Called from ProgressBarDemo to find out how much has been done.
      public int getCurrent() {
        return current;
      public void stop() {
        current = lengthOfTask;
       * Called from ProgressBarDemo to find out if the task has completed.
      public boolean done() {
        if (current >= lengthOfTask)
          return true;
        else
          return false;
      public String getMessage() {
        return statMessage;
       * The actual long running task.  This runs in a SwingWorker thread.
      class ActualTask {
        ActualTask () {
          current = -1;
          statMessage = "";
          resultStream = AIUtil.getInputStreamFromEncZip(cryptedFileNameAndPath); //here the decryption happens
          current = 0;
          statMessage = "";
      }The code that calls decryption and displays waitWindow
          final WaitSplash wS = new WaitSplash("Please wait...");
          final DecryptFile cryptedTemplate = new DecryptFile (this.templateFile);
          cryptedTemplate.go();
          while (! cryptedTemplate.done()) {
            try {
              wait();
            } catch (Exception e) { }
          this.templateInputStream = cryptedTemplate.getDecryptedInputStream();
          wS.close();Thanks, thanks, thanks in advance!
    Edoardo

    Maybe you can try setting the priority of the long-running thread to be lower? so that the UI will be more responsive...

  • Problem with threads and graphics

    I have a thread that chooses paths for a Travelling salesman problem, it then calls a TSPdraw class and passes it the path, which the class then draws. the problem is when i have two threads it creates two windows but only draws a path in one of them. any ideas where i`m going wrong

    Are you using swing components? Swing isn't threadsafe. If you have multiple threads that want to update your UI you need to use the SwingUtilities.invokeLater(...)or invokeAndWait(...). There is a page in the swing tutorial about this at: http://java.sun.com/docs/books/tutorial/uiswing/misc/threads.html

  • Problem with threads and ProgressMonitor

    Dear Friends:
    I have a little problem with a thread and a ProgressMonitor. I have a long time process that runs in a thread (the thread is in an separate class). The thread has a ProgressMonitor that works fine and shows the tasks progress.
    But I need deactivate the main class(the main class is the user interface) until the thread ends.
    I use something like this:
    LongTask myTask=new LongTask();
    myTask.start();
    myTask.join();
    Now, the main class waits for the task to end, but the progress monitor don`t works fine: it shows only the dialog but not the progress bar.
    What's wrong?

    Is the dialog a modal dialog? This can block other UI updates.
    In general, you should make sure that it isn't modal, and that your workThread has a fairly low priority so that the UI can do its updating

  • Problem with threads and/or memory

    I'm developing an application where there are 3 threads. One of them sends a request to the other, and if the 2nd can't answer it, it sends it to the 3rd (similar to CPU -> CACHE -> MEMORY). When i run the program with 1000-10.000 requests, no problem occurs. When i run it with 300.000-1.000.000 requests, it sometimes hangs. Is this a problem with the garbage collector, or should it be related to the threads mecanism.
    (note: eache thread is in execution using a finite state machine)

    i had been running the program inside Netbeans.
    Running the jar using the command line outside
    Netbeans i have no more problems... Does Netbeans use
    it's own JVM?Depends how you set it up, but look under the options. There are settings for the compiler and jvm that it uses.

  • Null And " "

    What is the difference between these two lines of codes?
    String currentFile = null;
    String currentFile = "";
    Edited by: AMARSHI on Jul 10, 2008 7:07 AM

    The reference variable itself, takes up the same amount of space, of course, as all references are the same size. Now, the object on the heap is a different story. With null there isn't one, of course (or if there is there is only one for the entire VM), and for the second a String object will be created in the String pool (once again, only one for the entire VM that every = "" assignment will use). But really, what difference does it make? If there is a difference, it is on the order of a few bytes (at max) for the entire VM, and if this is a concern, your probably doing something else greviously wrong. This miniscule difference should not concern you.
    Edit: And "nulling" variables to "save" memory is also not something you should be concerned with. Either the variable will go out of scope and the object garbage collected anyway, or it's in constant use and so will not be taking up any extraneous heap space. If one of those is not the case, you are, once again, doing something greviously wrong.

Maybe you are looking for

  • How many contacts can I text at a time using text messaging?

    Before the upgrade to ios5 I could send 1 text message that included 20 contacts, now I can't seem to do more than 10 at a time.  I coach a youth baseball team and it is very convenient to send one text to parents about practice/games.  Now I have to

  • Error while configuring IWA in Oracle Access Manager

    This is the error that I get: "The credentials (REMOTE_USER=MyUser Resource=/edm/ RequesterIP=172.25.164.82 Operation=GET) used in the login do not correspond to a user profile in the Identity System." I definitely have this user in AD as well as Net

  • Premiere Pro & After Effects close after a few seconds after the startup?

    Hi, I bought Creative Cloud yesterday and everything installed just fine. I haven't tried all Apps yet, but so far Premiere Pro and After Effects close after a few seconds after the startup. There is no dialogue or error window of any kind, the progr

  • Adobe CD came with Fujitsu Scan Snap

    I bought a Fujitsu scan snap and an adobe CD came with it, but my laptop does not have a cd.  I need to install.  The cd package lists a serial number, but I do not see a product code anywhere.  The adobe website seems to require a product code.  Any

  • Bluetooth Headeset Pairs - but then drops...

    I have tried this with several different bluetooth headsets. I successfully pair my device and bluetooth headset, can make calls, everything works fine.  Once I am off of a call for longer than 2-3 minutes the bluetooth connection is lost.  I look on