Project help

Hi,
i am learning flash AS 3.0 please give me some suggestions how to manage my project.
i have a project in which i have to submit a movie which explain about company. i choose a company and gather the required presentation detalis. they want me to make it like it has to play like a movie in the exhibition and also they can use it as a UI in which they have a control with menu buttons play and pause buttons, volume buttons on/off. and also they can send to their client by email.
i know how to create all this buttons. i want to have some suggestions from you guys that how do i set it like a movie and also like a interface?? i want menu to be hide after few seconds so we can see the entire movie and if we need to use it as a UI so user touches the mouse so it gives us menu options.
thanks

Hi,
Thanks for reply
I dont want each and every detail of the project. i want to know is it  possible to create in parts and finally i should merge it into one? or i  should make it in one fla file itself.
i am trying to create something like this,
http://www.oxygen-productions.com/project/vmware-flash-presentation
Thanks

Similar Messages

  • After mixing a project i select bounce and burn the disc that is burned plays on any cd player but when i try to burn the wav or mp3 file that was created the resulting disc will only play in a computer this also happens with video projects help please

    after mixing a project i select bounce and burn the disc that is burned plays on any cd player but when i try to burn the wav or mp3 file that was created the resulting disc will only play in a computer this also happens with video projects help please are there any settings i need to alter as it seems the wav or mp3 file i ceated is being converted to a data file somewhere between the folder and disc drive

    Same thing for a movie file.. If you want to play back the movie via a DVD and a DVD player you must create a Movie DVD  and not just burn files to a data DVD... as Data DVDs are just storage devices for files and therefore will only work with computers...
    Movie DVDs are special formats that include things like menus and special file formats.. so they can playback via a DVD Player...
    You will need a 3rd party DVD Burning app like Toast which is what i actually use.... or the more popular DVD Creator app...to create and then burn a Movie DVD that will playback on a DVD Player....
    https://answers.yahoo.com/question/index?qid=20101220205435AA70beb

  • Devoloping project help for java projects

    hi
    we have done a project using java swings. now we need to provide project help documentation, and
    that help should be accessed from the menu.
    can u please give me any approch for this?
    thank u
    sarabh.

    You can start from this point.
    http://java.sun.com/developer/JDCTechTips/2002/tt0423.html

  • Objects in symbols disappearing after closing/reopening project-HELP!!!

    I am a college student working in flash CS5 and am in the middle of an animation project where i am creating a walking human figure using armatures.
    I began the project on the school computers, everything working fine. saved project to several places, including flash drive and computer's thaw space
    brought project home to continue working on my macbook. opened project and figures animated arms and legs (which were perfect on school comp) are completely missing. The symbol names are still in the library, but the objects themselves look like they've been deleted. they are nowhere to be found.
    This has happened every single time I close flash and reopen it, whether on the same or a different computer.
    I have had to recreate the whole project from scratch 4 times now because of this.
    I came in early to class to work on the project more, and lo and behold, it opened with all the arms and legs (the ones i had redone for the 4th time, from the most recent work session on my laptop). I continued working on the project, all going great, but then another class came in and i had to change computers.
    I saved in multiple places again, flash drive, thawspace, etc. and moved to another computer. Opened project from my flash drive, and the arms and legs are all missing again. i just have a floating head and torso, and the project is due in an hour. There's no way I can recreate all the drawings and armatures and animations from scratch a 5th time in just an hour.
    Here is any additional info that might help:
    both school and home computers are running Flash CS5
    began project on school computer using several flash files:
         1st file was simply to draw the pieces of the figure.
         2nd file i imported pieces from file 1 into library to begin animating in file 2.
         (once the objects were imported into file 2's library, file 1 should not affect them right?)
    I continued to improve and refine and eventually animate body parts in file 2, saving continually.
    As long as project is not closed, everything works perfectly. Once project is closed and reopened (even on same computer) armatured objects disappear.
    Their symbol names (placeholders) still appear in the library, but when you select them and see the overhead preview or enter symbol editing mode, it shows a blank screen.
    ******IMPORTANT******
    organization of files is this, in descending order from outtermost to innermost symbols
    1. mc_model-------------a movie clip of the entire figure, containing all the figures individual animated parts as separate symbols
    2. gs_leg------------------a graphic symbol containing one keyframe extending 40 frames, simply a placeholder for the armatured leg in the nested symbol
    3. gs_legArmature-----another graphic symbol containing the original drawing of the leg, also the leg's armature and animation, lasting 40 frames.
    NOW here's the thing.....when you enter into all of these symbols (mc_model>gs_leg>gslegArmature) and you are on the deepest level of the leg which contains the armature, once the project has been closed and reopened, the ARMATURE IS STILL THERE. The poses are still recorded in the timeline, the armature bones or connections or whatever the name for them is are still there, just the actual leg is gone. Just the drawing of the leg.
    I will try to attach a screenshot so you can see what I'm talking about
    http://i295.photobucket.com/albums/mm150/haleymariemackenzie/Picture2.png
    <img src="http://i295.photobucket.com/albums/mm150/haleymariemackenzie/Picture2.png">
    Hopefully that worked......
    Any help is appreciated. It is too late to save my project, but I want to get to the bottom of this so I can at least avoid it in the future.
    Thank you

    We are checking the cursor status from v$open_cursors. As you said it may be cached cursors.
    We have find out one more thing in connection pooling setting in Tomcat.
    It is having the below setting :
    connectionCacheProperties="(InitialLimit=2, MinLimit=2, MaxLimit=1024, MaxStatementsLimit=50, ConnectionWaitTimeout=10, InactivityTimeout=300, PropertyCheckInterval=600)"
    connectionCachingEnabled="true"
    If we are changing the value as follows , then the database is not showing any open cursors or even inactive connections.
    connectionCachingEnabled="false"
    But we cannot change this to false because of some other reasons .
    Can anybody explain why it is happening. Is there any other way around ?

  • How do you incorporate an ArrayList inside a ComboBox (GUI Project Help)?

    Basically, I created a project around NBA Greats of Our Past. There is around 76 players so rather than typing all of them up in JCreator, how can you use an Arraylist to make things easier. I already created the spreadsheet on Excel with all the names. But the problem is that I don't know how to use them inside my ComboBox.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ComboBoxDemo extends JFrame {
         private String[] nbaGreats = {"Michael Jordan"};
         private ImageIcon[] nbaImage = {
              new ImageIcon("H:/jordan.jpeg")
         private String[] nbaDescription = new String[1];
         private DescriptionPanel descriptionPanel = new DescriptionPanel();
         private JComboBox jcbo = new JComboBox(nbaGreats);
         public static void main(String[] args)
              ComboBoxDemo frame = new ComboBoxDemo();
              frame.pack();
              frame.setTitle("NBA Greats");
              frame.setLocationRelativeTo(null);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setVisible(true);
         public ComboBoxDemo() {
              nbaDescription[0] = "(Included Yet, Description not Included Yet";
              setDisplay(0);
              add(jcbo, BorderLayout.NORTH);
              add(descriptionPanel, BorderLayout.CENTER);
              jcbo.addItemListener(new ItemListener() {
                   public void itemStateChanged(ItemEvent e) {
                        setDisplay(jcbo.getSelectedIndex());
         public void setDisplay(int index) {
              descriptionPanel.setTitle(nbaGreats[index]);
              descriptionPanel.setImageIcon(nbaImage[index]);
              descriptionPanel.setDescription(nbaDescription[index]);
                   I Included a picture for reference. [http://img442.imageshack.us/i/98328443.png/]
    Edited by: lilazndood1 on May 28, 2010 6:50 AM

    Its a working example. The tutorial examplains the code in steps.
    Any code we give you will be no different.
    but it doesn't really help me because I don't understand itIf you have a specific question about the code from the demo then maybe we can help you, but "I don't understand it" is not a question.

  • Archiving of spool requests (ERS documents) Apprentice Project HELP needed..

    Hi guys,
    I'm an apprentice from Germany and I have to do a project for my final exams. I could desparetly Need some help on getting started.
    In our SRM, we have a program for the Generation of ERS documents (credit note?).
    Firstly, the Programm BBPERS creates ERS Idocs on Basis of stock-receipt (?). Secondly, the program RSPPFPROCESS sends the ERS invoice to the supplier via mail.
    The document is saved only as an email.
    We do have a Z-Programm, ZZBBPERS, that is used for subsequent creation of ERS documents as PDFs. These are saved in the Spool, but for each invoice a different spool number is created.
    Now my Task is to find a way to Archive these ERS documents into an external Archive. We use d.3 as Archive, I don't know if you have heard of it. But that shouldn't matter right now.
    So the question is, how can this be achieved? I don't really know anything about archiving in SAP. And this is a very Special case. Where do I have to start? Do I Need to write a program, or can I use some of SAPs Standard possiblities? What programs are there for archiving spools? Can they be defined as only archiving Spools from program X? Where do I define archiving procedures?
    I hope some of you can get me started. I don't Need a perfect solution right off the bat, just a place to start and ideas how to Approach this Project.
    Thanks SO MUCH in advance for any help!
    Greetings,
    Sebastian

    Thank you so much, this brought me a leap Forward.
    So the Business object should be the BUS2207, right? This is our Business object for ERS. We don't have BUS2081, what is that?
    edit: Wait, what is the difference between Business Object and Archiving Object? We do not have an archiving object vor ERS.
    To clarify: We do not book in SRM, we are sending it per Idoc to another SAP System where the booking takes place.
    We are just creating the PDF out of the BUS2207 and sending it to the vendor via RSPPFPROCESS and Action "BBP_ERS".
    Can you tell me where I can see detailed Information for the Archive Connection? I have the entry in OAC0 with IP address and all. But we have no records of ever archiving in this System so how can I see Connection details and test it?
    I also have to analyze if ArchiveLink is already set up and working..
    Also, where do I define how the files are saved in the storage System? With this I mean like in which Content repositories / Folders and so on they are saved.
    What Information are given to the PDF? All document informations, like Dates invoice number and so on? How can I use them for my Archive structure?
    Thanks in advance.

  • Oracle ADF project help needed

    Hi all,
    Looking for some guys to help out on a project for about 7 weeks. Start early March. On site. Oracle ADF with Java. Good pay rates!
    Thanks a lot, please contact me!

    Hi,
    very nice to talking with you through oracle forums. what kinds of help you needed.
    You are looking for java with oracle ADF, Toplink developer....or anyother
    can you make it clear.
    regards,
    abu
    Message was edited by:
    asufian

  • Pre-Project help needed

    I have used PE7 successfully with single camera footage from my Canon GL2 (nonHD). Now, I want to add an additional camera to get two simultaneous shots, then edit together in the timeline.
    To that end I purchased a Canon VIXIA HFS100. This shoots AVCHD (HD) format. My goal will be to end up with a non HD project in PE7 to then write to standard DVD's.
    The new Canon s100 has 5 shooting modes according to file size and quality. Is there a suggestion as to which I should shoot in as I will ultimately not be getting an HD product at the end and the highest quality takes lots of computing power to deal with?
    What settings should I be using to import the HD files into PE7?
    Any other tips before I get started? This will be a challange for me I'm sure and I appreciate any help I can get ahead of time...and I'm sure I'll be back in the "during"part of the project as well.
    Kenny

    What do you mean by "matching source footage"? Does that refer to vertically stacking the two video tracks in the timeline so as to be in sync with the audio track?
    This refers to getting the source footage from each camera to match in all aspects. DV-AVI Type II is a great format/CODEC to work with, as it is the "native" format of both PrE and PrPro.
    As for syncing the footage, the slate/clapper is a good idea. Now, with your case, the live performances, one thing to remember will be that both cameras need to shoot the slate, and then continue to run. Otherwise, one would need to reslate for each "take" for both cameras, and this will not be possible with a live performance. You'll just get more footage, than you will likely use with the second camera, the one used for CU's, etc. Much of it will just "hit the cutting room floor." Were you doing a dramatic, scripted movie, then you would just slate each take, but you will likely not have the leisure to do this.
    Not sure what is being suggested by this:
    In PrPro, one can turn ON/OFF the visibility of either Video Layer, at will. PrE does not allow for this, so adjusting Opacity is the only way that I can see to "get to" the footage on the lower Video Track. Because PrPro also offers a full multi-cam mode, you get two (or more) monitors to view the individual Tracks.
    Now, with regard to your computer. I feel that you will have performance issues trying to use it for the AVCHD footage. Most recommend a minimum of a new Quad-core CPU. Many recommend dual Quads, and some feel that the performance is so greatly compromised by the material, that they adhere to dual 7i's, as their minimum. AVCHD is very highly CPU intensive - more so than other formats.
    The 4GB RAM will help you, but I would be curious about your I/O subsystem, i.e. your HDD's, their size, speed, controller type, free space and how each is allocated. Most editing and playback is highly I/O intensive (usually more so than CPU-intensive, but not so with AVCHD), so this is a very important aspect of your computer.
    Good luck on your Project,
    Hunt

  • IDVD PROJECT help needed - file size

    I have a new imac g5 and I used imovie to make a project. I uploaded my project in idvd 112 min and it says my project is 4.5gig??? and it won't let me burn this on a 4.7 gig single disks. It says I need a dual layer disk? Please help I don't know why I need another disk if I'm within the limit.

    Hi pfruge,
    Welcome to the Discussions.
    Go to the iDVD's menu Project > Project Info, change the "Media type" to 4GB (Single-layer).

  • New Mac Pro - Aperture and a massive new project - help me be smart!

    I am receiving a Mac Pro 2.66 Friday and adding in 4 GB RAM and 2 500GB HDS, Aperture and Final Cut Studio and a lot of music software. Moving up from a G4 450 DP.
    I received a very nice fellowship and will officially begin the project on June 1, continuing until August, 2008. I will be filming in all 92 Indiana counties - mainly nature and historic sites for a few DVD programs for schools in my county. I expect to end up with 30,000 + images when it is all said and done.
    Before I begin, do any of you experienced digital photographers have any advice for someone in my position? You know, "what I wish I had known when I started using Aperture" kind of advice.
    I use a Nikon D70, 5 various lenses and will shoot RAW. I am an experienced photographer, so I am not looking for shooting tips, etc.
    Thanks for any tips.
    G4 450DP   Mac OS X (10.4.6)  

    That sounds like a great project.
    People have already emphasized the importance of backing up. I can't pile on with any more emphasis. Backup, backup, and backup some more. I have five copies of every RAW file I've ever made across four different disks and DVD's. The DVD's are located in a remote location. I had an issue with my hard drives about three months ago that caused all my hard drives to loose their data--complete loss. If not for my DVD's, I would've lost 30,000 RAW files let alone all the processed images.
    I'm working an article on my backup strategy that should be published in the next week or so. If you want, send me an e-mail and I'll give you a link to my site when it's done.
    This next article is about file naming. I've been using this same convention for 8 years. It works as well as anything. The other recommendations are also excellent especially the ones about adjusting your convention when sending to clients.
    http://www.keiko-ni.com/keikosite/equiptech/digital/filenaming/filename1.html
    This final article is about my initial workflow. I am not a "copy the CF card prior to import" kind of guy. Call me gutsy. Metadata and keywords will be your most important friend during a project this size. Being able to quickly get to images for various purposes will be extremely important. To be a high end, high capacity photographer also means being a data manager. It's a fact of life. Secondly, start early and don't get behind keywording. That will only slow you down later. The key to this in Aperture is using the keyboard shortcuts. Learn those. It'll help lost later.
    http://www.keiko-ni.com/wordpress/?p=13
    Cheers
    1.67ghz PB, 2.66 MP   Mac OS X (10.4.9)  

  • Can't open my project, help please...

    I've spent hours and hours on my wedding video project... When I was working on it, iMove suddenly crashed and then I can't open the project any more...
    I can't open, edit, duplicate and export the project. It allows me to play it in full screen but the content is incomplete.
    My other two projects are fine.
    I tried to reinstall iMovie (delete the program and com.apple.pkg.iMovieXXXX files, and reinstall and update) but it didn't help...
    I tried to repair the disk permissions but it didn't help...
    Could anyone please save me and my project..
    I was using Lion and iMovie 11 with the latest updates. My labtop is MBP 15'' mid-2010.
    Thanks!

    Anyone could help me please ???

  • Can't add any more to project--HELP!!!

    I'm trying to make a slideshow-type movie in iMovie09 using mostly music, photos, and titles with a few videos. However, I'm 2 min. into the video, and it won't let me add any more photos or titles to my project. It will let me add video just fine, but nothing else. It won't let me expand the music after the pictures either. Is there a way to fix this, or is this just how iMovie works? I'm also having trouble selecting clips to edit that are already in my project. I will click on a clip, and it will come up with a window that says "no clip selected." I don't know if this is a related problem or not, but I need help--and FAST! project due tomorrow night. thanks.

    This sounds like a corrupted database.
    Option 1
    Back Up and try rebuild the library: hold down the apple and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • Can't Open Projects HELP...  Keep getting errors

    I tried to open any of my projects in STP and I get the following error:
    "CNSExceptionWrapper
    type = 16777216, error = 1718449215, message = error: Could not create audio converter"
    I can't find any solution in the search, so I am hoping someone can help.
    I did a clean install when I installed Leopard and so far its been good, except STP2. Using STP 2.02 and have all current updates.
    Anyone know how to resolve this problem? Thanks

    ARGHHH !!!
    Does anyone know what this error is ? I've had exactly the same problem with my system, not sure if it was the Prokit update that I installed the other day, or perhaps a corrupt media file that STP is trying to link to ??? I've looked on Google and there's absolutely nothing about this kind of error.
    Anyone with ANY kind of suggestion would be helpful. We're working on quite a large project, and I'm not able to open my main timeline !!!
    HELP !

  • Large iDVD Project (help with iMovie formats, time totals, quality)

    Hi,
    I am in the process of finishing up a large DVD project. I went on a six month backpacking trip, and have lots of photos/small clips to make a DVD from. I will have a main menu in iDVD with submenus for each country (Mexico, Cook Islands, NZ, Australia, Vietnam, Thailand, India)
    On each submenu will be around 4-5 movies of around 2-5 minutes each.
    I created movies using iMovie (imported sound-less iPhoto slideshows 640x480 expored as MOV file) and added captions, music etc in iMovie. Each 'movie' is about 1-5 minutes long.
    First question:
    What is the best format to export these movies in? I will be adding them to iDVD. But when I export them, they are around 100-700Mb each depending on time of the movie. I used the expert settings (to Quicktime Mov) using the following settings:
    Video:
    Compression: Mpeg-4 Video
    Quality: Best
    Frame Rate: 60
    key frame rate: 24
    Dimensions: 720x526 4:3
    audio:
    format: AAC
    Sample rate: 48.000Khz
    Bit Rate 128
    Stereo
    In my iDVD project - the menu loops are maximum 30 seconds each, with the audio cut to the same length (ie. not trimmed in the menu - the actual mp3 added is 30seconds etc)
    Now, big question is:
    Do I have a total of 2 hours for everything? All menus,and all movies ? Is there ANY way of calculating this in iDVD or do I have to do it manually (estimate) ???
    I notice with iDVD 8.0 it has a indicator of the space available etc. I have iDVD 6.0 so that doesn't help me now I guess?
    What I need to ask is that - maybe using expert settings to mov files is unnecessary? What would you recommend as the export settings?
    I have been working on the iMovie projects for months and can re-export them all in different format if need be, and can simply re-add the movies to iDVD. I have set up the shell of the DVD in iDVD but not added the movies yet (I have the placeholders there for them).
    Anyway - hopefully I haven't blabbed on too much that someone out there can offer some advice?
    Cheers and THANK YOU!
    Alessandro

    Best Performance: For projects up to one hour
    Best Quality: For projects up to two hours
    If your project is longer than one hour, you have to use Best Quality. Generally, the quality will be fine but the closer your get to that two hour limit, the more possibility you have of seeing some quality hits.
    I deal with lots of long projects and generally if a project is longer than 90 minutes (specially since my projects have lots of fast motion, low light, etc) I split them up over two DVDs, keeping each under the one hour limit. That does give you your best quality option

  • Mutliple wsdl operations for a port in BPEL Project -- Help

    I was trying to create a BPEL project with multiple operations for one port type. I used a pick activity and on message acitivity to branch out based on the operation. For some reason all the operations are channeled through the same branch (operation). Please share with me your experiences and any simple project.
    -----------------wsdl file -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    &lt;?xml version="1.0" encoding="UTF-8"?&gt;
    &lt;definitions name="MultiWsdl"
    targetNamespace="http://xmlns.oracle.com/MultiWsdl"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:client="http://xmlns.oracle.com/MultiWsdl"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"&gt;
    &lt;!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    TYPE DEFINITION - List of services participating in this BPEL process
    The default output of the BPEL designer uses strings as input and
    output to the BPEL Process. But you can define or import any XML
    Schema type and use them as part of the message types.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --&gt;
    &lt;types&gt;
    &lt;schema xmlns="http://www.w3.org/2001/XMLSchema"&gt;
    &lt;import namespace="http://xmlns.oracle.com/MultiWsdl" schemaLocation="MultiWsdl.xsd" /&gt;
    &lt;/schema&gt;
    &lt;/types&gt;
    &lt;!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    MESSAGE TYPE DEFINITION - Definition of the message types used as
    part of the port type defintions
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --&gt;
    &lt;message name="MultiWsdlRequestMessage"&gt;
    &lt;part name="payload" element="client:MultiWsdlProcessRequest"/&gt;
    &lt;/message&gt;
    &lt;message name="MultiWsdlResponseMessage"&gt;
    &lt;part name="payload" element="client:MultiWsdlProcessResponse"/&gt;
    &lt;/message&gt;
    &lt;!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    PORT TYPE DEFINITION - A port type groups a set of operations into
    a logical service unit.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --&gt;
    *&lt;!-- portType implemented by the MultiWsdl BPEL process --&gt;
    *&lt;portType name="MultiWsdl"&gt;
    *&lt;operation name="Create"&gt;
    *&lt;input message="client:MultiWsdlRequestMessage"/&gt;
    *&lt;output message="client:MultiWsdlResponseMessage"/&gt;
    *&lt;/operation&gt;
    *&lt;operation name="Update"&gt;
    *&lt;input message="client:MultiWsdlRequestMessage"/&gt;
    *&lt;output message="client:MultiWsdlResponseMessage"/&gt;
    *&lt;/operation&gt;
    *&lt;/portType&gt;
    &lt;!-- portType implemented by the requester of MultiWsdl BPEL process
    for asynchronous callback purposes
    --&gt;
    &lt;portType name="MultiWsdlCallback"&gt;
    &lt;operation name="TestReply"&gt;
    &lt;input message="client:MultiWsdlResponseMessage"/&gt;
    &lt;/operation&gt;
    &lt;/portType&gt;
    &lt;!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    PARTNER LINK TYPE DEFINITION
    the MultiWsdl partnerLinkType binds the provider and
    requester portType into an asynchronous conversation.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --&gt;
    &lt;plnk:partnerLinkType name="MultiWsdl"&gt;
    &lt;plnk:role name="MultiWsdlProvider"&gt;
    &lt;plnk:portType name="client:MultiWsdl"/&gt;
    &lt;/plnk:role&gt;
    &lt;plnk:role name="MultiWsdlRequester"&gt;
    &lt;plnk:portType name="client:MultiWsdlCallback"/&gt;
    &lt;/plnk:role&gt;
    &lt;/plnk:partnerLinkType&gt;
    &lt;/definitions&gt;
    ---------------- Bpel File ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    &lt;?xml version = "1.0" encoding = "UTF-8" ?&gt;
    &lt;!--
    Oracle JDeveloper BPEL Designer
    Created: Thu Nov 06 21:46:50 PST 2008
    Author:
    Purpose: Asynchronous BPEL Process
    --&gt;
    &lt;process name="MultiWsdl" targetNamespace="http://xmlns.oracle.com/MultiWsdl"
    xmlns="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:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:client="http://xmlns.oracle.com/MultiWsdl"
    xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"&gt;
    &lt;!--
    PARTNERLINKS
    List of services participating in this BPEL process
    --&gt;
    &lt;partnerLinks&gt;
    &lt;!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    --&gt;
    &lt;partnerLink name="client" partnerLinkType="client:MultiWsdl"
    myRole="MultiWsdlProvider"
    partnerRole="MultiWsdlRequester"/&gt;
    &lt;/partnerLinks&gt;
    &lt;!--
    VARIABLES
    List of messages and XML documents used within this BPEL process
    --&gt;
    &lt;variables&gt;
    &lt;!-- Reference to the message passed as input during initiation --&gt;
    &lt;variable name="inputVariable"
    messageType="client:MultiWsdlRequestMessage"/&gt;
    &lt;!-- Reference to the message that will be sent back to the requester during callback --&gt;
    &lt;variable name="outputVariable"
    messageType="client:MultiWsdlResponseMessage"/&gt;
    &lt;variable name="OnMessage_TestReq_InputVariable"
    messageType="client:MultiWsdlRequestMessage"/&gt;
    &lt;variable name="OnMessage_TestReq_InputVariable_1"
    messageType="client:MultiWsdlRequestMessage"/&gt;
    &lt;variable name="Reply_2_TestReq_OutputVariable"
    messageType="client:MultiWsdlResponseMessage"/&gt;
    &lt;variable name="Reply_1_TestReq_OutputVariable"
    messageType="client:MultiWsdlResponseMessage"/&gt;
    &lt;/variables&gt;
    &lt;!--
    ORCHESTRATION LOGIC
    Set of activities coordinating the flow of messages across the
    services integrated within this business process
    --&gt;
    &lt;sequence name="main"&gt;
    &lt;!-- Receive input from requestor. (Note: This maps to operation defined in MultiWsdl.wsdl) --&gt;
    &lt;!--
    Asynchronous callback to the requester. (Note: the callback location and correlation id is transparently handled using WS-addressing.)
    --&gt;
    &lt;pick name="Pick_1" createInstance="yes"&gt;
    &lt;onMessage portType="client:MultiWsdl" operation="Update"
    variable="OnMessage_TestReq_InputVariable_1"
    partnerLink="client"&gt;
    &lt;sequence name="Sequence_1"&gt;
    &lt;assign name="Assign_1"&gt;
    &lt;copy&gt;
    &lt;from expression="'test'"/&gt;
    &lt;to variable="Reply_1_TestReq_OutputVariable"
    part="payload"
    query="/client:MultiWsdlProcessResponse/client:result"/&gt;
    &lt;/copy&gt;
    &lt;/assign&gt;
    &lt;reply name="Reply_2" partnerLink="client"
    portType="client:MultiWsdl" operation="Update"
    variable="Reply_1_TestReq_OutputVariable"/&gt;
    &lt;/sequence&gt;
    &lt;/onMessage&gt;
    &lt;onMessage portType="client:MultiWsdl" operation="Create"
    variable="OnMessage_TestReq_InputVariable"
    partnerLink="client"&gt;
    &lt;sequence name="Sequence_2"&gt;
    &lt;assign name="Assign_2"&gt;
    &lt;copy&gt;
    &lt;from expression='"AB"'/&gt;
    &lt;to variable="Reply_2_TestReq_OutputVariable"
    part="payload"
    query="/client:MultiWsdlProcessResponse/client:result"/&gt;
    &lt;/copy&gt;
    &lt;/assign&gt;
    &lt;reply name="Reply_1" partnerLink="client"
    portType="client:MultiWsdl" operation="Create"
    variable="Reply_2_TestReq_OutputVariable"/&gt;
    &lt;/sequence&gt;
    &lt;/onMessage&gt;
    &lt;/pick&gt;
    &lt;/sequence&gt;
    &lt;/process&gt;
    ----------xsd -------
    &lt;schema attributeFormDefault="unqualified"
    elementFormDefault="qualified"
    targetNamespace="http://xmlns.oracle.com/MultiWsdl"
    xmlns="http://www.w3.org/2001/XMLSchema"&gt;
    &lt;element name="MultiWsdlProcessRequest"&gt;
    &lt;complexType&gt;
    &lt;sequence&gt;
    &lt;element name="input" type="string"/&gt;
    &lt;/sequence&gt;
    &lt;/complexType&gt;
    &lt;/element&gt;
    &lt;element name="MultiWsdlProcessResponse"&gt;
    &lt;complexType&gt;
    &lt;sequence&gt;
    &lt;element name="result" type="string"/&gt;
    &lt;/sequence&gt;
    &lt;/complexType&gt;
    &lt;/element&gt;
    &lt;/schema&gt;
    -----------------------------------------------------------------------------------------------------bpel.xml--------------------------------------------------
    &lt;?xml version = '1.0' encoding = 'UTF-8'?&gt;
    &lt;BPELSuitcase&gt;
    &lt;BPELProcess id="MultiWsdl" src="MultiWsdl.bpel"&gt;
    &lt;partnerLinkBindings&gt;
    &lt;partnerLinkBinding name="client"&gt;
    &lt;property name="wsdlLocation"&gt;MultiWsdl.wsdl&lt;/property&gt;
    &lt;/partnerLinkBinding&gt;
    &lt;/partnerLinkBindings&gt;
    &lt;/BPELProcess&gt;
    &lt;/BPELSuitcase&gt;

    Thanks a lot. It helped me a lot. It seems this is the problem with the BPEL Console. I tried to create another BPEL Project to invoke the other service/operations. It worked perfectly fine. I had even tested with SoapUI. It worked fine. Thanks for the right pointer.

  • Very simple java project (help please)

    Hello. For a project I have to somehow use MouseListener to make something. My idea was to have a rectangle in which a circle (hockey puck) follows the user's mouse and whenever the user places the circle into a certain area the count goes up by one (like a game of hockey). If someone could give me some idea as to where I should start it would be greatly appreciated.
    My thanks

    This is alwyas [a good place to start|http://java.sun.com/developer/onlineTraining/] when you don't have a clue what's going on, and here if you need specifics on MouseListener. And to get movement, then you'll probably want to look here.
    Once you have some code and specific questions, literally almost everyone on here will be willing to help you further along the way. When you post code, please use code tags.

Maybe you are looking for