ClassNotFoundException  (error in lookup  : stub not found by client) ??

SampleServer.java_
import java.rmi.*;
public interface SampleServer extends Remote
public int sum(int a,int b) throws RemoteException;
SampleServerImpl.java_
import java.rmi.*;
import java.rmi.server.*;
import java.rmi.registry.*;
public class SampleServerImpl extends UnicastRemoteObject implements SampleServer{
SampleServerImpl() throws RemoteException
super();
public int sum(int a,int b) throws RemoteException
return a + b;
public static void main(String args[])
//set the security manager
try
// System.setSecurityManager(new RMISecurityManager());
//create a local instance of the object
SampleServerImpl Server = new SampleServerImpl();
//put the local instance in the registry
Naming.rebind("SAMPLE-SERVER" , Server);
System.out.println("Server waiting.....");
catch (java.net.MalformedURLException me)
System.out.println("Malformed URL: " + me.toString());
catch (RemoteException re)
System.out.println("Remote exception: " + re.toString());
SampleClient .java_
import java.rmi.*;
import java.rmi.server.*;
public class SampleClient
public static void main(String[] args)
// set the security manager for the client
//System.setSecurityManager(new RMISecurityManager());
//get the remote object from the registry
try
System.out.println("Security Manager loaded");
String url = "rmi://172.16.5.41:1099/SAMPLE-SERVER";
SampleServer remoteObject = (SampleServer)Naming.lookup(url);
System.out.println("Got remote object");
//narrow the object down to a specific one
//System.out.println("Location: " + System.getProperty("LOCATION"));
// make the invocation
System.out.println(" 1 + 2 = " +
remoteObject.sum(1,2) );
catch (RemoteException exc)
System.out.println("Error in lookup: " + exc.toString());
catch (java.net.MalformedURLException exc)
System.out.println("Malformed URL: " + exc.toString());
catch (java.rmi.NotBoundException exc)
System.out.println("NotBound: " + exc.toString());
errors_
Error in lookup : java.rmi.UnmarshalException :error unmarshalling return;
nested exception is : java.lang.ClassNotFoundException :SampleServerImpl_Stub
dynamic code loading is not working in the client.
the server is working fine.
thanks

yeah.i have my codebase files D: drive on windows .when running the server i used
java  -Djava.rmi.server.codebase=file://d:/ -Djava.security.policy=policy.all SampleSeverImpli got these errors
Exception in thread "main" java.security.AccessControlException: access denied (
java.io.FilePermission \\d read)
        at java.security.AccessControlContext.checkPermission(AccessControlConte
xt.java:323)
        at java.security.AccessController.checkPermission(AccessController.java:
546)
        at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
        at java.lang.SecurityManager.checkRead(SecurityManager.java:871)
        at java.io.File.exists(File.java:731)
        at sun.net.www.protocol.file.Handler.openConnection(Handler.java:80)
        at sun.net.www.protocol.file.Handler.openConnection(Handler.java:55)
        at java.net.URL.openConnection(URL.java:945)
        at sun.rmi.server.LoaderHandler.addPermissionsForURLs(LoaderHandler.java
:1021)
        at sun.rmi.server.LoaderHandler.access$300(LoaderHandler.java:52)
        at sun.rmi.server.LoaderHandler$Loader.<init>(LoaderHandler.java:1129)
        at sun.rmi.server.LoaderHandler$Loader.<init>(LoaderHandler.java:1110)
        at sun.rmi.server.LoaderHandler$1.run(LoaderHandler.java:865)
        at java.security.AccessController.doPrivileged(Native Method)
        at sun.rmi.server.LoaderHandler.lookupLoader(LoaderHandler.java:862)
        at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:385)
        at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:165)
        at java.rmi.server.RMIClassLoader$2.loadClass(RMIClassLoader.java:620)
        at java.rmi.server.RMIClassLoader.loadClass(RMIClassLoader.java:247)
        at sun.rmi.server.MarshalInputStream.resolveClass(MarshalInputStream.jav
a:197)
        at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:157
5)
        at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1496)
        at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1
732)
        at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
        at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
        at sun.rmi.registry.RegistryImpl_Skel.dispatch(Unknown Source)
        at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:386
        at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:250)
        at sun.rmi.transport.Transport$1.run(Transport.java:159)
        at java.security.AccessController.doPrivileged(Native Method)
        at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
        at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:5
35)
        at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTranspor
t.java:790)
        at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport
.java:649)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec
utor.java:885)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor
.java:907)
        at java.lang.Thread.run(Thread.java:619)
        at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknow
n Source)
        at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
        at sun.rmi.server.UnicastRef.invoke(Unknown Source)
        at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
        at java.rmi.Naming.rebind(Unknown Source)
        at SampleServerImpl.main(SampleServerImpl.java:27)when i used just java -Djava.security.policy=policy.all SampleServerImpl
everythin was fine at the server .
it gave the output Server waiting...
but at the client i got these errors when i tried
java -Djava.rmi.server.codebase=file://d:/ SampleClient   or   java -Djava.security.policy=policy.all SampleClient
C:\>java -Djava.security.policy=policy.all SampleClient
Security Manager loaded
Exception in thread "main" java.security.AccessControlException: access denied (
java.net.SocketPermission 172.16.5.41:1099 connect,resolve)
        at java.security.AccessControlContext.checkPermission(Unknown Source)
        at java.security.AccessController.checkPermission(Unknown Source)
        at java.lang.SecurityManager.checkPermission(Unknown Source)
        at java.lang.SecurityManager.checkConnect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at java.net.Socket.<init>(Unknown Source)
        at java.net.Socket.<init>(Unknown Source)
        at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown S
ource)
        at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown S
ource)
        at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
        at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
        at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
        at sun.rmi.server.UnicastRef.newCall(Unknown Source)
        at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
        at java.rmi.Naming.lookup(Unknown Source)
        at SampleClient.main(SampleClient.java:16)172.16.5.41 was my server.the rmiregistry was running on the same machine on which the server was running

Similar Messages

  • ReferenceError: Error #1069: Property DSPriority not found on String and there is no default value.

    Hi All
                      This is the Error where i got from my sample chatting application...
    ReferenceError: Error #1069: Property DSPriority not found on String and there is no default value.
    at mx.messaging::Producer/handlePriority()[E:\dev\4.x\frameworks\projects\rpc\src\mx\messagi ng\Producer.as:190]
    at mx.messaging::Producer/internalSend()[E:\dev\4.x\frameworks\projects\rpc\src\mx\messaging \Producer.as:169]
    at mx.messaging::AbstractProducer/send()[E:\dev\4.x\frameworks\projects\rpc\src\mx\messaging \AbstractProducer.as:561]
    at SampleMessagin/sendMessage()[D:\FlexJavaPrograms\SampleMessagin\src\SampleMessagin.mxml:2 9]
    at SampleMessagin/___SampleMessagin_Button2_click()[D:\FlexJavaPrograms\SampleMessagin\src\S ampleMessagin.mxml:74]
                        this is the code
    <?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"
          currentState="{st}"
          creationComplete="consumer.subscribe()">
    <fx:Script>
      <![CDATA[
       import mx.messaging.events.MessageEvent;
       import mx.messaging.messages.AsyncMessage;
       import mx.messaging.messages.IMessage;
       import mx.modules.IModule;
       import mx.states.State;
       [Bindable]
       public var st:String="";
       public function changeStateHandler(event:Event):void
        st = "Login"
       //send message throug this method
       protected function sendMessage():void
        var msg:IMessage = new AsyncMessage();
        msg.headers = uname.text;
        msg.body = sendText.text;
        producer.send(msg);
        sendText.text = " ";
      //message  Handler  
       protected function consumer_messageHandler(event:MessageEvent):void
        // TODO Auto-generated method stub
        var resp:IMessage = event as IMessage;
        dispText.text = resp.headers.toString()+" :: "+resp.body.toString()+"\n";
      ]]>
    </fx:Script>
    <fx:Declarations>
      <s:Producer id="producer"
         destination="chat"/>
      <s:Consumer id="consumer"
         destination="chat"
         message="consumer_messageHandler(event)"/>
      </fx:Declarations>
    <s:states>
      <s:State name="State1"/>
      <s:State name="Login"/>
    </s:states>
    <s:Panel x="246" y="137" width="366" height="200" title="Login Here" includeIn="State1">
      <mx:HBox horizontalCenter="2" verticalCenter="-30">
       <s:Label text="Enter UR Name"/>
       <s:TextInput id="uname"/>
       <s:Button id="login" label="Login" click="changeStateHandler(event)"/>
      </mx:HBox>
    </s:Panel>
    <s:Panel includeIn="Login" x="327" y="78" width="353" height="369"  title="Welcome:{uname.text}">
      <s:TextArea x="6" y="11" height="222" width="335" id="dispText"/>
      <s:TextArea x="10" y="241" height="85" width="258" id="sendText"/>
      <s:Button x="276" y="241" label="Send" height="76" click="sendMessage()"/>
    </s:Panel>
    </s:Application>
    and my messaging-config.xml is as follows
                 <?xml version="1.0" encoding="UTF-8"?>
    <service id="message-service"
        class="flex.messaging.services.MessageService">
        <adapters>
            <adapter-definition id="actionscript" class="flex.messaging.services.messaging.adapters.ActionScriptAdapter" default="true" />
            <!-- <adapter-definition id="jms" class="flex.messaging.services.messaging.adapters.JMSAdapter"/> -->
        </adapters>
        <default-channels>
            <channel ref="my-polling-amf"/>
        </default-channels>
        <destination id="chat"/>
    </service>
                      can any one help me what is the error present here.............
                         why it is showing error .. am i wrote anything wrong in this code .. please help me....

    I'm not the expert on this topic, but I think this line:
    msg.headers = uname.text;
    ...is throwing the error. Look into how to properly construct the headers for the message. They should be in name/value pairs.

  • Itunes wont open at all, error message : quicktime was not found .... please reinstall ... i did that but no luck this only seems to have happened since the 10.4 update, im on windows 7 ..

    itunes wont open at all, error message : quicktime was not found .... please reinstall ... i did that but no luck this only seems to have happened since the 10.4 update, im on windows 7 ..

    Can you start QuickTime on your computer?
    You'll probably have to search for the Windows Installer Cleanup Utility and use it to remove QuickTime Player and iTunes. Then download and install the iTunes again.

  • I get error message''one file not found'' when tring to sync Ipod Nano 6th gen to I tunes. Help

    I get error message''one file not found'' when tring to sync Ipod nano 6th gen to Itunes. Help

    See:
    iTunes cannot sync... apps not determined installed on...: Apple Support Communities
    installed apps could not be determined...: Apple Support Communities

  • Report Generation Toolkit (Word) : How to use correctly bookmark and cross-reference without "Error! Reference source not found"

    Hi,
    I try to generate a report using a template. In my template I use some cross-reference to refer to one bookmark. For exemple in the first page I created a bookmark for my name and in the header I created a cross-reference refer to my name. The problems is when I run my VI the bookmark actualise perfectly but the cross-reference refer to the bookmark can't actualise with the same value and generates an error : "Error! Reference source not found".
    Can somebody help me please!
    Nki
    Solved!
    Go to Solution.
    Attachments:
    01.jpg ‏72 KB

    Hi,
    When i create the word template, the bookmaks and the cross-reference referred to the bookmark update correctely. The problem is when I try to change the bookmark using "report generation from template vi" the bookmark change but not the cross-reference and the error generated is "Error! Reference source not found". 
    I make coople reasherch and i think they have no solution for this because : "if the text in a heading referred to in a cross-reference is revised, the cross-reference to the heading may no longer work" (http://office.microsoft.com/en-us/word-help/troubleshoot-cross-references-HP005189368.aspx).
    To "resolved" this problem I create an other bookmark in the template who have the same value white the principle bookmark.   
    I use Labview 2011 and Micosoft office 2010.

  • Error(10,47): EntryFlowPageCO not found  in class oracle.apps.ap.oie.entry.

    Hi All,
    I extended a CO named IndusFinalReviewPageCOXX and I got the following error.
    Error(10,47): EntryFlowPageCO not found in class oracle.apps.ap.oie.entry.summary.webui.FinalReviewPageCO in class indus.oracle.apps.ap.oie.entry.summary.webui.IndusFinalReviewPageCOXX.
    I already drag the class file of EntryFlowPageCO in path myclasses\oracle\apps\ap\oie\entry\summary\webui
    and import the file. but the error remains same..after that I compile the class file of EntryFlowPageCO and found one more CO imports in EntryFlowPageCO. I drag class file of that CO also in appropriate path.. But still get the same error.
    Pls give me the solution ASAP.
    Thanks
    Amit Jaitly

    Amit,
    In the standard CO you can check that controller EntryFlowPageCO is not under myclasses\oracle\apps\ap\oie\entry\summary\webui.
    Its under oracle/apps/ap/oie/entry/webui so put the same under this directory structure.
    Regards,
    Gyan

  • Error 404: SRVE0190E: File not found when trying to access jsp

    I am using RAD (new to web dev) for some reason my app is unable to find .jsp's when they are not in the web content folder. I have a predefined package for my jsp's and when I run my servlet I get
    Error 404: SRVE0190E: File not found: /WEB-INF/classes/app/view/search.jsp
    now if I amend my URL in the servlet to "/search.jsp" and move the jsp to the web content folder, it works. I just don't understand why it cannot find the file when I put it in the package I created and link to it, but finds it just fine in the webcontent folder. Is there some unwritten rule JSP's MUST be in the webcontent folder? Because when i do that, then I have issues with my image links for the GUI (get red X's for all my images regardless of the fact they are linked properly.) Basically if I put my jsps where I want, look fine in design and preview, but the jsp isnt found when executed, if I move them to the web content folder the images no longer work but the jsps run. I am getting rather frustrated. Any help is appreciated.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    See also:
    *https://support.mozilla.org/kb/Clear+Recent+History
    Are you using cleanup software like CCleaner or other software that may corrupt the cache?
    You can try to delete the entire cache folder.<br />
    You can find the location of the cache folder on the about:cache page (open via the location bar, like a web page).
    You can check the <b>browser.cache.disk.enable</b> pref on the <b>about:config</b> page to verify that the disk cache is enabled (should be true).

  • Error 1308.Source file not found with 9.4.2 Admin Install point

    I'm including as much information in this post as possible to help narrow down my problem, so if it's too wordy I appologize.
    I've created an Admin install point for Acrobat 9 patching it up to Acrobat 9.4.2 using the following commands in a batch file:
    D:
    cd \Adobe\Acrobat\AcrobatPro9
    md \Adobe\Acrobat\AcrobatPro9AIP
    start /wait msiexec /a AcroPro.msi TARGETDIR=D:\Adobe\Acrobat\AcrobatPro9AIP /Liv D:\Adobe\Acrobat\AcrobatPro9AIP\install900.log /qn
    cd \Adobe\Acrobat\AcrobatPro9AIP
    start /wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcroProStdUpd910_T1T2_incr.msp /a AcroPro.msi TARGETDIR=D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP=1 /Liv install910.log /qn
    start /wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd912_all_incr.msp /a AcroPro.msi TARGETDIR=D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP=1 /Liv install912.log /qn
    start /wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd920_all_incr.msp /a AcroPro.msi TARGETDIR=D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP=1 /Liv install920.log /qn
    start /wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd930_all_incr.msp /a AcroPro.msi TARGETDIR=D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP=1 /Liv install930.log /qn
    start /wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd932_all_incr.msp /a AcroPro.msi TARGETDIR=D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP=1 /Liv install932.log /qn
    start /wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd933_all_incr.msp /a AcroPro.msi TARGETDIR=D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP=1 /Liv install933.log /qn
    start /wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd940_all_incr.msp /a AcroPro.msi TARGETDIR=D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP=1 /Liv install940.log /qn
    start /wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd941_all_incr.msp /a AcroPro.msi TARGETDIR=D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP=1 /Liv install941.log /qn
    start /wait msiexec /p D:\Adobe\Acrobat\AcrobatPro9\AcrobatUpd942_all_incr.msp /a AcroPro.msi TARGETDIR=D:\Adobe\Acrobat\AcrobatPro9AIP PATCHAIP=1 /Liv install942.log /qn
    I rename the folder "AcrobatPro9AIP" to reflect the current version (e.g. "Acrobat9.4.2"), copy the folder to my DFS, create an MST with the Customization Wizard, and then deploy with Group Policy.
    Before I deploy I always run a few test installations on two Windows XP 32-bit machines, and two Windows 7 64-bit workstations. I've been using this method to build my install point for the last 5 Adobe patches without a problem, but suddenly with version 9.4.2 my test workstations pop up with the following error during the installation via the standard installation method "msiexec /i acropro.msi TRANSFORMS=acropro.mst":
    I built my installation package for acrobat9.4.1, 9.4.0 and 9.3.3 exactly the same way and the installations did not have this error. The file in question "Adobe.Acrobat.Dependencies.manifest" does not exist in my 9.4.1, or 9.4.0 package folders, nor does it exist in the 9.4.2 folder. Any suggestions?

    I am having the same problem, all the relevant info was already covered in the "thewaker" post above.   I too have made a script to make a Admin install with patches up to 9.4.2.  The script worked for 9.3.3 but when I remade the AdobeAIP for 9.4.2, I too got this error when installing it, even manually.  (Error 1308.Source file not found.  Adobe.Acrobat.Dependencies.manifest ) Running on Windows 7 32bit.
    Here is my Script.
    C:
    cd\AcroBatPro9
    md \AcrobatPro9AIP
    start /wait msiexec /a AcroPro.msi TARGETDIR=C:\AcrobatPro9AIP /Liv c:\AcrobatPro9AIP\install900.log /qn
    cd \AcrobatPro9AIP
    start /wait msiexec /p c:\AcrobatPro9\AcroProStdUpd910_T1T2_incr.msp /a AcroPro.msi TARGETDIR=C:\AcrobatPro9AIP PATCHAIP=1 /Liv install910.log /qn
    start /wait msiexec /p c:\AcrobatPro9\AcrobatUpd912_all_incr.msp /a AcroPro.msi TARGETDIR=C:\AcrobatPro9AIP PATCHAIP=1 /Liv install912.log /qn
    start /wait msiexec /p c:\AcrobatPro9\AcrobatUpd920_all_incr.msp /a AcroPro.msi TARGETDIR=C:\AcrobatPro9AIP PATCHAIP=1 /Liv install920.log /qn
    start /wait msiexec /p c:\AcrobatPro9\AcrobatUpd930_all_incr.msp /a AcroPro.msi TARGETDIR=C:\AcrobatPro9AIP PATCHAIP=1 /Liv install930.log /qn
    start /wait msiexec /p c:\AcrobatPro9\AcrobatUpd932_all_incr.msp /a AcroPro.msi TARGETDIR=C:\AcrobatPro9AIP PATCHAIP=1 /Liv install932.log /qn
    start /wait msiexec /p c:\AcrobatPro9\AcrobatUpd933_all_incr.msp /a AcroPro.msi TARGETDIR=C:\AcrobatPro9AIP PATCHAIP=1 /Liv install933.log /qn
    start /wait msiexec /p c:\AcrobatPro9\AcrobatUpd940_all_incr.msp /a AcroPro.msi TARGETDIR=C:\AcrobatPro9AIP PATCHAIP=1 /Liv install940.log /qn
    start /wait msiexec /p c:\AcrobatPro9\AcrobatUpd942_all_incr.msp /a AcroPro.msi TARGETDIR=C:\AcrobatPro9AIP PATCHAIP=1 /Liv install942.log /qn
    I did notice though that the "thewaker" has added AcrobatUpd941_all_incr.msp to his script, which is a security update. Which may be "a" problem, but I don’t think this is related to the problem we are having.
    Administrative deployment
    Administration Installation Point (AIP) deployments must not apply a quarterly update AIP in which a security update was the most recently applied update. Because a quarterly update includes the changes implemented in all recent security updates, the quarterly update forcibly bypasses those updates entirely. To deploy a quarterly update from an AIP, create a AIP which includes only quarterly updates as follows:
        Acceptable:      Acrobat 9.0.0 -> 9.1.0 (Quarterly) -> 9.1.2 (Quarterly) -> 9.2.0 (Quarterly) -> 9.3.0 (Quarterly) -> 9.3.2 (Quarterly) -> 9.3.3 (Quarterly) ->  9.4.0 (Quarterly) -> 9.4.1 (Security)
        Acceptable:      Acrobat 9.0.0 -> 9.1.0 (Quarterly) -> 9.1.2 (Quarterly) -> 9.2.0 (Quarterly) -> 9.3.0 (Quarterly) -> 9.3.2 (Quarterly) -> 9.3.3 (Quarterly) -> 9.4.0 (Quarterly) -> 9.4.2 (Quarterly)
        Unacceptable:  Acrobat 9.0.0 -> 9.1.0 (Quarterly) -> 9.1.2 (Quarterly) -> 9.2.0 (Quarterly) -> 9.3.0 (Quarterly) -> 9.3.2 (Quarterly) -> 9.3.3 (Quarterly) -> 9.4.0 (Quarterly) -> 9.4.1 (Security) -> 9.4.2 (Quarterly)
    Anyway.. Any help with this would be helpful as I would like to deploy it soon.
    Thanks.

  • Prompted to upgrade iTunes on computer. Won't let me and get error message MSVVR80.dll not found. Attempted to reinstall, won't let me. Can you have iTunes and iCloud on the same computer?

    Prompted to upgrade iTunes on computer. Won't let me and get error message MSVVR80.dll not found. Attempted to reinstall, won't let me. Can you have iTunes and iCloud on the same computer?

    Try following the instructions of tt2 in https://discussions.apple.com/thread/5822086

  • Error 1046: Type was not found or was not a compile-time constant: Component Event.

    Hi Everyone..
    I am getting an Error 1046: Type was not found or was not a compile-time constant: Component Event.
    The ComponentEvent class has been imported,and also the event handling code is there. I am not sure what else is wrong, hope somebody can advise me. Thanks. The code is below, the point where the error occurs as indicated by the compiler has been highlighted.
    package 
    import flash.display.Sprite;
    import flash.media.Camera;
    import flash.media.Microphone;
    import flash.media.Video;
    import fl.controls.TextArea;
    import fl.controls.Button;
    import fl.controls.TextInput;
    import flash.events.SyncEvent;
    import flash.events.MouseEvent;
    import flash.events.FocusEvent;
    import flash.net.SharedObject;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    import flash.events.NetStatusEvent;
    import flash.events.FocusEvent;
    import flash.events.ComponentEvent;
    public class VideoChat extends Sprite
      private var button:Button;
      private var text_so:SharedObject; 
      private var textArea:TextArea;
      private var textInput:TextInput;
      private var chatName:TextInput; 
      private var nc:NetConnection;
      private var nsOut:NetStream;
      private var nsIn:NetStream;
      private var rtmpNow:String;
      private var msg:Boolean; 
      private var cam:Camera;
      private var mic:Microphone;
      private var vid:Video;
      public function VideoChat ()
       //Set up UI
       textArea = new TextArea();
       textArea.setSize(500,280);
       textArea.move(20,54);
       addChild(textArea);
       textInput = new TextInput();
       textInput.setSize(500,24);
       textInput.move(20,340);
       textInput.addEventListener(ComponentEvent.ENTER,checkKey);
       addChild(textInput);
       button = new Button();
       button.width=50;
       button.label="Send";
       button.move(20,370);
       button.addEventListener(MouseEvent.CLICK, sendMsg);
       addChild(button);
       chatName = new TextInput;
       chatName.setSize (100,24);
       chatName.move (80,370);
       chatName.text="<Enter Name>";
       chatName.addEventListener (FocusEvent.FOCUS_IN, cleanName);
       addChild(chatName); 
       //Connect
       rtmpNow="rtmp:/VideoChat ";  
       nc=new NetConnection;
       nc.connect (rtmpNow);
       nc.addEventListener(NetStatusEvent.NET_STATUS,doSO);
       cam = Camera.getCamera();
       mic=Microphone.getMicrophone();
       //Camera Settings
       cam.setKeyFrameInterval(15);
       cam.setMode (240, 180, 15, false);
       cam.setMotionLevel(35,3000);
       cam.setQuality(40000 / 8,0);
       //Microphone Settings
       mic.gain = 85;
       mic.rate=11;
       mic.setSilenceLevel (25,1000);
       mic.setUseEchoSuppression (true);
       //Video Setup
       vid=new Video(cam.width, cam.height);
       addChild (vid);
       vid.x=10, vid.y=20;  
       //Attach local video and camera
       vid.attachCamera(cam);  
      private function doSO(e:NetStatusEvent):void
       good=e.info.code == "NetConnection.Connect.Success";
       if(good)
        //Set up shared object
        text_so=SharedObject.getRemote("test", nc.uri, false);
        text_so.connect (nc);
        text_so.addEventListener(SyncEvent.SYNC, checkSO);
      private function checkSO(e:SyncEvent):void
       for (var chung:uint; change<e.changeList.length; chng++)
        switch(e.chageList[chng].code)
         case "clear":
          break;
         case "success":
          break;
         case "change":
          textArea.appendText (text_so.data.msg + "\n");
          break;
      private function cleanName(e:FocusEvent): void
       chatName.text="";
      private function sendMsg(e:MouseEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      private function checkKey (e:ComponentEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      //Create NetStream instances
      private function checkConnect  (e:NetStatusEvent):void
       msg=e.info.code == "NetConnection.Connect.Success";
       if(msg)
        nsOut=new NetStream(nc);
        nsIn=new NetStream(nc);
        //NetStream
        nsOut.attachAudio(mic);
        nsOut.attachCamera(cam);
        nsOut.publish("camstream");
        nsIn.play("camstream");

    Hi Guys...
    I have found out what is wrong. I was importing the wrong package the correct one should have been:
    import fl.events.ComponentEvent;
    instead of
    import flash.events.ComponentEvent;
    I hope this is helpful for anyone caught in a simillar situation as me...Thanks..

  • Trying to install itunes on win 8.1.  keep getting error apple application support not found.  asks me to uninstall and install itunes.  i tried several times and keep getting same error.

    trying to install itunes on win 8.1.  keep getting error apple application support not found.  asks me to uninstall and install itunes.  i tried several times and keep getting same error.

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR suitable for your PC (there's a 32-bit Windows version and a 64-bit Windows version):
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, see if iTunes will launch without the error now.
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • ERROR: exception symbol "09732" not found in resource file

    I am trying to get a client to work with workflow services. I get 'ERROR: exception symbol "09732" not found in resource file' in the output when the method queryTasks is excecuted.
    Jdeveloper 10.1.3.4 and SOA Suite 10.1.3.3.0
    Any ideas?
    Eydun
    ------------------ program ---------------------
    package project1;
    //import com.oracle.services.bpel.task.Task;
    import java.util.ArrayList;
    import oracle.bpel.services.workflow.client.IWorkflowServiceClient;
    import oracle.bpel.services.workflow.client.WorkflowServiceClientFactory;
    import oracle.bpel.services.workflow.query.ITaskQueryService;
    import oracle.bpel.services.workflow.verification.IWorkflowContext;
    import java.util.List;
    import oracle.bpel.services.workflow.repos.Ordering;
    import oracle.bpel.services.workflow.repos.Predicate;
    import oracle.bpel.services.workflow.repos.TableConstants;
    import oracle.bpel.services.workflow.task.ITaskService;
    import oracle.bpel.services.workflow.task.model.Task;
    public class Class1 {
    public Class1() {
    public void TryTask() {
    try {
    //Create JAVA WorflowServiceClient
    IWorkflowServiceClient wfSvcClient =
    WorkflowServiceClientFactory.getWorkflowServiceClient(WorkflowServiceClientFactory.WSIF_CLIENT);
    //Get the task query service
    ITaskQueryService querySvc = wfSvcClient.getTaskQueryService();
    //Login as jstein
    IWorkflowContext ctx = querySvc.authenticate("jstein",
    "welcome1",
    null, //Use default realm
    null);//Not logging in on behalf of another user
    //Set up list of columns to query
    List queryColumns = new ArrayList();
    queryColumns.add("TASKID");
    queryColumns.add("TASKNUMBER");
    queryColumns.add("TITLE");
    queryColumns.add("OUTCOME");
    //Create a predicate to query tasks that have a null outcome
    String outcome = null;
    Predicate predicate = new Predicate(TableConstants.WFTASK_OUTCOME_COLUMN,
    Predicate.OP_EQ,
    outcome);
    //Create an ordering to order tasks by task number
    Ordering ordering = new Ordering(TableConstants.WFTASK_TASKNUMBER_COLUMN
    ,true //Ascending order
    ,false //Nulls last
    //Query a list of tasks assigned to jstein
    List tasks = querySvc.queryTasks(ctx,
    queryColumns,
    null, //Do not query additional info
    ITaskQueryService.ASSIGNMENT_FILTER_MY,
    null, //No keywords
    null, //predicate, //Only tasks with no outome set
    ordering, //Order by ascending task number
    0, //Do not page the query result
    0);
    //Get the task service
    ITaskService taskSvc = wfSvcClient.getTaskService();
    //Loop over the tasks, outputting task information, and approving tasks
    for(int i = 0 ; i < tasks.size() ; i ++)
    Task task = (Task)tasks.get(i);
    int taskNumber = task.getSystemAttributes().getTaskNumber();
    String title = task.getTitle();
    String taskId = task.getSystemAttributes().getTaskId();
    //Set the outcome
    taskSvc.updateTaskOutcome(ctx,taskId,"APPROVED");
    System.out.println("Task #"+taskNumber+" ("+title+") is APPROVED");
    catch (Exception e)
    //Handle any exceptions raised here...
    System.out.println("Caught workflow exception: "+e.getMessage());
    public static void main(String[] args) {
    Class1 class1 = new Class1();
    class1.TryTask();
    ------------------- output ---------------------
    C:\java\jdk1.6.0_07\bin\javaw.exe -client -classpath C:\jdev11work\eej\mywork\Application3\Project1\classes;C:\oracle\jdev10134bpellibs\bpel\lib\bpm-infra.jar;C:\oracle\jdev10134bpellibs\bpel\lib\orabpel-common.jar;C:\oracle\jdev10134bpellibs\bpel\lib\orabpel-thirdparty.jar;C:\oracle\jdev10134bpellibs\j2ee\home\jazncore.jar;C:\oracle\jdev10134bpellibs\j2ee\home\oc4jclient.jar;C:\oracle\jdev10134bpellibs\lib\xml.jar;C:\oracle\jdev10134bpellibs\lib\xmlparserv2.jar;C:\oracle\jdev10134bpellibs\bpel\system\services\config;C:\oracle\jdev10134bpellibs\webservices\lib\orasaaj.jar;C:\oracle\jdev10134bpellibs\webservices\lib\soap.jar;C:\oracle\jdev10134bpellibs\bpel\system\services\lib\bpm-services.jar;C:\oracle\jdev10134bpellibs\bpel\system\services\schema;C:\oracle\jdev10134bpellibs\bpel\lib\olite40.jar;C:\oracle\jdev10134bpellibs\jdbc\lib\ojdbc14.jar;C:\oracle\jdev10134bpellibs\bpel\lib\orabpel.jar;C:\oracle\jdev10134bpellibs\wsclient_extended.jar project1.Class1
    <::> WorkflowService:: TaskQueryService.authenticate(): called. user = jstein identityContext = null onBehalfOfUser = null
    <::> WorkflowService:: VerificationService.authenticateUser: attempting for user = jstein identityContext = null
    <ISConfiguration::load> Found Configuration=Configuration: realmName=jazn.com properties:{} has 1 providers:
    <ISConfiguration::load>      Provider: service=Identity providerType=JAZN providerName=XML Provider properties:{usersPropertiesFile=users-properties.xml}
    <ISConfiguration::load>      
    <ISConfiguration::validate> Validate configuration=Configuration: realmName=jazn.com properties:{} has 1 providers:
    <ISConfiguration::validate>      Provider: service=Identity providerType=JAZN providerName=XML Provider properties:{usersPropertiesFile=users-properties.xml}
    <ISConfiguration::validate>      
    <ISConfiguration::save> Save IdentityService configuration file into /C:/oracle/jdev10134bpellibs/bpel/system/services/config/is_config.xml
    <ServiceFactory::getService> Provider type is JAZN
    <ServiceFactory::getService> JAZN's ProviderType=XML
    <XMLIdentityService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLAuthenticationService::init> Load provider initialization complete
    <XMLAuthorizationService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLAuthorizationService::init> Load provider initialization complete
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService::authenticateUser():: begin
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: begin
    <BPMServiceJAZNBase::getRealm> Realm=[Realm: jazn.com]
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: end
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService:: call authenticate
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService:: user is authenticated!
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService::authenticateUser():: end
    <ServiceFactory::getService> Provider type is JAZN
    <ServiceFactory::getService> JAZN's ProviderType=XML
    <XMLIdentityService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLIdentityService::init> Load provider initialization complete
    <XMLAuthenticationService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLAuthenticationService::init> Load provider initialization complete
    <XMLAuthorizationService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLAuthorizationService::init> Load provider initialization complete
    <BPMAuthorizationServiceImpl::lookupUser> BPMAuthorizationServiceImpl::lookupUser():: begin, userName=jstein
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: begin
    <BPMServiceJAZNBase::getRealm> Realm=[Realm: jazn.com]
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: end
    <BPMUserImpl::<init>> User=jstein was created
    <BPMAuthorizationServiceImpl::lookupUser> User is found, user=RealmUser: jstein
    <BPMIdentityImpl::getActions> BPMIdentityImpl::getActions()
    <BPMIdentityImpl::getAllGrantedRealmRoles> Identity has the following granted realmRoles=[RealmRole: BPMWorkflowReassign, RealmRole: BPMWorkflowSuspend, RealmRole: BPMAnalyst]
    <RoleProperties::load> Resource oracle/tip/pc/services/identity/role.properties is loaded, s_properties={BPMWorkflowSuspend=SUSPEND,RESUME, BPMWorkflowAdmin=ADMIN, BPMWorkflowReassign=REASSIGN, BPMPublic=VIEW_WORK_LIST,ACQUIRE,WITHDRAW,ESCALATE,ERROR,PUSH_BACK,RENEW,RELEASE,REQUEST_INFO,SUBMIT_INFO,CUSTOM,VIEW_TASK_HISTORY,VIEW_SUB_TASKS,UPDATE,ADHOC_ROUTE,OUTCOME_UPDATE_ROUTE, BPMSystemAdmin=, BPMWorkflowViewHistory=VIEW_TASK_HISTORY,VIEW_PROCESS_HISTORY, BPMAnalyst=VIEW_REPORTS}
    <BPMIdentityImpl::getActions> Identity has the following roles:[BPMWorkflowReassign, BPMWorkflowSuspend, BPMAnalyst]
    <BPMIdentityImpl::getActions> Role: BPMWorkflowReassign
    <BPMIdentityImpl::getActions> Actions: [OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, ACQUIRE, ADHOC_ROUTE, RENEW, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, ERROR, VIEW_WORK_LIST, RELEASE, ESCALATE, REASSIGN]
    <BPMIdentityImpl::getActions> Role: BPMWorkflowSuspend
    <BPMIdentityImpl::getActions> Actions: [RESUME, OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, SUSPEND, ACQUIRE, ADHOC_ROUTE, RENEW, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, ERROR, VIEW_WORK_LIST, RELEASE, ESCALATE]
    <BPMIdentityImpl::getActions> Role: BPMAnalyst
    <BPMIdentityImpl::getActions> Actions: [OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, ACQUIRE, ADHOC_ROUTE, RENEW, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, ERROR, VIEW_WORK_LIST, RELEASE, ESCALATE, VIEW_REPORTS]
    <BPMIdentityImpl::getActions> Identity has the following actions:[RESUME, OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, SUSPEND, ACQUIRE, RENEW, ADHOC_ROUTE, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, VIEW_WORK_LIST, ERROR, ESCALATE, RELEASE, REASSIGN, VIEW_REPORTS]
    <BPMPrincipalImpl::getAttribute> Attribute=languagePreference is not set. Populate principal=jstein
    <::> WorkflowService:: VerificationService.authenticateUser: successful for user = jstein identityContext = null
    <::> WorkflowService:: TaskQueryService.authenticate(): completed. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ==
    <::> VerificationService.createWorkflowContext: Request NOT authenticated by WS-Security framework
    <BPMAuthorizationServiceImpl::lookupUser> BPMAuthorizationServiceImpl::lookupUser():: begin, userName=jstein
    <BPMUserImpl::<init>> User=jstein was created
    <BPMAuthorizationServiceImpl::lookupUser> User is found, user=RealmUser: jstein
    <BPMPrincipalImpl::getAttribute> Attribute=languagePreference is not set. Populate principal=jstein
    <::> WorkflowService:: TaskQueryService.queryTasks(): called. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ== ctxUser = jstein displayColumns = TASKID, TASKNUMBER, TITLE, OUTCOME optionalInformation = assignmentFilter = My keywords = null predicate = null ordering = wfn.taskNumber ASC startRow = 0 endRow = 0
    <::> WorkflowService:: TaskQueryService.getCombinedPredicate(): called. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ== ctxUser = jstein assignmentFilter = My keywords = null predicate = null
    <::> WorkflowService:: TaskQueryService.getAssignmentFilterPredicate(): called. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ== ctxUser = jstein assignmentFilter = My
    <::> WorkflowService:: TaskQueryService.getAssignmentFilterPredicate(): completed. assignmentFilterPred = ((wfn.taskId=wfa.taskId AND wfa.isGroup =? AND ( wfa.assignee IN (?))) OR ( ( wfn.originalAssigneeUser IN (?)) AND wfn.taskId=wfa.taskId) AND wfn.isGroup =?) AND ( wfn.identityContext IS NULL )
    <::> WorkflowService:: TaskQueryService.getCombinedPredicate(): completed. combinedPredicate = ((wfn.taskId=wfa.taskId AND wfa.isGroup =? AND ( wfa.assignee IN (?))) OR ( ( wfn.originalAssigneeUser IN (?)) AND wfn.taskId=wfa.taskId) AND wfn.isGroup =?) AND ( wfn.identityContext IS NULL )
    ERROR: exception symbol "09732" not found in resource file.
    <::> ORABPEL-09732
    <::>
    <::>
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getNonTransactionService(PersistencyDriver.java:231)
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getInstance(PersistencyDriver.java:152)
    <::>      at oracle.bpel.services.workflow.query.impl.TaskQueryService.queryTasks(TaskQueryService.java:213)
    <::>      at oracle.bpel.services.workflow.query.impl.TaskQueryServiceWSIF.queryTasks(TaskQueryServiceWSIF.java:172)
    <::>      at oracle.bpel.services.workflow.query.client.TaskQueryServiceWSIFClient.queryTasks(TaskQueryServiceWSIFClient.java:66)
    <::>      at oracle.bpel.services.workflow.query.client.AbstractDOMTaskQueryServiceClient.queryTasks(AbstractDOMTaskQueryServiceClient.java:180)
    <::>      at project1.Class1.TryTask(Class1.java:55)
    <::>      at project1.Class1.main(Class1.java:91)
    <::> Caused by: java.lang.NullPointerException
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getDatasourceName(PersistencyDriver.java:177)
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.initNonTransactionDataSource(PersistencyDriver.java:198)
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getNonTransactionService(PersistencyDriver.java:224)
    <::>      ... 7 more
    <2008-10-14 23:59:00,952> <ERROR> <oracle.bpel.services> <::>
    java.lang.NullPointerException
         at oracle.bpel.services.workflow.repos.PersistencyDriver.getDatasourceName(PersistencyDriver.java:177)
         at oracle.bpel.services.workflow.repos.PersistencyDriver.initNonTransactionDataSource(PersistencyDriver.java:198)
         at oracle.bpel.services.workflow.repos.PersistencyDriver.getNonTransactionService(PersistencyDriver.java:224)
         at oracle.bpel.services.workflow.repos.PersistencyDriver.getInstance(PersistencyDriver.java:152)
         at oracle.bpel.services.workflow.query.impl.TaskQueryService.queryTasks(TaskQueryService.java:213)
         at oracle.bpel.services.workflow.query.impl.TaskQueryServiceWSIF.queryTasks(TaskQueryServiceWSIF.java:172)
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceWSIFClient.queryTasks(TaskQueryServiceWSIFClient.java:66)
         at oracle.bpel.services.workflow.query.client.AbstractDOMTaskQueryServiceClient.queryTasks(AbstractDOMTaskQueryServiceClient.java:180)
         at project1.Class1.TryTask(Class1.java:55)
         at project1.Class1.main(Class1.java:91)
    Caught workflow exception:
    Process exited with exit code 0.

    Although the versions 10.1.3.4 and 10.1.3.3 are close and should be able to use 10.1.3.4 JDev for most 10.1.3.3 development, the human tasks is the one exception. 10.1.3.3 had a few bugs fixed therefore the jar file used in JDev 10.1.3.4 may not be compatible with 10.1.3.3.
    I would either use JDev 10.1.3.3 or upgrade SOA Suite to 10.1.3.4
    cheers
    James

  • Error 1311, Source file not found, measurementstudio5.cab

    I'm installing Measurement Studio for Visual Studio 6.0 and I encounter: Error 1311 Source file not found, measurementstudio5.cab
    Any ideas?

    Hello David,
    I am also experiencing an Error 1311, but during the install of LabVIEW 2012 and 2013 (64-Bit).  
    Win7 x64, Acer laptop.  
    First problem I encounter is: 
    After putting in my info and agreeing to the licence agreements, the first error pops up says the followign:
    NI LabVIEW Run-Time Engine 2011 SP1: 
    Error 1310.  Error writing to file: Crogram Files (x86)\Internet Explorer\Plugins\LV2011ActiveXcontrol.dll.  Verify that you have access to that directory.  
    Options: Abort/Retry/Ignore
    Things I've tried:
    Retry button--never get's past the error.  
    Uninstalling Internet Explorer and restarting--Still assumes that it's there, and error remains.  
    Reinstalling updated Internet Explorer and restarting -- no change.  
    Checking the directory file and verifying that permissions for every user and System is set to full control -- No change.  
    The only way to get past this error seems to be to press the Ignore button.  
    A few moments after ignoring the first error, another error pops up.  It says: 
    NI Labview Run-Time Engine 2011 SP1: 
    Error 1311.  Source file not found: C:\Users\[my U/N]\Desktop\National Instruments Downloads\LabVIEW 64-bit\2013\Products\LabVIEWruntime_mft.cab.    Verify that the file exists and that you can access it.  
    Options: Retry/Cancel
    Things I've tried: 
    Verifying that the file exists (it does) and that I have access to it (I do) and checking the permissions to verify full control --no changes.  
    Retry -- does nothing.  
    Cacel --aborts the installation and indicates instal failure.  
    Can you help me with this?  I've installed LV on two other computers and they worked fine, but my laptop simply doesn't want to take the install.  
    Thank you in advance, 
    Thomas

  • ERROR 1311: Source File Not Found. Data1.cab

    Hi
    Trying to install upgrade Acrobat Pro XI on Server 2003.  We already have Acrobat Pro 9 installed. 
    Install starts and is halted midway by message "Error 1311: Source File not found.  Data1.cab. Verify that the file exists and that you can access it."
    Heeeelp me please.  Thanks

    See the following help document:
    Errors 1311, 1335, 2350 :
    http://helpx.adobe.com/creative-suite/kb/install-error-1311-1335-or.html

  • Error message: Page Anchor not found: 188 when exporting to ePub

    I have been working on exporting a book from InDesign CC 2014 to reflowable ePub format. The book is about 250 pages long with numerous photographs, all of which are anchored objects. I am now able to export a good-looking ePub file, but I keep getting just this one error message, Page Anchor not found: 188, followed by the pathname for the file.  I don't see a problem at page 188, but I'm not very experienced with InDesign.  I have done several searches, and I'm not sure exactly what a "page anchor" is. Can anyone help me figure this out?  Can I just ignore this error.  Thanks.

    I had similar problems which were resolved when I anchored images only within text with styles that would not be included in the TOC, and also made sure there were no blank paragraphs (unnecessary hard returns) with a style that would be included in the TOC. Hope that helps.

Maybe you are looking for

  • Failing hard drive or ??? of FOUR new laptop?

    FOUR brand-new Toshiba Satellite C50 laptops - Windows 7 Steps taken:  Setup  Uninstall Norton Security Essentials trial  Install, update, and scan with Microsoft Security Essentials  Uninstall Norton Backup trial and Norton Anti-Theft  Download, ins

  • Bug in Mailman version 2.1.9

    Bug in Mailman version 2.1.9 We're sorry, we hit a bug! Please inform the webmaster for this site of this problem. Printing of traceback and other system information has been explicitly inhibited, but the webmaster can find this information in the Ma

  • When I download a song from iPad or iPhone, the song does not make it to my Mac. Anyone else have similar problem? Solution? Thanks.

    When  I download a song from my iOS device, the song does not show up on my Mac.  I checked the trouble shooting suggestions-but still no luck.   Any suggestions? Thanks.

  • Dynamically change sql query (from statement)

    Hi all, Is it possible to change the 'from statement' dynamically in report 6i? I have 3 identical tables with different names (each to collect data in different area) and I want to be able to dynamically change the sql query at run time so I can use

  • Fatal error in recovery manager

    Hi, I am trying to restore my DB for disaster recovery, I have taken a backup earlier in flash_recovery_area with controlfile autobackup on. I have successfully restored spfile and controlfiles, but when I am running restore database, rman is crashin