Tutorial typos affect success of application

Hello,
I'm working through the Oracle® Application Development Framework Tutorial for Forms/4GL Developers 10g Release 3 (10.1.3) (http://www.oracle.com/technology/obe/ADFBC_tutorial_1013/ADFBC_tutorial.pdf), and I keep running into typos that are affecting what I'm trying to do. For example, on page 6-3 of the tutorial, for ServiceRequestImpl.java, this code is given:
<pre>
public Number getMaxHistoryLineNumber() {
RowSet hist = (RowSet)getServiceHistory();
Number maxLine = new Number(0);
while (hist.hasNext()) {
Number curLine = (Number) hist.next().getAttribute("LineNo");
if (curLine.compareTo(maxLine) > 0) {
maxLine = curLine;
hist.closeRowSet();
return maxLine;
</pre>
The second line is wrong:
<pre>
RowSet hist = (RowSet)getServiceHistory();
</pre>
getServiceHistories() is the correct method name.
Also, on page 6-4 of the tutorial, the code for overriding "create" in ServiceHistoryImpl.java is given:
<pre>
protected void create(AttributeList nameValuePair) {
super.create(nameValuePair);
// Add these lines below
setLineNo(getServiceRequest().getMaxHistoryLineNumber().add(1));
setCreatedBy((Number)getDBTransaction().getSession().
getUserData().get("CurrentUserId"));
boolean isTech =
getDBTransaction().getSession().isUserInRole("technician");
setSvhType(isTech ? "Technician" : "Customer");
</pre>
But the 4th line above is wrong:
<pre>
setLineNo(getServiceRequest().getMaxHistoryLineNumber().add(1));
</pre>
getServiceRequests() is the correct method name.
These are not the only mistakes by far, very frequently I am seeing incorrect variable and other names from place to place in the document. For example, a variable is called "x" here, but there it's called "xs" or some other typo. I can see where someone going into this with little Java or other programming knowledge would have an extremely hard time of this.
Please revisit the tutorials and correct these errors, this is very frustrating!
Thank you,
Teresa Robinson

I am so sorry, I didn't realize I was in the Forms forum. I don't know how this got here; my brain must be tired after learning so much from the tutorial.

Similar Messages

  • Tried to follow the second video tutorial with no success

    Hi,
    I tried to run the second video tutorial (Your Second AFCS Application) on LCCS SDK Navigator with no success.
    VideoChat.mxml:
    <?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" xmlns:rtc="AfcsNameSpace">
        <!-- Place non-visual elements (e.g., services, value objects) here -->
        <!--<rtc:ConnectSessionContainer id="cSession" autoLogin="true" width="100%"
        height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room">
        -->
        <!--
        <rtc:ConnectSessionContainer width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room4">
        -->
        <rtc:ConnectSessionContainer id="cSession" autoLogin="false" width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room4" creationComplete="showLogin()">
            <rtc:authenticator>
                <rtc:AdobeHSAuthenticator userName="Guest"/>
            </rtc:authenticator>
            <mx:HBox width="100%" height="95%">
                <mx:VBox width="25%" height="100%">
                    <rtc:WebCamera width="100%" height="100%"/>   
                </mx:VBox>
                <rtc:SimpleChat width="75%" height="100%"/>               
            </mx:HBox>
        </rtc:ConnectSessionContainer>
        <fx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                protected function showLogin():void {
                    var login:LoginDialog2 = new LoginDialog2();
                    login.connectSession = cSession;
                    PopUpManager.addPopUp(login, this);
                    PopUpManager.centerPopUp(login);
            ]]>
        </fx:Script>
    </s:Application>
    LoginDialog2.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Panel xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/mx" title="Enter Guest Name" width="274" height="116">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import com.adobe.rtc.session.IConnectSession;
                import mx.managers.PopUpManager;
                [Bindable]
                public var connectSession:IConnectSession;
                protected function login():void {
                    connectSession.authenticator.userName = userNameField.text;
                    connectSession.login();
                    PopUpManager.removePopUp(this);
            ]]>
        </fx:Script>
            <s:TextInput width="234" id="userNameField" enter="login()" x="10" y="10"/>
            <s:Button label="Ok" click="login()" x="173" y="43" width="69"/>
    </s:Panel>
    Basically, I pressed the Debug button and all I am getting is:
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 646,462 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 370,463 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 2,292,131 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 648,239 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 441,686 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 1,429,050 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 323,414 bytes after decompression
    I am not getting any message related to connection.  Any idea of what's wrong?
    Thanks,
    Kevin

    I got the following error:
    Description    Resource    Path    Location    Type
    Parse error: '<fx:Script>' is not allowed to follow '<fx:Declarations>'.    LoginDialog2.mxml    /VideoChat/src    line 9    Flex Problem
    If I did:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Panel xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/mx" title="Enter Guest Name" width="274" height="116">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
            <fx:Script>
                <![CDATA[
                    import com.adobe.rtc.session.IConnectSession;
                    import mx.managers.PopUpManager;
                    [Bindable]
                    public var connectSession:IConnectSession;
                    protected function login():void {
                        connectSession.authenticator.userName = userNameField.text;
                        connectSession.login();
                        PopUpManager.removePopUp(this);
                ]]>
            </fx:Script>
        </fx:Declarations>
            <s:TextInput width="234" id="userNameField" enter="login()" x="10" y="10"/>
            <s:Button label="Ok" click="login()" x="173" y="43" width="69"/>
    </s:Panel>
    in LoginDialog2.mxml, putting <fx: Script> inside <fx:Declarations>
    I then tried to change some of the code segments around in VideoChat.mxml but still no success:
    <?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" xmlns:rtc="AfcsNameSpace">
        <!-- Place non-visual elements (e.g., services, value objects) here -->
        <fx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                protected function showLogin():void {
                    var login:LoginDialog2 = new LoginDialog2();
                    login.connectSession = cSession;
                    PopUpManager.addPopUp(login, this);
                    PopUpManager.centerPopUp(login);
            ]]>
        </fx:Script>
        <rtc:ConnectSessionContainer id="cSession" autoLogin="false" width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room4" creationComplete="showLogin()">
            <rtc:authenticator>
                <rtc:AdobeHSAuthenticator userName="Guest"/>
            </rtc:authenticator>
            <mx:HBox width="100%" height="95%">
                <mx:VBox width="25%" height="100%">
                    <rtc:WebCamera width="100%" height="100%"/>   
                </mx:VBox>
                <rtc:SimpleChat width="75%" height="100%"/>               
            </mx:HBox>
        </rtc:ConnectSessionContainer>
    </s:Application>

  • Tried to follow the first video tutorial with no success

    Hi,
    I tried to run the first video tutorial (Your First AFCS Application) on LCCS SDK Navigator with no success.
    The code as described is:
    <?xml version="1.0" encoding="utf-8"?>
    <mx: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" xmlns:rtc="AfcsNameSpace">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
            <rtc:ConnectSessionContainer width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room">
                <rtc:authenticator>
                    <rtc:AdobeHSAuthenticator userName="*******" password="*******"/>
                </rtc:authenticator>
                <mx:HBox width="100%" height="100%">
                    <mx:VBox width="25%" height="100%">
                        <rtc:Roster width="100%" height="50%"/>
                        <rtc:WebCamera width="100%" height="50%"/>   
                    </mx:VBox>
                    <rtc:SimpleChat width="75%" height="100%"/>                   
                </mx:HBox>
            </rtc:ConnectSessionContainer>
        </fx:Declarations>
    </mx:Application>
    Basically, I pressed the Debug button and all I am getting is:
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 370,463 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 2,292,131 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 706,253 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 648,239 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 441,686 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 1,429,050 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 323,414 bytes after decompression
    I am not getting any message related to connection.  And yes, the username and password are correct; I just removed them for privacy.  Any ideas?
    Thanks,
    Kevin

    Hi Kevin (and welcome to the forums!),
    Wow, that's a trip... ConnectSessionContainer is a visual component, so I
    guess it needs to be outside your <fx:Declarations> tags. I didn't know that
    putting it in there would cause all hell to break loose (I love how the
    number of bytes keeps changing!); you learn something new every day!
    nigel

  • After a mac update; flash player asked to be installed.  Install successful but application will not work.

    Hello,
    After a Mac update, flash player (along with silverlight) asked to be installed when I tried to watch video content or play games.  I installed flash player and it reports being successful and appears in my applications.  However, I cannot watch videos or play games, every time I am asked to install flash player again and again and again.  I suspect this has something to do with plugins but I am not sure.  I have un-installed the program and reinstalled but it still will not work.  I check my security settings and it does allow plugins.  I erased my temporary internet files.  I don't know what else to do.  Any help would be appreciated!  This is incredibly frustrating.  Thank you

    Thank you for responding!  I am using a macbook pro 2011, 2.2ghz, intel
    core i7, 16gb - version 10.9.5.   I have not intentionally installed any ad
    blocking software; intact I am inundated with it most times.  My online
    school work required that I disable pop up blockers and all was well until
    an update a few weeks ago for both security and operating system.  To the
    best of my knowledge I am allowing pop ups and plugins but this may be
    where the trouble is.  I am unsure, honestly of what security is running
    besides what I find in the system preference/security tab.  Thank you again
    for responding and any help is most appreciated.
    Holly Norman
    On Wed, Apr 1, 2015 at 5:47 PM, Jeromie Clark <[email protected]>

  • How to Prevent or Supress Unexpected Return or Exit Codes in Successfully Installed Applications?

    We have some Intel and HP application installation task sequences that are successful, but the end of the deployment there is always a yellow screen warning about unexpected return codes such as "14".
    I think most of these are because the applications are looking for a interactive restart that is not done until the MDT task sequence does a reboot.  For instance, a task sequence that installs Intel AMT software and drivers pops up a dialog box asking
    the user to click to restart now or restart later even though the command is run as "setup.exe -s."  Since no one clicks on this pop up and the machine reboots via the task sequence, it creates this unexpected return code. 
    Are there additional command line switches that can be added to the task sequences to suppress the reboot prompts and make these applications exit gracefully without causing these warnings at the end of the deployment?

    I usually create a powershell wrapper for applications that exit funny. An example would be -
    #GET CURRENT DIR
    $mydir = Split-Path -parent $MyInvocation.MyCommand.Path
    #SET VARAIBLE TO PASS INSTALL COMMAND WITH SPACES
    $command = @"
    setup.exe /s
    #MOVE TO INSTALL DIR
    Set-Location C:\Install\Folder\
    #RUN INSTALL
    cmd.exe /c ""$command | out-null
    #EXIT CLEANLY
    exit 0
    Save this script inside where your Application is located, and then create an application that runs the script inside of the Deployment Workbench.  The only problem with this is you need to be sure your install works, as you're basically just ignoring
    any errors the application has.  Down at the bottom, you can see the exit being passed back to MDT to continue cleanly.  Good luck.
    I don't understand how to do this sine I have never users Powershell in MDT.
    Do I just edit the script changing C:\Install\Folder to the actual local path the application is stored on in the MDT server?
    Do I just name it with a .PS1 extension and run it as a command line or as an application?

  • Exception when running successfully deployed application in websphere 6

    I get the following error in an application I have created, and successfully deployed in websphere 6. Does anyone have any idea of what it means?
    [2005-08-15 21:31:37:891 CEST] 00000030 SystemErr R javax.naming.NameNotFoundException: Context: HP000D9D1DFE4BNode02Cell/nodes/BIZNode/servers/server1, name: ejb/se/htrc/beans/ProductCategoryLocalHome: First component in name beans/ProductCategoryLocalHome not found. Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0
         at com.ibm.ws.naming.ipcos.WsnOptimizedNamingImpl.handleNameNotFound(WsnOptimizedNamingImpl.java:2000)
         at com.ibm.ws.naming.ipcos.WsnOptimizedNamingImpl.getNextWsnOptimizedNamingContext(WsnOptimizedNamingImpl.java:1321)
         at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase.getTargetContext(WsnOptimizedNamingImplBase.java:3024)
         at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase$LeafOperationData.<init>(WsnOptimizedNamingImplBase.java:3489)
         at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase.resolve_complete_info(WsnOptimizedNamingImplBase.java:1427)
         at com.ibm.WsnOptimizedNaming._NamingContextStub.resolve_complete_info(Unknown Source)
         at com.ibm.ws.naming.jndicos.CNContextImpl.cosResolve(CNContextImpl.java:4045)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1776)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1737)
         at com.ibm.ws.naming.jndicos.CNContextImpl.lookupExt(CNContextImpl.java:1444)
         at com.ibm.ws.naming.jndicos.CNContextImpl.lookup(CNContextImpl.java:1324)
         at com.ibm.ws.naming.util.WsnInitCtx.lookup(WsnInitCtx.java:144)
         at javax.naming.InitialContext.lookup(InitialContext.java:361)
         at com.ibm._jsp._index._jspService(_index.java:70)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
         at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
         at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
         at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.handleRequest(JSPExtensionProcessor.java:230)
         at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2841)
         at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)
         at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:601)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.ipcos.WsnOptimizedNamingImpl.handleNameNotFound(WsnOptimizedNamingImpl.java:2000)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.ipcos.WsnOptimizedNamingImpl.getNextWsnOptimizedNamingContext(WsnOptimizedNamingImpl.java:1321)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase.getTargetContext(WsnOptimizedNamingImplBase.java:3024)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase$LeafOperationData.<init>(WsnOptimizedNamingImplBase.java:3489)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.cosbase.WsnOptimizedNamingImplBase.resolve_complete_info(WsnOptimizedNamingImplBase.java:1427)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.WsnOptimizedNaming._NamingContextStub.resolve_complete_info(Unknown Source)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.jndicos.CNContextImpl.cosResolve(CNContextImpl.java:4045)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1776)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1737)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.jndicos.CNContextImpl.lookupExt(CNContextImpl.java:1444)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.jndicos.CNContextImpl.lookup(CNContextImpl.java:1324)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.util.WsnInitCtx.lookup(WsnInitCtx.java:144)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at javax.naming.InitialContext.lookup(InitialContext.java:361)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm._jsp._index._jspService(_index.java:70)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.handleRequest(JSPExtensionProcessor.java:230)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2841)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:601)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
    [2005-08-15 21:31:37:906 CEST] 00000030 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))

    I changed the jndi name to java:comp/env/package...
    Didn�t help, now I get this error:
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R javax.naming.NameNotFoundException: Name comp/env/se not found in context "java:".
         at com.ibm.ws.naming.ipbase.NameSpace.getParentCtxInternal(NameSpace.java:1716)
         at com.ibm.ws.naming.ipbase.NameSpace.lookupInternal(NameSpace.java:1062)
         at com.ibm.ws.naming.ipbase.NameSpace.lookup(NameSpace.java:985)
         at com.ibm.ws.naming.urlbase.UrlContextImpl.lookup(UrlContextImpl.java:1263)
         at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:198)
         at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:139)
         at javax.naming.InitialContext.lookup(InitialContext.java:361)
         at com.ibm._jsp._index._jspService(_index.java:70)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
         at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
         at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
         at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2841)
         at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)
         at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.getParentCtxInternal(NameSpace.java:1716)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.lookupInternal(NameSpace.java:1062)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.lookup(NameSpace.java:985)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.urlbase.UrlContextImpl.lookup(UrlContextImpl.java:1263)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:198)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:139)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at javax.naming.InitialContext.lookup(InitialContext.java:361)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm._jsp._index._jspService(_index.java:70)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2841)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
    [2005-08-16 00:07:48:234 CEST] 0000002c SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R javax.naming.NameNotFoundException: Name comp/env/se not found in context "java:".
         at com.ibm.ws.naming.ipbase.NameSpace.getParentCtxInternal(NameSpace.java:1716)
         at com.ibm.ws.naming.ipbase.NameSpace.lookupInternal(NameSpace.java:1062)
         at com.ibm.ws.naming.ipbase.NameSpace.lookup(NameSpace.java:985)
         at com.ibm.ws.naming.urlbase.UrlContextImpl.lookup(UrlContextImpl.java:1263)
         at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:198)
         at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:139)
         at javax.naming.InitialContext.lookup(InitialContext.java:361)
         at com.ibm._jsp._index._jspService(_index.java:70)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
         at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
         at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:80)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1657)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:94)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.getParentCtxInternal(NameSpace.java:1716)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.lookupInternal(NameSpace.java:1062)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.ipbase.NameSpace.lookup(NameSpace.java:985)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.urlbase.UrlContextImpl.lookup(UrlContextImpl.java:1263)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:198)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:139)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at javax.naming.InitialContext.lookup(InitialContext.java:361)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm._jsp._index._jspService(_index.java:70)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:80)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1657)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:94)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
    [2005-08-16 00:07:49:359 CEST] 00000030 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))

  • If I upgrade to lion will it affect my previous applications?

    It's my greatest fear in upgrading to Lion, will it affect my previous installed applications? Hey guys, pls do enlighten me on this matter.

    Well, there are many reports of keynote being sluggish and unresponsive in this discussion. But nothing on pages that I've seen. Uninstalling / re-installing keynote has not helped those having problems, so I doubt you would need your installer there. iWork was recently updated to work with Lion, and it works fantastic here. Ur best bet would be to clone your SL setup to an external drive and then update to Lion on that for testing. Then if you are happy, you can clone the external onto your internal.

  • Tutorial for Building Mobile Web Applications Using ADF/BC4J-problem

    This is the tutorial for:
    Develop a offline, Web-based Disconnected Mobile application
    Trying to create an offline mobile application using jdeveloper & oracle lite. I want to be able to update the home database after using the application in a disconnected fashion. I do not have a web site, nor is that a feasible option.
    Jdeveloper 10.1.3.4 which should be OK as it is higher than the release specified in the tutorial.
    webtogo
    oraclie lite 10
    oracle 10.
    I have tried to follow the tutorial completely and I can not get this to connect from webtogo. It runs fine in the jdeveloper usising the container. I created the war file, did the wtg packaging process, opened the mobile manager and published the application & granted access to user 'john'. The samples provided work fine. The new application appears on the webscreen after installing web 0c4j. When I click on it, the address toolbar shows:
    http://localhost/webtogo/bc4jtutorial/faces/CustomerOrders.jsp
    When it installed mobile client, it installed the CustomerOrders.jsp into:
    E:\mobileclient\mobile_client_oc4j\j2ee\mobileclient\applications\mobileclient\bc4jtutorial
    an example of the samples that work shows
    http://localhost/webtogo/sample6/list
    in the browser address line.
    Which looks like it's really
    E:\mobileclient\mobile_client_oc4j\j2ee\mobileclient\applications\mobileclient\samples\sample6
    on the file system
    Any one have any ideas? I'll take another solution if someone has found one. However, i am not a great java programmer so thought jdeveloper was great to create forms and access the database.
    Theo Korol
    [email protected]

    Hi,
    selecting a session bean, this option shows for me in 11.1.2. Make sure that - by accident - you don't select the local or remote interface class
    Frank

  • EMF Forms tutorial on Mars - issue with Application demo

    Hello,
    I have just followed EMF Forms tutorial on Mars Modeling platform and could get the forms run on application demo. Thanks a lot.
    But I could not share the project on existing EMF Store repository (did not work). I could start the server but next on first commit. it failed with the following message:
    org.eclipse.e4.core.di.InjectionException: java.lang.IllegalStateException: Workbench has not been created yet.
    I tried to create a new repository (localhost) but I got same error.
    Any idea? should I try with E3 instead of E4 feature?
    Thanks for any help
    Raphaël

    Hi,
    yes, the EMFStore UI is currently not fully e4 compatible, see
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=424528
    Best regards
    Jonas
    Am 01.07.2015 um 22:53 schrieb Raphael Faudou:
    > Hello,
    >
    > I have just followed EMF Forms tutorial on Mars Modeling platform and
    > could get the forms run on application demo. Thanks a lot.
    >
    > But I could not share the project on existing EMF Store repository (did
    > not work). I could start the server but next on first commit. it failed
    > with the following message:
    > [code][org.eclipse.e4.core.di.InjectionException:
    > java.lang.IllegalStateException: Workbench has not been created yet./code]
    >
    > I tried to create a new repository (localhost) but I got same error.
    >
    > Any idea? should I try with E3 instead of E4 feature?
    >
    > Thanks for any help
    >
    > Raphaël
    Jonas Helming
    Get professional Eclipse developer support:
    http://eclipsesource.com/en/services/developer-support/

  • VPD issue affecting scalability of Application

    Hi all --
    Our reporting application is using VPD to limit access to the data a user can see. Unfortunately, we are seeing scalability issues when using VPD, so we are wondering if any of you have any insight on what we're doing incorrectly. Here's the scenario:
    Users may have access to multiple stores, so the VPD policy is returning a predicate that looks like this: branch_code in ('MNWIN','WIMAD'). Unfortunately with each predicate change we are getting a hard parse of the statement leading to degraded performance.
    We have been playing with using sys_context to set the predicate and returning a predicate that looks like: branch_code in sys_context('BRANCH_CTX','BRANCH_CODE') but errors get returned from the policy predicate or the context doesn't get set correctly.
    So a few questions:
    1. Is this the appropriate forum in which to post this?
    2. Is it possible to use sys_context in this way
    3. What is the preferred method for using VPD in a nonunique environment (ie: users have access to multiple values)
    Thanks!
    Leigh Johnson
    Fastenal Company

    You are correct to use bind variables to expedite the SQL processing. From your code, it is failing because you need to double the single quotes:
    RETURN 'branch_code in sys_context (''BRANCH_CTX'',''BRANCH_CODE'')';

  • Successfully Deployable application in 8.1 fails to Deploy in 9.0

    Hi All , whe I try to deploy my app I get followihg error :
    ---------- STACK TRACE -------------------------------
    An error occurred during activation of changes, please see the log for details.
    [HTTP:101064][WebAppModule(tak_3_1:tak_3_1)] Error parsing descriptor in Web appplication "D:\Vert_bea9_domain\.\apps\tak_3_1" weblogic.application.ModuleException: Unmarshaller failed at weblogic.servlet.internal.WebAppModule.loadDescriptor(WebAppModule.java:766) at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:265) at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:90) at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:318) at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26) at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:53) at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:43) at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:620) at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26) at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:231) at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:147) at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:61) at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:183) at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:84) at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:219) at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:750) at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1209) at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:246) at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:157) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12) at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:45) at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207) at weblogic.work.ExecuteThread.run(ExecuteThread.java:179) Caused by: weblogic.descriptor.BeanAlreadyExistsException: Bean already exists: "weblogic.j2ee.descriptor.FilterMappingBeanImpl@1c896429(/FilterMappings[weblogic.descriptor.internal.CompoundKey@1d78cf49])" at weblogic.descriptor.internal.ReferenceManager.registerBean(ReferenceManager.java:191) at weblogic.j2ee.descriptor.WebAppBeanImpl.setFilterMappings(WebAppBeanImpl.java:799) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.bea.staxb.runtime.internal.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:48) at com.bea.staxb.runtime.internal.RuntimeBindingType$BeanRuntimeProperty.setValue(RuntimeBindingType.java:466) at com.bea.staxb.runtime.internal.AttributeRuntimeBindingType$QNameRuntimeProperty.fillCollection(AttributeRuntimeBindingType.java:385) at com.bea.staxb.runtime.internal.MultiIntermediary.getFinalValue(MultiIntermediary.java:52) at com.bea.staxb.runtime.internal.AttributeRuntimeBindingType.getFinalObjectFromIntermediary(AttributeRuntimeBindingType.java:145) at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalBindingType(UnmarshalResult.java:185) at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalDocument(UnmarshalResult.java:154) at com.bea.staxb.runtime.internal.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:65) at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:138) at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:271) at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:240) at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:300) at weblogic.application.descriptor.AbstractDescriptorLoader2.createDescriptorBean(AbstractDescriptorLoader2.java:381) at weblogic.application.descriptor.AbstractDescriptorLoader2.loadDescriptorBean(AbstractDescriptorLoader2.java:659) at weblogic.servlet.internal.WebAppDescriptor.getWebAppBean(WebAppDescriptor.java:134) at weblogic.servlet.internal.WebAppModule.loadDescriptor(WebAppModule.java:762) ... 24 more weblogic.application.ModuleException: Unmarshaller failed
    Bean already exists: "weblogic.j2ee.descriptor.FilterMappingBeanImpl@1c896429(/FilterMappings[weblogic.descriptor.internal.CompoundKey@1d78cf49])"
    --------------- END OF STACK TRACE -----------------------
    I have a quite large web.xml file and relativly small weblogic.xml file in WEB-INF
    here is content of weblogic.xml file :
    <weblogic-web-app>
    <security-role-assignment>
    <role-name>USer123</role-name>
    <principal-name>aGroup</principal-name>
    </security-role-assignment>
    <jsp-descriptor>
    <jsp-param>
    <param-name>pageCheckSeconds</param-name>
    <param-value>-1</param-value>
    </jsp-param>
    <jsp-param>
    <param-name>keepgenerated</param-name>
    <param-value>true</param-value>
    </jsp-param>
    <jsp-param>
    <param-name>debug</param-name>
    <param-value>true</param-value>
    </jsp-param>
    </jsp-descriptor>
    <container-descriptor>
    <servlet-reload-check-secs>-1</servlet-reload-check-secs>
    </container-descriptor>
    </weblogic-web-app>
    again these settings have been working fune with bea 8.1 and earlier, is there anything that have been depricated that I might have here wrong?
    Best Regards
    Levani
    null

    Sure, here it is:
    ####<May 8, 2006 10:17:54 AM EDT> <Warning> <Deployer> <212-30437> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1147097874422> <BEA-149004> <Failures were detected while initiating distribute task for application 'gmaccap'.>
    ####<May 8, 2006 10:17:54 AM EDT> <Warning> <Deployer> <212-30437> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1147097874422> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: [HTTP:101064][WebAppModule(gmaccap:creditapp)] Error parsing descriptor in Web appplication "C:\bea9.1\user_projects\domains\wls91dom\.\servers\AdminServer\tmp\_WL_user\gmaccap\ajv3xf\creditapp.war"
    weblogic.application.ModuleException: Unmarshaller failed
         at weblogic.servlet.internal.WebAppModule.loadDescriptor(WebAppModule.java:766)
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:265)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:90)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:318)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:53)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:43)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:620)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:231)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:147)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:61)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:183)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:84)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:219)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:750)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1209)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:246)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:157)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:45)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    Caused by: weblogic.descriptor.BeanAlreadyExistsException: Bean already exists: "weblogic.j2ee.descriptor.ServletMappingBeanImpl@a9da03b5(/ServletMappings[weblogic.descriptor.internal.CompoundKey@a9b1cdd4])"
         at weblogic.descriptor.internal.ReferenceManager.registerBean(ReferenceManager.java:191)
         at weblogic.j2ee.descriptor.WebAppBeanImpl.setServletMappings(WebAppBeanImpl.java:1177)
         at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
         at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source)
         at com.bea.staxb.runtime.internal.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:48)
         at com.bea.staxb.runtime.internal.RuntimeBindingType$BeanRuntimeProperty.setValue(RuntimeBindingType.java:466)
         at com.bea.staxb.runtime.internal.AttributeRuntimeBindingType$QNameRuntimeProperty.fillCollection(AttributeRuntimeBindingType.java:385)
         at com.bea.staxb.runtime.internal.MultiIntermediary.getFinalValue(MultiIntermediary.java:52)
         at com.bea.staxb.runtime.internal.AttributeRuntimeBindingType.getFinalObjectFromIntermediary(AttributeRuntimeBindingType.java:145)
         at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalBindingType(UnmarshalResult.java:185)
         at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalDocument(UnmarshalResult.java:154)
         at com.bea.staxb.runtime.internal.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:65)
         at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:138)
         at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:271)
         at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:240)
         at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:300)
         at weblogic.application.descriptor.AbstractDescriptorLoader2.createDescriptorBean(AbstractDescriptorLoader2.java:379)
         at weblogic.application.descriptor.AbstractDescriptorLoader2.loadDescriptorBean(AbstractDescriptorLoader2.java:659)
         at weblogic.servlet.internal.WebAppDescriptor.getWebAppBean(WebAppDescriptor.java:134)
         at weblogic.servlet.internal.WebAppModule.loadDescriptor(WebAppModule.java:762)
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:265)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:90)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:318)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:53)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:43)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:620)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:231)
    weblogic.application.ModuleException: Unmarshaller failed
         at weblogic.servlet.internal.WebAppModule.createModuleException(WebAppModule.java:965)
         at weblogic.servlet.internal.WebAppModule.loadDescriptor(WebAppModule.java:784)
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:265)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:90)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:318)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:53)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:43)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:620)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:231)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:147)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:61)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:183)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:84)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:219)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:750)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1209)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:246)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:157)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:45)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    weblogic.descriptor.BeanAlreadyExistsException: Bean already exists: "weblogic.j2ee.descriptor.ServletMappingBeanImpl@a9da03b5(/ServletMappings[weblogic.descriptor.internal.CompoundKey@a9b1cdd4])"
         at weblogic.descriptor.internal.ReferenceManager.registerBean(ReferenceManager.java:191)
         at weblogic.j2ee.descriptor.WebAppBeanImpl.setServletMappings(WebAppBeanImpl.java:1177)
         at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
         at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source)
         at com.bea.staxb.runtime.internal.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:48)
         at com.bea.staxb.runtime.internal.RuntimeBindingType$BeanRuntimeProperty.setValue(RuntimeBindingType.java:466)
         at com.bea.staxb.runtime.internal.AttributeRuntimeBindingType$QNameRuntimeProperty.fillCollection(AttributeRuntimeBindingType.java:385)
         at com.bea.staxb.runtime.internal.MultiIntermediary.getFinalValue(MultiIntermediary.java:52)
         at com.bea.staxb.runtime.internal.AttributeRuntimeBindingType.getFinalObjectFromIntermediary(AttributeRuntimeBindingType.java:145)
         at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalBindingType(UnmarshalResult.java:185)
         at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalDocument(UnmarshalResult.java:154)
         at com.bea.staxb.runtime.internal.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:65)
         at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:138)
         at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:271)
         at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:240)
         at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:300)
         at weblogic.application.descriptor.AbstractDescriptorLoader2.createDescriptorBean(AbstractDescriptorLoader2.java:379)
         at weblogic.application.descriptor.AbstractDescriptorLoader2.loadDescriptorBean(AbstractDescriptorLoader2.java:659)
         at weblogic.servlet.internal.WebAppDescriptor.getWebAppBean(WebAppDescriptor.java:134)
         at weblogic.servlet.internal.WebAppModule.loadDescriptor(WebAppModule.java:762)
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:265)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:90)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:318)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:53)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:43)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:620)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:231)
    >
    Message was edited by:
            samititi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Tutorial Builder for other Adobe applications?

    I teach Flash.  Anything in the works for Tutorial Builder to work with flash?  I love this tool!

    Hi!
    At this time, we are not supporting Flash. Thanks for your interest. We will let you know if we release a Flash version of Tutorial Builder.
    Mira

  • Tutorial for Developing Flex Mobile applications.

    Hello all,
                 Can anyone provide me Tutorials to devleop  Flex Mobile applications which access data from SAP Netweaver Gateway via Flash Builder Plugin?
    Thanks

    This is not a product forum... do you need the flash builder forum?
    How to Select a Forum http://forums.adobe.com/docs/DOC-1015

  • Successful installed application keeps showing on Installation Status tab as Installed in Software Center

    Hello everyone,
    As the title says; after I have deployed an application. It keep showing itself on Installation Status tab in software center as Installed. 
    Thank you all in advance.

    Hi,
    That means that it is installed, what is your issue with it? don't you wan't it to show up? then you can select that it should not show up in Software Center under User Experience on the deployment of the application.
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • Tutorial 1: Routing a Loan Application - BEA-380000 SOAPFaultException

    Hey together,
    recently i tried aqualogic servicebus for the first time. Therefore i went trough the tutorial referring to the routing-loan-example.
    I set up eerything just like described in the tutorial. But when it comes to testing the configuration for the normalLoan Businesservice i get an error.
    I simply do a "ant run" in the recpective directory and this is what comes out:
    run:
    [java] Exception in thread "main" java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoa
    .org/soap/envelope/}Server] FaultString [BEA-380000: Not Found] FaultActor [null] Detail [<detail><con:fault xmlns:con=
    http://www.bea.com/wli/sb/context"><con:errorCode>BEA-380000</con:errorCode><con:reason>Not Found</con:reason><con:loca
    ion><con:node>RouteNode1</con:node><con:path>response-pipeline</con:path></con:location></con:fault></detail>]; nested
    xception is:
    [java] javax.xml.rpc.soap.SOAPFaultException: BEA-380000: Not Found
    [java] at normal.client.MyPortType_Stub.processLoanApp(MyPortType_Stub.java:37)
    [java] at normal.client.Main.main(Main.java:48)
    [java] Caused by: javax.xml.rpc.soap.SOAPFaultException: BEA-380000: Not Found
    [java] at weblogic.wsee.codec.soap11.SoapCodec.decodeFault(SoapCodec.java:265)
    [java] at weblogic.wsee.ws.dispatch.client.CodecHandler.decodeFault(CodecHandler.java:106)
    [java] at weblogic.wsee.ws.dispatch.client.CodecHandler.decode(CodecHandler.java:91)
    [java] at weblogic.wsee.ws.dispatch.client.CodecHandler.handleFault(CodecHandler.java:79)
    [java] at weblogic.wsee.handler.HandlerIterator.handleFault(HandlerIterator.java:254)
    [java] at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:224)
    [java] at weblogic.wsee.ws.dispatch.client.ClientDispatcher.handleResponse(ClientDispatcher.java:161)
    [java] at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:116)
    [java] at weblogic.wsee.ws.WsStub.invoke(WsStub.java:89)
    [java] at weblogic.wsee.jaxrpc.StubImpl._invoke(StubImpl.java:335)
    [java] at normal.client.MyPortType_Stub.processLoanApp(MyPortType_Stub.java:32)
    [java] ... 1 more
    BUILD FAILED
    C:\Programme\bea\weblogic92\samples\servicebus\examples\src\examples\webservices\jws_basic\normal\build.xml:94: Java re
    urned: 1
    Total time: 8 seconds
    Maybe any1 of you know how to solve it? I already know, that BEA-380000 is described as a transportation-error. But i dont know how ti proceed.
    Thanks

    No1 can help? I tested the wsdl with soapui and i guess the businessservices aren't doing their jobs. While being in the sbconsole, both folders, businessservices and wsdl are grey in the project explorer. That means i can't apply any changes on them.
    However only the folder proxyservice with its subfolder loangateway is white and therefore editable.
    Any hints?
    Thanks.

Maybe you are looking for

  • Waiting for Orchestration. What does this mean?

    I have an application being deployed to different AD sites.  I do not have my DPs for those sites set up yet, but I do have my MP which is also a DP set to a fallback DP.  I deploy this application and deployment status says Waiting for Orchestration

  • Adda more pages to an Interactive Form and the binary context

    Hi to all, my scenario is: I have a java webdynpro with a view with an interactive form of 2 pages. I inserted a button on the pdf which duplicates the second page (using java script). Then there is the "submit to SAP" button which transfers the cont

  • Too much email GB usage

    I have an iPhone 5 with iOS 7.0.6 recently updated. I'm getting messages that I'm running out of memory. When I check the "usage" in the General section, I find that I have a a huge GB usage (2.2 GB of 11.4 GB used) in email despite the fact that I r

  • Looking for a autohotkey MAC equivalent

    http://en.wikipedia.org/wiki/AutoHotkey Is there a Macintosh equivalent. I want to be able to push the same keystrokes to applications at one time. One or both may be on the screen at the same time but also where one could be minimized as well. Sugge

  • Problems with URLs generated for My/BEx Portfolio in a FPN

    Has andone successfully configured a FPN that uses My/BEx Porfolio? We are facing a problem with the URLs generated when launching a BEx web query stored in either My Portfolio or BEx Portfolio after it has been saved from the BEx Web Analyzer.  Afte