AS 2.0 Class runtime loading problem

Hi all
i work in a company who is developing an impressive sized
flash web application.
flash application development, involving many swf files that
share the same classes,
creates a potential problem which is very difficult for us to
avoid:
say you compile a 'thumb_Navigation_bar.swf' which uses the
'PhotoManager' class
that is imported and compiled with the swf file,
then you make some changes to the 'PhotoManager' class,
after that, you created 'another_gallery_component.swf' who
uses the same PhotoManager for some other uses
you actually have two swf files, importing and using the same
class with different versions
the problem occurs when the 'thumb_Navigation_bar.swf'
comiled with the old version is loaded into memory
then the 'another_gallery_component.swf' , though compiled
with a newer version of the 'PhotoManager' class
since it had already loaded into memory, the
'another_gallery_component.swf' file can't use the new
functionality of the latest version of the class.
the only solution to this behavior we have right now is
running a complete build process which compiles all the whole
application with all of its swf files.
though not a big issue when building a relative small scale
project,
when the application gets bigger and complex, it creates a
major problem, making the development process extremely tedious.
does anyone have encountered a similar problem ?
anyone have an idea as to how to go about solving it ?
cheers
Yariv

you need to reconsider your design process. if you had
thought ahead, you would have created a base PhotoManager class
that would not need to be changed for different applications.
at its most basic, PhotoManager would be an interface whose
methods and properties are implemented in another class that's
specifically designed to work with thumb_Navigation_bar. and you
would use another implementation for
another_gallery_component.

Similar Messages

  • There are afunction like Runtime.load(filename.so)  but load a .class file?

    I need build something like a plugin system: I get a string like "framework.plugin.FooClass" and "FooClass.class" file in run time, and I need to get a new instance of this one.
    In code:
    IPlugin plugin;
    String className = "framework.plugin.FooClass";
    plugin = (framework.IPlugin)Class.forName("framework.plugin.FooClass").newInstance();But I haven't this class in classpath. I see Runtime.load(filename.so) but look like only load native code, it doesn't? I'm on wrong way?
    Thanks in advance,
    Diego

    Either put the plug-in's folder on the class path or use an URLClassLoader.

  • Velocity template loading problem.

    Hello,
    I want to run first velocity servlet and I can't do this from 2 days
    I tried many combination.
    I use Netbeans 5.5 on linux
    So in this moment I have
    new project of netbeans in
    /home/marcin/3ROK/1SEM/java1/ul/Velocity/
    [root@zet Velocity(0)]# ls -R
    build  build.xml  catalog.xml  dist  nbproject  src  test  web
    ./build:
    web
    ./build/web:
    index.jsp  META-INF  WEB-INF
    ./build/web/META-INF:
    context.xml  MANIFEST.MF
    ./build/web/WEB-INF:
    classes  hello.vm  lib  templates  velocity.properties  web.xml
    ./build/web/WEB-INF/classes:
    HelloTest.class  hello.vm
    ./build/web/WEB-INF/lib:
    velocity-1.5.jar  velocity-dep-1.5.jar  velocity-tools-1.3.jar  velocity-tools-view-1.3.jar
    ./build/web/WEB-INF/templates:
    hello.vm
    ./dist:
    Velocity.war
    ./nbproject:
    ant-deploy.xml  build-impl.xml  genfiles.properties  private  project.properties  project.xml
    ./nbproject/private:
    private.properties  private.xml
    ./src:
    conf  java
    ./src/conf:
    MANIFEST.MF
    ./src/java:
    HelloTest.java  hello.vm
    ./test:
    ./web:
    index.jsp  META-INF  WEB-INF
    ./web/META-INF:
    context.xml
    ./web/WEB-INF:
    hello.vm  templates  velocity.properties  web.xml
    ./web/WEB-INF/templates:
    hello.vmHelloTest.java
    import org.apache.velocity.Template;
    import org.apache.velocity.servlet.VelocityServlet;
    import org.apache.velocity.app.Velocity;
    import org.apache.velocity.context.Context;
    import javax.servlet.http.*;
    import java.util.Properties;
    import org.apache.velocity.exception.ParseErrorException;
    import org.apache.velocity.exception.ResourceNotFoundException;
    import javax.servlet.ServletConfig;
    public class HelloTest extends VelocityServlet {
        public Template handleRequest( HttpServletRequest request,
                                       HttpServletResponse response,
                                       Context context ) {
            Properties p = new Properties();
            p.setProperty( "resource.loader", "class" );
            p.setProperty( "class.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader" );
            p.setProperty( "resource.loader", "file" );
            p.setProperty( "file.resource.loader.class", "org.apache.velocity.runtime.resource.loader.FileResourceLoader" );
            p.setProperty( "file.resource.loader.path", "/home/marcin/3ROK/1SEM/java1/ul/Velocity/build/web/WEB-INF/templates");
            p.setProperty( "file.resource.loader.cache", "true");
            p.setProperty( "file.resource.loader.modificationCheckInterval","2");
            try{
                Velocity.init(p);
            catch(Exception e){
                System.err.println("ZET 1 Exception caught: " + e.getMessage());
            Template template = null;
            try {
                context.put("name", "Velocity Test");
                System.out.println("Before gettemplate");
                template = Velocity.getTemplate("hello.vm");
                System.out.println("After Getting the Template"+template);
            } catch( Exception e ) {
              System.err.println("ZET 2 Exception caught: " + e.getMessage());
            return template;
    }When I tried localhost:8082/Velocty/HelloTest in netbeans in tomcat window
    i see this:
    Before gettemplate
    ZET 2 Exception caught: Unable to find resource 'hello.vm'
    2007-04-29 18:44:11 org.apache.velocity.runtime.log.JdkLogChute log
    SEVERE: ResourceManager : unable to find resource 'hello.vm' in any resource loader.

    Hi,
    Even iam facing the same problem..
    here is my code:
    try
                   System.out.println("*****************LOADING CONTEXT OBJECTS");
                   Properties p = new Properties();
                   p.setProperty( "resource.loader", "class" );
                   p.setProperty( "class.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader" );
                   //Velocity.init(p);
                   //Template template = Velocity.getTemplate( "report_email_html.vm" );
                   Velocity.init(p);
                   VelocityContext ctx = new VelocityContext();
                   ctx.put("myObject", new TestContext());
                   Template template = Velocity.getTemplate("/WEB-INF/DefaultTemplate.vm");
                   BufferedWriter writer = writer = new BufferedWriter(new OutputStreamWriter(System.out));
                 if(template != null)
                         template.merge(ctx, writer);
                writer.flush();
                writer.close();               
              catch(Exception e)
                   e.printStackTrace();
              }     Pls help me out

  • Runtime casting problems

    The following code gives me runtime casting problems:
    package edu.columbia.law.markup.test;
    import java.util.*;
    public class A {
       protected static Hashtable hash = null;
       static {
          hash = new Hashtable ();
          hash.put ("one", "value 1");
          hash.put ("two", "value 2");
       public static void main (String args []) {
           A a = new A ();
           String keys [] = a.keys ();
           for (int i = 0; i < keys.length; i++) {
               System.out.println (keys );
    public String [] keys () {
    return (String []) hash.keySet ().toArray ();
    The output on my console is:
    java.lang.ClassCastException: [Ljava.lang.Object;
            at edu.columbia.law.markup.test.A.keys(A.java:37)
            at edu.columbia.law.markup.test.A.main(A.java:29)I can not understand why is it a problem for JVM to cast?
    Any ideas?
    Thanks,
    Alex.

    return (String []) hash.keySet ().toArray ();This form of toArray returns an Object[] reference to an Object[] object. You cannot cast a reference to an Object[] object to a String[] reference for the same reason that you cannot cast a reference to a Object object to a String reference.
    You must use the alternate form of toArray instead:
    return (String []) hash.keySet ().toArray (new String[0]);This will return an Object[] reference to a String[] object, and this reference can be cast to a String[] reference.

  • Find out where class was loaded from

    Is there a way to find out from what resource the java runtime loaded a class from? I know that -verbose:class argument will tell where classes were loaded from during runtime for only normal sun libs (core libraries from rt.jar), but it does not say where it is loading external stuff from. Can this be found out?
    For example, if a particular third party class is available several times (through accidental redundancy in classpaths)-- find out which resource it was taken from.
    I am sure you could get down into the weeds and look thorugh all the classpath entries for which ones contain which classes-- but there has got to be a better way.

    import java.io.File;
    import java.net.JarURLConnection;
    import java.net.URL;
    import java.net.URLDecoder;
    private File getPathToClass(Class c)
         try
              URL url = getClass().getResource(c.getName() + ".class");
              if( url.getProtocol().equals("jar") )
                   JarURLConnection jarCon = (JarURLConnection)url.openConnection();
                   url = jarCon.getJarFileURL();
              File file = new File(URLDecoder.decode(url.getPath(), "UTF-8"));
              return file;
         catch(Exception e)
              return null;
    }

  • How can I notice whether a class is loaded or not?

    In the case of a instance, finallize() method can do it. But when it is a class?
    Does anyone know the way?

    In old JVM, the gc will collect any classes without any reference, however, JDK1.2 uses a new tech to collect classes, that is only if all classes that loaded by the same class loader do not have any reference to them, they are unloaded. So, in JDK1.2, if all you classes are loaded by the same class loader, once the class is loaded, it will be there untill you exit the program. Only if you use your own class loader to load some classes, or the application is a distributed application (that is, multiple JVMs are in use), the class unload and reload could be a problem.
    There is no direct finalize thing for classes, maybe JVM profile could help, since some application can use it to analysis the running program's memory usage (includes classes loaded). Or maybe a customized class loader could help. I'm not sure. Also the static initial codes could let you know the class is re-loaded, though it can't tell you when the class is un-loaded.

  • SRW248G4P - (!)Loader Binary checksum error - ERR Runtime Loading Fail - System Halt.

    We have this 48 port switch in our engineering department, and it basically stopped passing network traffic.
    When connecting to the Console port and power cycling the switch, this is what I see:
    Image Loader 1.0.1
    Loading Diagnostic Image File : SRW224G4P_SRW248G4P_boot.bix
    Diagnostic 1.0.1
    User Mode
    --- Performing Power-On Self Tests (POST) ---
    DUMMY Test 1 ................. PASS
    UART Loopback Test ........... PASS
    POE UART Loopback Test ....... PASS
    DRAM Test .................... PASS
    Timer Test ................... PASS
    Done All Pass.
    ------------------ DONE ---------------------
    (!)Loader Binary checksum error
    <ERR> Runtime Loading Fail - System Halt.
    This error obviously doesn't look "normal".
    When pressing CTRL-U, I get the following screen:
    File Name                         S/Up Type Size       Create Time
    $logfile_1                          0    3         64  1193046:28:15
    Factory_Default_Config.cfg          0    5        354  24:01:02
    SRW224G4P_SRW248G4P_boot.bix        1    1    1377600  00:01:03
    certificate                         0    8      18040  24:00:56
    startup-config                      1    5       5651  25:00:38
    startup1.cfg                        0    5       5537  24:01:14
    Free Space : 5636096
    [X]modem Download  [D]elete File  [S]et Startup File
    [Q]uit
    Select>
    I've tried to update the "SRW224G4P_SRW248G4P_image_v1310.bix" file using Xmodem download, but since I really wasn't sure how to use this boot loader tool, I haven't been successful at doing that, nor do I even know if that's the solution for the problem that I'm having.
    Xmodem Receiving Start ::
    XMODEM, Successful.
    Blocks Received = 7289
    Bytes Received = 394480
    Errors:
            Checksum   = 0
            Complement = 0
            Duplicates = 0
    Image downloaded to buffer.
            [R]untime
            [D]iagnostic
            M[u]ltipe Image
            [L]oader (Warning: Are you sure what you are doing?)
            [Q]uit
    Update Image File:r
    Runtime Image Filename : SRW224G4P_SRW248G4P_image_v1310.bix
    Updating file system.
    File system update fail.
    I'm guessing that I'll need to contact Cisco tech support, although at least through their web site, they make that nearly impossible to accomplish.
    Does anyone have any suggestions on what may have happened to our switch and what I should do to recover? Of course we're about to start a time-critical round of product testing, and without this switch, I'm dead in the water.  And it's not like we have a spare 48-port PoE switch lying around.

    Hello,
    I got the same issue. After downloading and uploading the firmware, I got the following result and all LED on the switch are glowing. Could you please help on this issue? Where can I find the right firmware. I also have Image loader 1.0.1.
    Xmodem Receiving Start ::
    XMODEM, Successful.
    Blocks Received = 6b59
    Bytes Received = 35ac80
    Errors:
            Checksum   = 0
            Complement = 0
            Duplicates = 0
    Image downloaded to buffer.
            [R]untime
            [D]iagnostic
            M[u]ltipe Image
            [L]oader (Warning: Are you sure what you are doing?)
            [Q]uit
    Update Image File:r
    Runtime Image Filename : SRW224G4P_SRW248G4P_image_v1020.bix
    Updating file system.
    File system update fail.
    File Name                         S/Up Type Size       Create Time
    All I got now after restarting the switch is:
    File Name                         S/Up Type Size       Create Time
    Factory_Default_Config.cfg          1    5        354  24:01:02
    certificate                         0    8      18040  24:00:56
    Free Space : 7602176
    [X]modem Download  [D]elete File  [S]et Startup File
    [Q]uit
    Select>
    Thnx in advance.

  • Find where Actionscript class is loaded from

    Hi folks,
              Is there anyway to tell where an actionscript class is loaded from (i.e. what swf file) at runtime? I've had a look at some of the reflection api's and some of the sample code but none seem to address this. I'm originally a Java developer and this is a fairly straightforward call. For any java developers who may be viewing this if I may I'll put in the java for which I'm looking for the equivalent actionscript if possible.
    Thread.currentThread().getContextClassLoader().getResource("java/lang/String.class").getPa th();
    This will give me the location jar/folder path from where the String class is loaded for the particular thread.
    Any help would be greatly appreciated,
    Mark.

    No official API, but there is a getSWFRoot on SystemManager that might help.

  • Flat-File Loading problem

    Hi Friends,
    I am struggling with flat-file loading problem. I am trying to load a .csv file into data target. I took all pre-cautions while loading data. I look into preview and simulate the data. Everything is ok, but when i schedule the data, i found 0 records in the monitor. The following is the STATUS message of the above problem:
       No data available
    Diagnosis
    The data request was a full update.
    In this case, the corresponding table in the source system does not
    contain any data.
    System response
    Info IDoc received with status 8.
    Procedure
    Check the data basis in the source system.
             Can anybody help me what is the problem and procdure to resolve it?
    Regards,
    Mahesh

    Hi Eugene,
    Thanks for the quick reply. The following screen-shot tells you the messages of detail tab;
    OVER ALL STATUS MISSING WITH MESSAGES OR WARNINGS
    REQUEST: MISSING MESSAGES
    EXTRACTION
    EVERYTHING IS OK
    DATA REQUEST RECEIVED
    NO DATA AVAILABLE DATA ELECTION ENDED.
    PROCESSING
    NO DATA
               The above message was shown in details tab. Pls guide me to locate the problem.
    Regards,
    Mahesh

  • App keeps loading problem solve

    Anyone with an app still loading problem can get rid of it by going into the app store. tap on "updates"- bottem right corner. tap on purchased where you get a list of your downloads then tap on the cloud with the arrow, enter your pin. hit ok for app over 20mb. go back into the app store and to your purchased list and wait for it to reload. once done come out of the app store and hopefully all the loading apps are gone. hope it works for you.

    I had this same problem when trying to download some training app. I could not delete or get it to upload completely either. Very frustrating. What I did was plug it into my computer, went to Itunes and searched the same app. I was able to download it here and then it starte to sync with my Iphone. You can remove the app after it finishes the download if u want. Hope this works!

  • Where do Pipeline Component classes get loaded from?

    Can someone please point me to some documentation that describes where my Pipeline
    Component classes get loaded from?
    I have just wasted hours on this - to find that they are not loaded from WEB-INF/classes
    - but instead they must be available to the EJB classloader. The sampleportal
    is completely misleading in putting the classes in WEB-INF/classes - because they
    are in fact loaded from the sampleportal EJB jar!
    Did I miss something obvious?
    regards,
    Nick

    Nick
    Refer to this portal doc on dev2dev
    ftp://edownload:[email protected]/pub/downloads/webflow.doc
    -tulan
    "Nick Minutello" <[email protected]> wrote
    in message news:[email protected]..
    >
    >
    Can someone please point me to some documentation that describes where myPipeline
    Component classes get loaded from?
    I have just wasted hours on this - to find that they are not loaded fromWEB-INF/classes
    - but instead they must be available to the EJB classloader. Thesampleportal
    is completely misleading in putting the classes in WEB-INF/classes -because they
    are in fact loaded from the sampleportal EJB jar!
    Did I miss something obvious?
    regards,
    Nick

  • Loader-Problem mit I.Explorer / FireFox ist OK

    Die Domain "http://woopi.net"
    enthält eine "site", die nur mit Flash generiert wurde.
    Teste ich diese "Site" mit Firefox, dann gibt es keine Probleme, alles OK.
    Teste ich mit dem Internet-Explorer, dann muß dieser erst lernen mit den LoaderKomponenten umzugehen,
    nach dem 2. oder 3. "rollOver" werden dann diese Elemente richtig angezeigt.
    Ziel-Beschreibung:
    beim Aufruf von "woopi.net"  wird auf dem Bildschirm die Bundesrepublik dargestellt.
    Ein Klick auf die BRD öffnet ein Navigationsfeld mit 7 Button.
    Der Klick auf den Button "Alle Banken in Deutschland" öffnet ein Navigationsfeld, in welchem bei einem RollOver
    unten links auf dem Bildschirm ein Bild angezeigt wird, in einer LoaderKomponente.
    Der InternetExplorer zeigt diese Bilder falsch an, erst nach dem 2., ev. nach dem 3. RollOver wird das Bild richtig angezeigt.
    Unten rechts auf dem Bildschirm gibt es den Zugang zu einem weiteren Navigationsfeld, "WebKatalog 2".
    Die Darstellung in diesem Navigationsfenster ist geradezu scheußlich.
    Hinweis:
    auch die Html-Seiten in denen die Flash-Seiten eingebettet sind,  wurden mit Flash-Cs4 generiert.
    Es wurden keine ProgrammErweiterungen verwendet.
    Wer kennt die Problemlösung?
    mfG, Jochen

    danke für die Information:
    "you have incomplete swf embedding code"
    Die Kompelation der html-Datei erfolgt unter Flash automatisch, ich habe leider
    "fast keine" html-Kenntnisse, kann also nur laborieren. Können Sie mir einen Hinweis geben ?
    cue.fla     "wurde kompelliert". Ergebnis:
    cue.swf
    cue.html
    Hier das, was ich vorfand:
    <body bgcolor="#e7e7e7">
    <!--Im Film verwendete URLs-->
    <a href="./cue/queue2.swf"></a>
    <a href="./cue/queue3.swf"></a>
    <a href="javascript: end("document.cue");"></a>
    <a href="http://www.basiszins.de"></a>
    <a href="http://www.onvista.de"></a>
    <!--Im Film verwendeter Text-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
    Es müßte vielleicht so aussehen:
    <body bgcolor="#e7e7e7">
    <!--Im Film verwendete URLs-->
    <a href="./cue/queue1.swf"></a>     //das Script in  cue.swf:   loadMovieNum("./cue/queue1.swf", 1);
    <a href="./cue/queue2.swf"></a>    //d.Script in queue1.swf:  on (release){loadMovieNum("./cue/queue2.swf",2);}
                                                        //d.Script in queue2.swf:   loadMovieNum("./cue/queue10.swf", 3);
    <a href="./cue/queue3.swf"></a>    //d.Script in queue1.swf:   on (release){loadMovieNum("./cue/queue3.swf",2);}
                                                       //d.Script in queue3.swf:    loadMovieNum("./cue/queue30.swf", 3);
    <a href="javascript: end("document.cue");"></a>
    <a href="http://www.basiszins.de"></a>
    <a href="http://www.onvista.de"></a>
    <!--Im Film verwendeter Text-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
    Das "Loader-Problem" zeigt sich aber schon in der "queue1.swf" Datei, welche nach _level1 geladen wird.
    Es wird hier nur Actionscript 2 eingesetzt. Bemerkenswert ist, daß sich Firefox ohne Probleme sehr stabil verhält.
    Vielleicht können Sie hiermit etwas anfangen. Wenn ein SreenShoot eine bessere Analyse ermöglicht, schiebe ich ein Bild gerne nach.
    mfG. Jochen

  • Access the property of main class in loaded swf.

    Hi
    i have one main.fla, its document class is main.as. the code in main.as is
    package
    import flash.display.MovieClip;
    public class Main extends MovieClip
    private var loading:Loading;
    public var trovami:Number=10;
    public function Main()
    stage.frameRate=31;
    loadSWF();
    private function loadSWF():void
    loading=new Loading(this);
    Loadind.as is another class where i load another swf its name is my_swf.
    the code of loading class is:
    package
    import flash.display.MovieClip;
    import flash.display.SimpleButton;
    import flash.text.TextField;
    import flash.display.Loader;
    import flash.events.*;
    import flash.net.URLRequest;
    public class Loading extends MovieClip
    private var _fla:MovieClip;
    private var url:String;
    public var val:String;
    private var loader:Loader;
    public function Loading(fla:MovieClip)
    _fla=fla;
    init();
    private function init():void
    url='my_swf.swf';
    var request:URLRequest=new URLRequest(url);
    loader=new Loader();
    initListeners(loader.contentLoaderInfo);
    loader.load(request);
    private function initListeners(dispatcher:IEventDispatcher):void
    dispatcher.addEventListener(Event.COMPLETE,completato);
    private function completato(event:Event):void
    _fla.addChild(loader);
    loader.y=10;
    val="hello"
    and the document class of loaded swf is Main2. in my_swf.fla there is one text its name is:
    a_txt.
    so i have to use property of Loading class in Main2 for text.
    code of Main.as is
    package
    import flash.display.MovieClip;
    import flash.text.*;
    public class Main2 extends MovieClip
    public function Main2()
    a_txt.text=val;
    where val is the property of Loading class.
    so how can i access.

    You have a reference to your loaded movie within your Loading class - instead of just setting val to a string - add a method in your Main2 class - and call that from Loading - passing the string to it. Push not pull...
    Main 2 becomes:
    public function Main2() {
         //a_txt.text=val;
    public function setText(val:String):void {
        a_txt.text = val;
    And then in your Loading class - when you're done loading just call setText:
    private function completato(e:Event):void
        addChild(loader);
        loader.y=10;
        MovieClip(loader.content).setText("hello");
        //val="hello";

  • XSD Loading problem

    I got this error from bpel console .. Can any one please update on this.. Why this this error should occur?.
    <messages><input><InvokePlanningOrderRoadshowProducerInputVariable><part name="PlanningOrderRequest" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><PlanningOrderRequest xmlns:ns0="http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder" xmlns="http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder">
    <ns0:PlanningOrderHeader>
    <ns0:OrderId>10215568</ns0:OrderId>
    <ns0:BookingId/>
    <ns0:OrderType>Standard</ns0:OrderType>
    <ns0:CustomerName>MRS JUNE OCKWELL</ns0:CustomerName>
    <ns0:ClientAccountId>EMP</ns0:ClientAccountId>
    <ns0:ClientPreAdviceNumber/>
    <ns0:Title/>
    <ns0:ClientOrderNumber>W3221000-36</ns0:ClientOrderNumber>
    <ns0:Latitude>53.526969</ns0:Latitude>
    <ns0:Longitude>-2.657221</ns0:Longitude>
    <ns0:Street/>
    <ns0:HouseNumber>8 Bentinck Street</ns0:HouseNumber>
    <ns0:Postcode>WN3 6RB</ns0:Postcode>
    <ns0:Town>WIGAN</ns0:Town>
    <ns0:Status/>
    <ns0:PhoneCallRequired>Y</ns0:PhoneCallRequired>
    <ns0:Phone1>01942202596</ns0:Phone1>
    <ns0:Phone2>07584651731</ns0:Phone2>
    <ns0:SlotPeriodStart/>
    <ns0:SlotPeriodEnd/>
    <ns0:SlotLength/>
    <ns0:StopDuration/>
    <ns0:PlanningOrderLines>
    <ns0:PlanningOrderLine>
    <ns0:OrderLineId>443405</ns0:OrderLineId>
    <ns0:OrderId>10215568</ns0:OrderId>
    <ns0:ItemNumber>EMP-TC750</ns0:ItemNumber>
    <ns0:ItemDescription>RICHMOND KING BED</ns0:ItemDescription>
    <ns0:NoOfPieces>03</ns0:NoOfPieces>
    <ns0:ServiceString>01000</ns0:ServiceString>
    <ns0:ShipsetId>01</ns0:ShipsetId>
    <ns0:ClientUPI>009707300553D094</ns0:ClientUPI>
    <ns0:OrderLineType>Delivery</ns0:OrderLineType>
    <ns0:OrderLineNumber>01</ns0:OrderLineNumber>
    <ns0:SpecialInstruction>IF NOT IN GO TO NUMBER 6 FOR KEY</ns0:SpecialInstruction>
    <ns0:DeliveryVolume/>
    <ns0:DeliveryWeight/>
    <ns0:CollectionWeight/>
    <ns0:CollectionVolume/>
    <ns0:Status>LOADED</ns0:Status>
    </ns0:PlanningOrderLine>
    </ns0:PlanningOrderLines>
    </ns0:PlanningOrderHeader>
    </PlanningOrderRequest>
    </part></InvokePlanningOrderRoadshowProducerInputVariable></input><fault><bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>file:/SOA2M01/app/oracle/product/10.1.3/bpel/domains/operations/tmp/.bpel_PlanningOrder_1.0_06bcbd311b9a0d44d808edcbcee42770.tmp/PlanningOrderRoadShowProducer.wsdl [ Produce_Message_ptt::Produce_Message(PlanningOrderRequest) ] - WSIF JCA Execute of operation 'Produce_Message' failed due to: Could not instantiate InteractionSpec oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec due to: XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    ORABPEL-12537
    XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    org.collaxa.thirdparty.apache.wsif.WSIFException: Could not instantiate InteractionSpec oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec due to: XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    ORABPEL-12537
    XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    </summary>
    </part><part name="detail"><detail>org.collaxa.thirdparty.apache.wsif.WSIFException: Could not instantiate InteractionSpec oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec due to: XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    ; nested exception is:
    ORABPEL-12537
    XSD Loading problem.
    Unable to load Translation schemas from for http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder due to: XSD Location problem.
    No XSD (XML Schema) found for target namespace http://xmlns.hdnl.com/EnterpriseObject/Core/PlanningOrder and input element PlanningOrderRequest
    Please make sure the WSDL message points to a valid type.
    Please make sure all used XML schemas are imported/included correctly.
    </detail>
    </part></bindingFault></fault></messages>

    You remove xmlns:ns0 attribute from PlanningOrderRequest and the prefix ns0: from xsd tags. When you declare xmlns:ns0 means it is looking for that ns0 namespace in the project directory or oracle server global directory.

  • PSE 12 trial version - loading problems

    I have been trying for 3 days to load the 30 day trial of PSE12 on my new computer. My computer is loaded with Windows 8.  I have encountered problems over and over again with loading PSE12, but never the same problem.
    For example: after one download the start menu would open but it wouldn't go to the organizer or editor.  So I deleted that program and re-loaded it BUT -
    then , it went straight to the organizer - and froze, so I clicked out - tried to click back in, and NOTHING> >> not even the start menu.
    THIS IS SOOO FRUSTRATING! Makes me really second guess whether I should purchase this or not
    Please help!!!

    I think it said error 101, but not totally sure that I recall it 
    correctly.  I deleted everything and reinstalled and then it  worked.
    Haldis
    In a message dated 12/31/2013 11:27:15 A.M. Pacific Standard Time, 
    [email protected] writes:
    Re:  PSE 12 trial version - loading problems
    created by Jeff A Wright (http://forums.adobe.com/people/JeffAWright) 
    in  Trial Download & Install - View the full  discussion
    (http://forums.adobe.com/message/5969733#5969733)

Maybe you are looking for