Wlst deploy error - Type Error

Hi,
I'm getting a problem when I use wlst.deploy from within a jython script that is being invoked from ant. Something to do with the number of parameters being used to call deploy. I've tried both three and four parameters, but get the following message in each case:
[java] TypeError: deploy(): expected 4 args; got 3
and
[java] TypeError: deploy() too many arguments; expected 3 got 4
The line from the script is:
     wlst.deploy( "WLI" + egType + "EG_" + egName, domaindir + "/" + egName + ".jar", cgServer)
cgServer is defined elsewhere in the script.
Any ideas?
Thanks,
Reuben

Hi,
The original Ant target is below:
<target name="deploy_egs" depends="init">
<java classname="org.python.util.jython" fork="yes" dir="${basedir}">
<jvmarg line="-Dpython.home=${jython.home}"/>
<arg value="${basedir}/scripts/createFileEG.py"/>
<arg value="-u${domain.url}"/>
<arg value="-n${domain.username}"/>
<arg value="-p${domain.password}"/>
<arg value="-d${domain.dir}"/>
<classpath refid="wlst.class.path"/>
</java>
</target>
And createFileEG.py gets the problem running line:
wlst.deploy( "WLI" + egType + "EG_" + egName, domaindir + "/" + egName + ".jar", cgServer)
I've also managed to run this line ok within wlst interactive mode and also within a wlst script. However it doesn't work
This File event generator jython script is based on the the WLI application and domain build script included in the PO Sample at http://dev2dev.bea.com/code/wli.jsp.
There are two versions of the JMS event generator build script within the PO Sample. The older version uses wseblogic.Deployer instead of wlst.deploy
Thanks,
Reuben

Similar Messages

  • Media Error  Type Error 1009

    When trying to play a video on a TV stations website I get a gray box that states "Media Error  Type Error 1009". The advertisement that precedes the news clip plays fine but once it's over the audio is fine but the video screen is black. No websites showed up. What can I do?

    This is a bug in the code running on the news site.  The content provider will need to fix this on their end.
    Thanks!

  • CS4 silent deployment issue (type error)

    Install works fine interactively, however when done silently I get an error in the log:
    --------------------  END  - Updating Media Sources -  END  --------------------
    [    4000] Tue Sep 15 14:14:39 2009 FATAL
    Exception: TypeError: undefined is not an object
    [    4000] Tue Sep 15 14:14:39 2009  INFO
    ------------------ END Silent Installer Session -----------------
    Machine is Windows 7 x64 Dell Optiplex 960 - is perfectly clean (only Office 2007 has been installed so far).
    Anyone run into this and know how to fix it?

    Ahh I solved it I think - for some reason compatibility mode was set to Windows Vista (no SP).

  • How to solve the error Type Error #2007: Parameter hitTestObject must be non-null.

    When I combine the storytelling part(storytelling that run frame by frame) with platform game, this error appear:
    TypeError: Error #2007: Parameter hitTestObject must be non-null.
    at flash.display:: DisplayObject/_hitTest()
    at flash.display:: DisplayObject/hitTestObject()
    at SaveMyBaby4_fla::Background_27/frame1()
    at flash.display::MovieClip/gotoAndPlay()
    at SaveMyBaby4_fla::Mainmenu_20/clickStart()
    How can i solve it? As i use this coding:
    var leftDown:Boolean = false;
    var rightDown:Boolean = false;
    var upDown:Boolean = false;
    var downDown:Boolean = false;
    var leftBumping:Boolean = false;
    var rightBumping:Boolean = false;
    var upBumping:Boolean = false;
    var downBumping:Boolean = false;
    var leftBumpPoint:Point = new Point(0, 0);
    var rightBumpPoint:Point = new Point(0, 0);
    var upBumpPoint:Point = new Point(0, 0);
    var downBumpPoint:Point = new Point(0, 0);
    var scrollX:Number = 500;
    var scrollY:Number = 0;
    var xSpeed:Number = 0;
    var ySpeed:Number = 0;
    var speedConstant:Number = 2;
    var frictionConstant:Number = 0.9;
    var gravityConstant:Number = 1.5;
    var jumpConstant:Number = -35;
    var maxSpeedConstant:Number = 18;
    var doubleJumpReady:Boolean = false;
    var upReleasedInAir:Boolean = false;
    var door:Boolean = false;
    var currentLevel:int = 1;
    var animationState:String="rest";
    function loop(e:Event):void{
    if(back.block.hitTestPoint(player.x + leftBumpPoint.x, player.y + leftBumpPoint.y, true)){
    //trace("leftBumping");
    leftBumping = true;
    } else {
    leftBumping = false;
    if(back.block.hitTestPoint(player.x + rightBumpPoint.x, player.y + rightBumpPoint.y, true)){
    //trace("rightBumping");
    rightBumping = true;
    } else {
    rightBumping = false;
    if(back.block.hitTestPoint(player.x + upBumpPoint.x, player.y + upBumpPoint.y, true)){
    //trace("upBumping");
    upBumping = true;
    } else {
    upBumping = false;
    if(back.block.hitTestPoint(player.x + downBumpPoint.x, player.y + downBumpPoint.y, true)){
    //trace("downBumping");
    downBumping = true;
    } else {
    downBumping = false;
    if(leftDown){
    xSpeed -= speedConstant;
    player.scaleX = -1;
    } else if(rightDown){
    xSpeed += speedConstant;
    player.scaleX = 1;
    /*if(upPressed){
    ySpeed -= speedConstant;
    } else if(downPressed){
    ySpeed += speedConstant;
    if(leftBumping){
    if(xSpeed < 0){
    xSpeed *= -0.5;
    if(rightBumping){
    if(xSpeed > 0){
    xSpeed *= -0.5;
    if(upBumping){
    if(ySpeed < 0){
    ySpeed *= -0.5;
    if(downBumping){ //if we are touching the floor
    if(ySpeed > 0){
    ySpeed = 0; //set the y speed to zero
    if(upDown){ //and if the up arrow is pressed
    ySpeed = jumpConstant; //set the y speed to the jump constant
    //DOUBLE JUMP
    if(upReleasedInAir == true){
    upReleasedInAir = false;
    if(doubleJumpReady == false){
    doubleJumpReady = true;
    } else { //if we are not touching the floor
    ySpeed += gravityConstant; //accelerate downwards
    //DOUBLE JUMP
    if(upDown == false && upReleasedInAir == false){
    upReleasedInAir = true;
    //trace("upReleasedInAir");
    if(doubleJumpReady && upReleasedInAir){
    if(upDown){ //and if the up arrow is pressed
    //trace("doubleJump!");
    doubleJumpReady = false;
    ySpeed = jumpConstant; //set the y speed to the jump constant
    if(door == false)
    if(player.hitTestObject(back.door))
    door = true;
    if(xSpeed > maxSpeedConstant){ //moving right
    xSpeed = maxSpeedConstant;
    } else if(xSpeed < (maxSpeedConstant * -1)){ //moving left
    xSpeed = (maxSpeedConstant * -1);
    xSpeed *= frictionConstant;
    ySpeed *= frictionConstant;
    if(Math.abs(xSpeed) < 0.5){
    xSpeed = 0;
    scrollX -= xSpeed;
    scrollY -= ySpeed;
    back.x = scrollX;
    back.y = scrollY;
    sky.x = scrollX * 0.2;
    sky.y = scrollY * 0.2;
    if((leftDown||rightDown||xSpeed>speedConstant||xSp eed<speedConstant*-1)&&downBumping){
    animationState="playerrun";
    else if(downBumping){
    animationState="rest";
    else{
    animationState="jump";
    if(player.currentLable!=animationState){
    player.gotoAndStop(animationState);
    function nextLevel():void{
    currentLevel++;
    gotoAndPlay(4, "Scene 1");
    door = false;
    function keyDownHandler(e:KeyboardEvent):void
    if(e.keyCode == Keyboard.LEFT)
    leftDown = true;
    else if(e.keyCode == Keyboard.RIGHT)
    rightDown = true;
    else if(e.keyCode == Keyboard.UP)
    upDown = true;
    else if(e.keyCode == Keyboard.DOWN)
    downDown= true;
    if(player.hitTestObject(back.door))
    //proceed to the next level if the player is touching an open door
    door = true;
    gotoAndPlay(5, "Scene 1");
    function keyUpHandler(e:KeyboardEvent):void{
    if(e.keyCode == Keyboard.LEFT){
    leftDown = false;
    } else if(e.keyCode == Keyboard.RIGHT){
    rightDown = false;
    } else if(e.keyCode == Keyboard.UP){
    upDown = false;
    } else if(e.keyCode == Keyboard.DOWN){
    downDown = false;

    The code I say to add is to troubleshoot the problem, it will not solve it, but it could help lead to solving it if the file is able to compile.  Does the trace show up in your output panel?  If so, what does it indicate?
    You should also go into your Flash section of the Publish Settings and select the option to Permit Debugging... that can help by adding a line number to the error message.
    What is the 'door' object that is associated with the 'back' object?  Does it exist in a frame that is not present when you try to run the file?  If so, check to make sure that it has its instance name assigned in every keyframe it occupies.

  • How do I fix the following error, it comes up every time I open a Firefox page; "type error: Components.classes[cid] is undefined" (JavaScript Application)

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    how do I fix the following error, it comes up every time I open a Firefox page; "type error: Components.classes[cid] is undefined" (JavaScript Application)
    == This happened
    ==
    Every time Firefox opened
    == a few months ago
    ==
    == Troubleshooting information
    ==
    Application Basics
    Name Firefox
    Version 3.6.3
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Adblock Plus 1.2 true
    Adobe DLM (powered by getPlus(R)) 1,6,2,49 true
    AVG Safe Search 9.0.0.825 true {3f963a5b-e555-4543-90e2-c3908898db71}
    AVG Security Toolbar 4.504.019.002 true avg@igeared
    Fasterfox 2.0.0 false
    Forecastfox 0.9.10.2 true {0538E3E3-7E9B-4d49-8831-A227C80A7AD3}
    Java Console 6.0.05 true
    Java Console 6.0.03 true
    Java Console 6.0.07 true
    Java Console 6.0.11 true
    Java Console 6.0.13 true
    Java Console 6.0.15 true
    Java Console 6.0.17 true
    Java Quick Starter 1.0 true [email protected]
    Microsoft .NET Framework Assistant 1.2.1 true {20a82645-c095-46ed-80e3-08825760534b}
    NoScript 1.9.9.77 true {73a6fe31-595d-460b-a920-fcc0f8843232}
    Java Console 6.0.19 true
    Java Console 6.0.20 true
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.flashBar 0
    browser.history_expire_days 0
    browser.history_expire_days.mirror 180
    browser.places.importBookmarksHTML false
    browser.places.importDefaults false
    browser.places.leftPaneFolderId -1
    browser.places.migratePostDataAnnotations false
    browser.places.smartBookmarksVersion 2
    browser.places.updateRecentTagsUri false
    browser.startup.homepage_override.mstone rv:1.9.2.3
    extensions.lastAppVersion 3.6.3
    general.useragent.extra.microsoftdotnet ( .NET CLR 3.5.30729)
    keyword.URL http://au.yhs.search.yahoo.com/avg/search?fr=yhs-avg&type=yahoo_avg_hs2-tb-web_au&p=
    network.cookie.prefsMigrated true
    places.last_vacuum 1272511429
    print.print_bgcolor false
    print.print_bgimages false
    print.print_command
    print.print_downloadfonts true
    print.print_evenpages true
    print.print_in_color true
    print.print_margin_bottom 0.5
    print.print_margin_left 0.5
    print.print_margin_right 0.5
    print.print_margin_top 0.5
    print.print_oddpages true
    print.print_orientation 0
    print.print_pagedelay 500
    print.print_paper_data 0
    print.print_paper_height 11.00
    print.print_paper_size -134744073
    print.print_paper_size_type 1
    print.print_paper_size_unit 0
    print.print_paper_width 8.50
    print.print_printer Lexmark 4200 Series
    print.print_reversed false
    print.print_scaling 1.00
    print.print_shrink_to_fit true
    print.print_to_file false
    print.printer_Lexmark_4200_Series.print_bgcolor false
    print.printer_Lexmark_4200_Series.print_bgimages false
    print.printer_Lexmark_4200_Series.print_command
    print.printer_Lexmark_4200_Series.print_downloadfonts true
    print.printer_Lexmark_4200_Series.print_edge_bottom 0
    print.printer_Lexmark_4200_Series.print_edge_left 0
    print.printer_Lexmark_4200_Series.print_edge_right 0
    print.printer_Lexmark_4200_Series.print_edge_top 0
    print.printer_Lexmark_4200_Series.print_evenpages true
    print.printer_Lexmark_4200_Series.print_footercenter
    print.printer_Lexmark_4200_Series.print_footerleft &PT
    print.printer_Lexmark_4200_Series.print_footerright &D
    print.printer_Lexmark_4200_Series.print_headercenter
    print.printer_Lexmark_4200_Series.print_headerleft &T
    print.printer_Lexmark_4200_Series.print_headerright &U
    print.printer_Lexmark_4200_Series.print_in_color true
    print.printer_Lexmark_4200_Series.print_margin_bottom 0.5
    print.printer_Lexmark_4200_Series.print_margin_left 0.5
    print.printer_Lexmark_4200_Series.print_margin_right 0.5
    print.printer_Lexmark_4200_Series.print_margin_top 0.5
    print.printer_Lexmark_4200_Series.print_oddpages true
    print.printer_Lexmark_4200_Series.print_orientation 0
    print.printer_Lexmark_4200_Series.print_pagedelay 500
    print.printer_Lexmark_4200_Series.print_paper_data 1
    print.printer_Lexmark_4200_Series.print_paper_height 11.00
    print.printer_Lexmark_4200_Series.print_paper_size -134744073
    print.printer_Lexmark_4200_Series.print_paper_size_type 0
    print.printer_Lexmark_4200_Series.print_paper_size_unit 1
    print.printer_Lexmark_4200_Series.print_paper_width 8.50
    print.printer_Lexmark_4200_Series.print_reversed false
    print.printer_Lexmark_4200_Series.print_scaling 1.00
    print.printer_Lexmark_4200_Series.print_shrink_to_fit true
    print.printer_Lexmark_4200_Series.print_to_file false
    print.printer_Lexmark_4200_Series.print_unwriteable_margin_bottom 0
    print.printer_Lexmark_4200_Series.print_unwriteable_margin_left 0
    print.printer_Lexmark_4200_Series.print_unwriteable_margin_right 0
    print.printer_Lexmark_4200_Series.print_unwriteable_margin_top 0
    privacy.clearOnShutdown.cookies false
    privacy.clearOnShutdown.offlineApps true
    privacy.cpd.cookies false
    privacy.item.offlineApps true
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.timeSpan 3
    security.warn_viewing_mixed false
    security.warn_viewing_mixed.show_once false
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-getplusplusadobe16249
    *Office Plugin for Netscape Navigator
    *Adobe PDF Plug-In For Firefox and Netscape
    *Default Plug-in
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Shockwave Flash 10.0 r45
    *iTunes Detector Plug-in
    *Garmin Communicator Plug-In 2.8.1.0
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *Java(TM) Platform SE binary
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object

    How do I fix this problem ...javascript (cid) applications.

  • BPEL instances invisisble - ORABPEL-05002 - reason is FOTY0001: type error.

    I have a BPEL process which gets initiated by messages from a JMS Queue. Version 1 of this same process works fine. But when I deploy a version 2 of the same process (which is compiling fine), it errors out. Strangely the instances are not appearing in the BPEL Console. JMS Messages also read and committed.
    When I take a look at log at <HOME>/opmn/logs, I could see the following error. I am not sure what is going wrong as I didnt change anything in XSL.
    ORABPEL-05002
    Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the exception is: XPath expression failed to execute.
    Error while processing xpath expression, the expression is "ora:processXSLT('SiebelToFusion.xsl',bpws:getVariableData('SiebelProperty_InputVariable'))", the reason is FOTY0001: type error.
    Please verify the xpath query.
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:171)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:70)
    at com.collaxa.cube.engine.ejb.impl.WorkerBean.onMessage(WorkerBean.java:86)
    at sun.reflect.GeneratedMethodAccessor57.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at oracle.j2ee.connector.messageinflow.MessageEndpointImpl.OC4J_invokeMethod(MessageEndpointImpl.java:297)
    at WorkerBean_EndPointProxy_4bin6i8.onMessage(Unknown Source)
    at oracle.j2ee.ra.jms.generic.WorkConsumer.run(WorkConsumer.java:266)
    at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
    at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
    at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
    at java.lang.Thread.run(Thread.java:595)

    You might expect an error message on the receive of the called BPEL process, but it does not get that far as the transformation to the schema of the input variable already goes wrong.
    What I would do is make sure that you successfully can call the BPEL process using a tool like soapUI and compare the format of that message to the one your JMS queue is providing.
    Do you by any chance provide a message part of type string which actually contains XML?
    Jan

  • Error:Type mismatch: cannot convert from Long to Long

    hi friends,
    I've a problem.I've a JSP that does some long converions,and its working fine when i make it run on my machine i.e
    (Running Tomcat5.0),but when I deploy this file on the server which runs Tomcat 5.5.7,it throws this error:
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 20 in the jsp file: /abc.jsp
    Generated servlet error:
    Type mismatch: cannot convert from Long to Long
    Can anyone of you,tell me where i am going wrong???

    Here is an example of doing it with a JavaBean... the bean looks like this:
    package net.thelukes.steven;
    import java.io.Serializable;
    import java.text.DateFormat;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    public class FormHandlerBean implements Serializable {
         private static final long serialVersionUID = 1L;
         private Date startTime = null;
         private DateFormat dateFormatter;
         public FormHandlerBean() {
              setDateFormat("yyyy-MM-dd hh:mm:ss");
         public void setStart(String strt) {
              setStartAsString(strt);
         private void setStartAsString(String strt) {
              setStartAsDate(getDate(strt));
         private void setStartAsDate(Date d) {
              startTime = d;
         private Date getDate(String s) {
              Date d = null;
                   try {
                        d = dateFormatter.parse(s);
                   } catch (ParseException pe) {
                        System.err.print("Error Parsing Date for "+s);
                        System.err.println(".  Using default date (right now)");
                        pe.printStackTrace(System.err);
                        d = new Date();
              return d;
         public long getStartAsLong() {
              return getStart().getTime();
         public String getStartAsString() {
              return Long.toString(getStartAsLong());
         public Date getStart() {
              return startTime;
         public void setDateFormat(String format) {
              dateFormatter = new SimpleDateFormat(format);
    }You would only need to make the getStartXXX methods public that need to be accessed from the JSP. For example, if you will not need to get the Long value of the time, then you do not need to make getStartAsLong public...
    The JSP looks like this:
    <html>
      <head>
        <title>I got the Form</title>
      </head>
      <body>
        <h3>The Output</h3>
        <jsp:useBean class="net.thelukes.steven.FormHandlerBean" id="formHandler"/>
        <%
             formHandler.setStart(request.getParameter("start"));
        %>
        <table>
          <tr><td>Start as String</td><td><jsp:getProperty name="formHandler" property="startAsString"/></td></tr>
          <tr><td>Start as Date</td><td><jsp:getProperty name="formHandler" property="start"/></td></tr>
          <tr><td>Start as long</td><td><jsp:getProperty name="formHandler" property="startAsLong"/></td></tr>
        </table>
      </body>
    </html>If this were a servlet processing the form rather than a JSP, I might throw the ParseException that might occur in getDate and catch it in the Servlet, with which I could then forward back to the form telling the user they entered mis-formatted text value... But since JSPs should be mainly display, I catch the exception internally in the Bean and assign a safe value...

  • Unsolved message type error

    Hello!
    I have an error that I cannot solve. Here is the general description:
    I have a xsd file that I imported in my BPEL process:
    <?xml version="1.0" encoding="windows-1250"?>
    <schema targetNamespace="http://xml.zoppas.com/CommesseError"
    xmlns="http://www.w3.org/2001/XMLSchema"
    xmlns:err="http://xml.zoppas.com/CommesseError">
    <element name="ErrorType">
    <complexType>
    <sequence>
    <element name="Id" type="string"/>
    <element name="Message" type="string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    Then I created a new xsld file:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!--Generated by the Oracle JDeveloper 10g Web Services WSDL Generator-->
    <!--Date Created: Wed Nov 09 16:40:27 EET 2005-->
    <definitions
    name="errorManager"
    targetNamespace="http://xml.zoppas.com/managerCommesseError/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:cur="http://xml.zoppas.com/managerCommesseError"
    xmlns:err="http://xml.zoppas.com/CommesseError">
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xml.zoppas.com/CommesseError" schemaLocation="CommessaError.xsd"/>
         </schema>
    </types>
    <message name="CommessaError_msg">
    <part name="CommessaError" element="err:Error"/>
    </message>
    <portType name="GetError_ptt">
    <operation name="GetError">
    <input message="cur:CommessaError_msg"/>
    </operation>
    </portType>
    </definitions>
    Then I created a new variable with the message type CommessaError_msg.
    When I compile the project, I have the following error:
    Error(23):
    [Error ORABPEL-10007]: unresolved messageType
    [Description]: in line 23 of "D:\myBPEL\commessaGetInfo\commessaGetInfo\commessaGetInfo.bpel", WSDL messageType "{http://xml.zoppas.com/managerCommesseError/}CommessaError_msg" of variable "errorMessage" is not defined in any of the WSDL files.
    [Potential fix]: Make sure the WSDL messageType "{http://xml.zoppas.com/managerCommesseError/}CommessaError_msg" is defined in one of the WSDLs referenced by the deployment descriptor.
    Does anybody have an idea about that?
    Thank you in advance!!

    I forgot to attach the BPEL process source code. The error is at line 23.
    <process name="commessaGetInfo" targetNamespace="http://www.zoppas.com/commessaGetInfo" suppressJoinFailure="yes" xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20" xmlns:ns4="http://xmlns.oracle.com/pcbpel/adapter/db/top/commessaGetInfo" xmlns:ns7="http://www.zoppas.com/Error" xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns5="http://xmlns.oracle.com/pcbpel/adapter/db/Details/" xmlns:client="http://www.zoppas.com/commessaGetInfo" xmlns:ns6="http://xmlns.oracle.com/pcbpel/adapter/db/INTEGRATION/GETCOMMESSE/" xmlns:ora="http://schemas.oracle.com/xpath/extension" xmlns:ns9="http://xmlns.oracle.com/pcbpel/adapter/opaque/" xmlns:ns1="http://xmlns.oracle.com/pcbpel/adapter/aq/Dequeuer/" xmlns:ns3="http://xml.zoppas.com/Commesse" xmlns:ns2="http://xmlns.oracle.com/pcbpel/adapter/db/Deleter/" xmlns:bpelx="http://schemas.oracle.com/bpel/extension" xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc" xmlns:ns10="http://xml.zoppas.com/managerCommesseError/" xmlns:ns8="http://xmlns.oracle.com/pcbpel/adapter/aq/Enqueuer/">
    <partnerLinks>
    <partnerLink myRole="Dequeue_role" name="getCommessaCode" partnerLinkType="ns1:Dequeue_plt"/>
    <partnerLink name="Deleter" partnerRole="Deleter_role" partnerLinkType="ns2:Deleter_plt"/>
    <partnerLink name="CommessaDetails" partnerRole="Details_role" partnerLinkType="ns5:Details_plt"/>
    <partnerLink name="sendComessaDetails" partnerRole="Enqueue_role" partnerLinkType="ns8:Enqueue_plt"/>
    </partnerLinks>
    <variables>
    <variable name="ReceiveCommessaCode_Dequeue_InputVariable" messageType="ns1:CommessaCode_msg"/>
    <variable name="deleteRequest_delete_InputVariable" messageType="ns2:ModifiedCommesse2Collection_msg"/>
    <variable name="requestDetails_Details_InputVariable" messageType="ns5:args_in_msg"/>
    <variable name="requestDetails_Details_OutputVariable" messageType="ns5:args_out_msg"/>
    <variable name="sendDetails_Enqueue_InputVariable" messageType="ns8:OutputParameters_msg"/>
    <variable name="errorMessage" messageType="ns10:CommessaError_msg"/>
    </variables>
    <sequence name="main">
    <receive name="ReceiveCommessaCode" partnerLink="getCommessaCode" portType="ns1:Dequeue_ptt" operation="Dequeue" variable="ReceiveCommessaCode_Dequeue_InputVariable" createInstance="yes"/>
    <assign name="codeToDelete">
    <copy>
    <from variable="ReceiveCommessaCode_Dequeue_InputVariable" part="CommessaCode" query="/ns3:CommessaCode/ns3:CodCom"/>
    <to variable="deleteRequest_delete_InputVariable" part="ModifiedCommesse2Collection" query="/ns4:ModifiedCommesse2Collection/ModifiedCommesse2/codCom"/>
    </copy>
    <copy>
    <from variable="ReceiveCommessaCode_Dequeue_InputVariable" part="CommessaCode" query="/ns3:CommessaCode/ns3:CodSub"/>
    <to variable="deleteRequest_delete_InputVariable" part="ModifiedCommesse2Collection" query="/ns4:ModifiedCommesse2Collection/ModifiedCommesse2/codSub"/>
    </copy>
    </assign>
    <invoke name="deleteRequest" partnerLink="Deleter" portType="ns2:Deleter_ptt" operation="delete" inputVariable="deleteRequest_delete_InputVariable"/>
    <scope name="Scope_1">
    <sequence name="Sequence_1">
    <assign name="codeForDetails">
    <copy>
    <from variable="ReceiveCommessaCode_Dequeue_InputVariable" part="CommessaCode" query="/ns3:CommessaCode/ns3:CodCom"/>
    <to variable="requestDetails_Details_InputVariable" part="InputParameters" query="/ns6:InputParameters/P_COD_COM"/>
    </copy>
    <copy>
    <from variable="ReceiveCommessaCode_Dequeue_InputVariable" part="CommessaCode" query="/ns3:CommessaCode/ns3:CodSub"/>
    <to variable="requestDetails_Details_InputVariable" part="InputParameters" query="/ns6:InputParameters/P_COD_SUB"/>
    </copy>
    </assign>
    <invoke name="requestDetails" partnerLink="CommessaDetails" portType="ns5:Details_ptt" operation="Details" inputVariable="requestDetails_Details_InputVariable" outputVariable="requestDetails_Details_OutputVariable"/>
    <assign name="transmitDetails">
    <copy>
    <from variable="requestDetails_Details_OutputVariable" part="OutputParameters" query="/ns6:OutputParameters"/>
    <to variable="sendDetails_Enqueue_InputVariable" part="OutputParameters" query="/ns6:OutputParameters"/>
    </copy>
    </assign>
    </sequence>
    </scope>
    <invoke name="sendDetails" partnerLink="sendComessaDetails" portType="ns8:Enqueue_ptt" operation="Enqueue" inputVariable="sendDetails_Enqueue_InputVariable"/>
    </sequence>
    </process>

  • Session bean deployment problem - Fatal Error

    Hi,
    I am using OC4J and could not deploy simple session bean. I created correct ear ( Team and TeamHome classes are included).
    This error message is meaningless.
    Please help !
    Auto-deploying tpcontest (Assembly had been updated)...
    Fatal Error: Syntax error in source
    Team_StatelessSessionBeanWrapper2.java:11: Interface Team of class Team_StatelessSessionBeanWrapper2 not found.
    public class Team_StatelessSessionBeanWrapper2 extends com.evermind.server.ejb.StatelessSessionEJBObject implements Team
    ^
    TeamHome_StatelessSessionHomeWrapper3.java:9: Interface TeamHome of class TeamHome_StatelessSessionHomeWrapper3 not found.
    public class TeamHome_StatelessSessionHomeWrapper3 extends com.evermind.server.ejb.StatelessSessionEJBHome implements TeamHome
    ^
    2 errors
    com.evermind.compiler.CompilationException: Syntax error in source
    at com.evermind.compiler.FileLinkedCompilation.run(FileLinkedCompilation.java:90)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.evermind.compiler.FileLinkedCompiler.compile(FileLinkedCompiler.java:19)
    at com.evermind.compiler.Javac.compile(Javac.java:37)
    at com.evermind.server.ejb.compilation.Compilation.compileClasses(Compilation.java:335)
    at com.evermind.server.ejb.compilation.Compilation.compile(Compilation.java:256)
    at com.evermind.server.administration.ServerApplicationInstallation.finish(ServerApplicationInstallation.java:439)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:80)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:62)
    ejb-jar.xml
    <session>
    <ejb-name>TeamBean</ejb-name>
    <home>TeamHome</home>
    <remote>Team</remote>
    <ejb-class>TeamBean</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
    </session>
    orion-ejb-jar.xml
    <session-deployment name="TeamBean" location="TeamBean" persistence-filename="TeamBean" />

    Piotr -- I think that it is saying that it can't compile the stub source it generated since it can't find your home and remote
    interfaces. Are your interface classes in a package? You show then not in a package in your descriptor. Can you
    double check to make sure your EAR file is correctly constructed. That could be a problem as well.
    Thanks -- Jeff

  • A VoiceXML error occurred of type "error.badfetch"

    Hello,
    I have a CVP application that contains a Form Element. This application is deployed 2 CVP Call/VXML servers which are redundant.
    In the Application Error Log of only sideA, I can see the error: A VoiceXML error occurred of type "error.badfetch"
    This error is occurring for some callers on sideA and not happening at all for any caller on sideB.
    Related error in C:\Cisco\CVP\ is the following:
    6189849: <CVP Server1>: Jan 26 2012 11:05:21.539 +0200: %CVP_8_0_IVR-3-CALL_ERROR:  RunScript Error from <VoiceGateway1> [CVP_BAD_FETCH(45)] CALLGUID: 19428EB5100001353BFF9E7D53EF37A5 DNIS=85555555554392 {VRUScriptName: 'GS,Server,V' ConfigParam: ''} [id:3023]
    6191737: <CVP Server1>: Jan 26 2012 11:09:58.978 +0200: %CVP_8_0_IVR-3-CALL_ERROR:  CALLGUID=194607821000013569E997F353EF37A5 DNIS=85555555554602 CVP VXML Server encountered a Bad-Fetch Error - URL:
    http://<CVP Server1>:7000/CVP/en-us/../Server?_dnis=03800111&_ani=<CustomerNumber>&callid=194607821000013569E997F353EF37A5&CVP_Call_ID=<CustomerNumber>&mediaServer=<CVP_Server1>&application=<CVPapplication>
    (Client: <VoiceGateway1>) [id:3023]
    The audio prompts related to this Form Element are all in their correct locations and also loaded in both Voice Gateway's cache.
    I have tried to restart the CVP Call/VXML server but this did not solve the problem.
    Any suggestion is highly appreciated.
    Thanks,
    Justine.

    Hi Justine,
    Thanks for your reply.
    In fact, in my case and since I have an upgraded CVP CALL/VXML server from 4.1 to 8.0, i had to transfer the new "GW Download.tar" file to the VXML gateways' flash using CLI command : archive tar /xtract tftp:///GW_Downloads.tar /
    Then, I had to load files into IOS memory for each CVP service on the VXML Gateways suing the following CLI commands:
    call application voice load cvperror
    call application voice load cvp-survivability
    call application voice load new-call
    call application voice load ringtone
    call application voice load bootstrap
    call application voice load handoff
    Thanks again.
    Regards.
    Wajih.

  • I am trying to install itunes on my hp laptop with windows vista 64 bit. But when i install i get this error "An error occured during the installation of assembly "Microsoft.VC80.CRT.type="win32"version="8.0.50727.6195".publickeyTOken="1fc8b3 b9a1e18e3b".

    I am trying to install itunes on my hp laptop with windows vista 64 bit. But when i install i get this error   "An error occured during the installation of assembly "Microsoft.VC80.CRT.type="win32"version="8.0.50727.6195".publickeyTOken="1fc8b3 b9a1e18e3b".processorArchitecture="x86""

    Repair your Apple Application Support.
    Control Panel > Programs n Features > highlight AAS, click CHANGE the REPAIR

  • Downloading 4.0 onto XP it takes a long conection process, with boxes on unresponsive script and a java scipt app saying type error and is all very annoying so what can I do I want the old firefox back a

    I downloaded Firefox 4.0 replacing an earlier Firefox version. I have XP on my computer. When I now click on the Firefox icon after a time a window saying Unresponsive script and underneath script chrome etc comes up. I then press stop script and another window comes up Java Script application and type error. Eventually I get on to the internet but it's all very frustrating. I wish I had ignored the request to download 4.0
    Please help

    I can assure you that the sympton is indeed identical. For as the computer got worse, eventually it refused to start up and made 3 beeps. It has done this before, but today more times than before (just like when it first had this problem). Where-ever you go on the internet, it will tell you that the 3 beeps suggest the RAM is at fault. So, the same 3 beeps, means the same problem, which is the RAM.
    With that in mind, I re-ask my question with the same reasoning and justification; am I still covered under warranty? (Reasoning/Justification: Considering the original problem was not entirely fixed, though something else was to make the MacBook Pro last a little longer before the reoccurance of this problem).

  • Error while deploying an application on weblogic 12c. An error occurred while reading the deployment descriptor. The error was: Error processing annotations

    Anyone please help me solve this error. I am trying to deploy an application on weblogic 12c  i am getting an error but the same application gets successfully deployed on weblogic 11g. The error is
    An error occurred during activation of changes, please see the log for details.
    Exception preparing module: EJBModule(gsCallbackAdapterLGTX-ejb.jar) An error occurred while reading the deployment descriptor. The error was: Error processing annotations: .
    [EJB:015001]Unable to link class com.aep.gridsmart.adapters.lgtx.buslogic.deliver.xform.AdapterTransfomerDeliverSession in Jar /appl/oracle/middleware/WLS/12.1.1.0/user_projects/domains/Gridsmart/servers/ManagedServer1/tmp/_WL_user/gsCallbackAdapterLGTX/34vz4d/gsCallbackAdapterLGTX-ejb.jar : java.lang.NoClassDefFoundError: com/aep/gridsmart/adapter/deliver/CommonAdapterDeliverBean

    Cotton please let me know what is the mistake i am
    doingThe following path does not exist.
    C:\Sun\AppServer7\domains\domain1\server1\
    applications\j2ee-modules\task_1\WEB-INF\web.xml

  • "Schema validation found non-data type errors" error when passing a string value to date field in infopath

    Hi,
    I have an infopath web brower enabled form. In the form i have a date field.
    I am passing the data from the database to that field using the C# code.
    But, as the field from database is coming as string, i am getting an error, and i am not able to assign the value.
    I get the date value from database as "3/25/2011 12:00:00 AM"
    I used the below code:
    [CODE]
    if (objInfopathFormcData.myRecievedDate != null)
      myRoot.SelectSingleNode("/my:myFields/my:field97", NamespaceManager).SetValue(objInfopathFormcData.myRecievedDate);
    [/CODE]
    I am getting the error as "Schema validation found non-data type errors".
    How to set the value for a date field in Infopath.
    Thank you

    HI,
    I fixed it:
    Below code is used to fix:
    [CODE]
    XPathNavigator xfield = null;
    DateTime dtmyRecievedDate;
    dtmyRecievedDate = Convert.ToDateTime(objInfopathFormcData.myRecievedDate);
    if (objFormcData.FcCompletionDate != null)
    xfield = myRoot.SelectSingleNode("/my:myFields/my:field97", NamespaceManager);
    DeleteNil(xfield);
    xfield.SetValue(dtmyRecievedDate.GetDateTimeFormats().GetValue(5).ToString());
    // method to delete xsi:nil
    private void DeleteNil(XPathNavigator nav1)
    if (nav1.MoveToAttribute("nil", "http://www.w3.org/2001/XMLSchema-instance"))
       nav1.DeleteSelf();
    [/CODE]
    Thank you

  • Error messag -'Error while determining ref.mov.type for WM via Table 156S:'

    Hi Guys,
    I am currently facing some issues with respect to the deliver creation.
    The scenario is somthing like this.
    I have assigned a FOC Item category to an Consignment Issue order type.
    The system is able to determine the Item category successfully.
    However when the delivery is created it throws an error message
    'Error while determining ref.mov.type for WM via Table 156S: 903/X/X/W/L/X/'
    Not sure why this occurs.
    All the settings seem to be set.
    If any one of you can help me out it would be great.
    Thanks.
    Regards,
    Pandi

    Dear Pandiraj
    The standard process is that consignment issue order should be created with reference to Proforma invoice.  Having said that I dont understand why you have assigned a FOC item category to issue order.  Not sure, whether this will work.  Also I feel that you should explain in detail the process for which you are configuring this.
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • How to PL/SQL Function returns type

    Hello, I need to create a function, which is returning a list of ID's, which is stored in a type T_IDs, something like: function search(searchstring in varchar2) return T_IDs I have a little problem with filling the type inside the function body usin

  • ORA-01733- virtual column not allowed here  - Insert using inline view

    Does anyone know why I am getting ORA-01733- virtual column not allowed here SQL> select * from v$version; BANNER Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production PL/SQL Release 11.1.0.6.0 - Production CORE 11.1.0.6.0 Production

  • Illegal filename

    Hi, I built an user interface to allow free filenames to save data. unfortunately some user enters "/" and ":". those characters are illegal in windows environment. when the program tries to save the file either nothing happens and all datas are gone

  • Connecting alarm server to Access DB

    Hi there. I'm developing a very basic alarm system consisting of a client part and server part. The user running the client on their computer should be able to send to the server a message asking to be reminded when the time comes for a certain event

  • Nokia 7710 - Problem connecting phone to PC

    Hi Using PC Suite 6.8, USB Connection, Windows 2000 SP 4 As soon as PC Suite was installed, the first connection to PC worked ! But somehow connection got cut, and data transfer stopped abruptly. There after, the "PC Suite - Get Connected" doesnt act