Can PrE do multiple specific frame searches?

I'm trying to find a not too expensive editing program, possibly PRE 10, that will allow me to do a search in a video for specific frame locations based on criteria within a frame. I've done exhaustive searching on web to no avail so far. I've been using Corel Videostudio which doesn't have anything like that.
Specifically I want to search the infamous Norwegian Bergne/Oslo train ride video, all seven hours of it. The video consists of the uninterrupted train ride, which by itself is great to watch except for one thing.
Every time the train passes into a tunnel, or reaches a town, a blue sign drops down from the top of the screen with the location's name. That's not so bad, but then someone has inserted a very loud gong sound at that moment, totally destroying the relaxing ambience of the video.
What I want to do is find each occurrance of this event, which is about four seconds long, and replace the audio gong sound with either silence or filler. The bad part is that there are easily a hundred plus of these, probably over 200.
So I'm hoping that some program, somewhere, would be able to either find all of them at once, or quickly 'step' forward to each so I don't have to slowly play the video, stop, insert, hoping I don't miss one, etc. It would search keying on either something in the video frame like the big blue sign, or the sound, it really doesn't matter what.
I've broken the video up into 30 minute segments to make editing easier and faster.
Any advice or recommendations would be greatly appreciated!
Thanks!

I know of no NLE program, that offers the ability to match, or search frames. While I have not used them all, and some many versions ago, I do not recall such a function in AVID (Liquid, or Composer), PrPro, Pinnacle Studio, Magix MovieEdit Pro or CyberLink's PowerDirctor.
There might be some forensic programs, that can do this, but not sure that anyone, outside of law enforcement would have access to it.
Maybe others know of such software.
In PrE, about the best that I can think of is to use the Jog Shuttle in the Program Monitor, and visually watch, as the footage goes by very quickly, stopping when one reaches a tunnel, or town.
Good luck,
Hunt

Similar Messages

  • Go to specific frame of an external swf?

    How can I load a specific frame/label of an external swf
    file?
    anyone?

    me,
    > How can I load a specific frame/label of an external
    > swf file?
    First, you load the external SWF file. There are a number of
    ways to do
    this. I recommend either the MovieClip.loadMovie() method or
    the
    MovieClipLoader class. This causes the external SWF to be
    loaded into a
    movie clip container. Once the external SWF has fully loaded,
    invoke
    MovieClip.gotoAndPlay() on the container clip and specify the
    desired frame.
    David
    stiller (at) quip (dot) net
    Dev essays:
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • IE11 can't post form data to specific frame or window dialog opened via window.open()

    Hello,
    Form POST targeting to specific frame or dialog popped up via window.open() no longer works in IE11.
    It worked fine in IE10 and all previous versions of IE.
    Please see screenshot attached with simple test that reproduces this problem.
    Direct Link to screenshot:
    http://173.231.98.44/cgi/TestFolder/IE_11_widow_frame_targeting_BUG.jpg
    Direct link to simple test page demonstrating this problem:
    http://173.231.98.44/cgi/TestFolder/page2.asp
    Note: IE11 doesn't report any errors, doesn't complain about anything, even when debugged via F12 developer tools. The only thing it complained initially was missing doc type declaration on top of page, but even after adding doc type definition, problem still
    persists, makes no difference.
    I tested this on fresh install of Windows 2012R2 while testing our web application with the new IE11.
    I believe doing this on Windows 8.1 with IE11 will result in same bug/problem.
    Our web application uses a technique whereby it launches a popup window via call to window.open(), passing blank URL and specifying a name for the new window. It then does a from post targeting the name of new dialog.
    In IE11 this functionality has been broken and no longer works.
    Problem is that IE11, instead of posting form to the newly created dialog, it launches a new instance of IE and then loads the requested form in this new instance of IE, while the dialog launched via window.open() remains on screen and is empty. If user repeats
    launching same form post request (via button click for example), IE 11 keeps creating new empty dialogs and new IE instance for every form post executed. This totally breaks our application because we use many so called "wizards" that encapsulate
    specific functionality in separate web page launched in a popup window.
    Another related problem is that if a dialog is launched with window.open(), the java script code in the dialog can not target the parent frame that opened the dialog anymore. In our application, when a dialog is closed, it typically needs to trigger a refresh
    of a specific frame within the parent window (again targeted by name) to reflect saved/updated info that user entered in the popup dialog. The result is that we can't refresh the parent frame after the pop up dialog closes. Instead, IE11 launches
    a new instance of IE (not just a tab, but a whole new instance) and loads the parent frame in it.
    The problem seems to be caused by broken frame name targeting mechanism in IE11.
    Note that we force IE to compatibility mode 5, but even without specifying any compatibility, the problem remains.
    Typical java script to reproduce this is:
    <input type="button" onClick="Popup(this.form);" name="btn2" value="Popup Dialog">
    function Popup(f){
        window.open("","MyNewDialogName","width=200,height=150");
        f.action = "page3.asp";
        f.target = "MyNewDialogName";
        f.submit();
    Expected: IE11 should correctly post form to and load targeted page in the newly popped up dialog, without opening new IE instance and new tab. Repeatedly posting form to existing popup window should reuse that window, not keep on launching more popup windows
    and then more IE instances.
    Steps to reproduce the problem (include URL if applicable):
    URL with sample page: http://173.231.98.44/cgi/TestFolder/page2.asp
    1) Create page1.htm: <html><body>display "I'm in a popup window now ..."</body></html>
    2) Create page2.htm with a button and onclick() event calling function to open dialog, and do form POST targeting new dialog calling page1.htm, like below.
    <input type="button" onClick="Popup(this.form);" name="btn2" value="Popup Dialog"> function Popup(f){
        window.open("","MyNewDialogName","width=200,height=150");
        f.action = "page1.asp";
        f.target = "MyNewDialogName";
        f.submit();
    3) Open IE11, navigate to page2.htm, click the "Popup Dialog" dialog button. IE 11 will popup the new dialog, but then it will also launch new instance of IE11 and display the page1.htm in it, instead of in the popup dialog.
    Has anyone else encountered this problem?
    Any insight or help is appreciated.
    Regards
    Peter

    the default action of <input type="button" is submit. Note also that the default type of <button> elements is 'submit' also.
    add a return false to the onclick inline event handler (which constructs the form submit attribues) to cancel the default form.submit behavior.
    form elements have a target value with which you can specify the name window into which you want the form to open in.
    <form action="process.aspx" target="popup">
    you can use the window.open method with a query uri to achieve the same outcome.
    window.open('process.aspx?s=search+term&amp;foo=bar','popup',{features})
    the outcomes of all scripted windows are affected by
    your IE Popup blocker and tabbed browsing settings
    which in turn is affected by your IE Security zone settings (for popup blocking handling)
    and the settings of any third-party popup blocker you may have installed and enabled... it may not necessarily be visible on your browser toolbar.
    The first step in troubleshooting web browser issues is to test in no-addons mode.
    Use the Developer Tool to find out what documentMode the test page is opening in on your system. On Modal/Modeless popup windows use the f12 key to display the Developer tool positioned on the contentWindow.
    Use File>Properties to find out what IE Security zone it maps to... there is a security setting to prevent navigation into zones of lower integrity.
    Rob^_^

  • How can I edit multiple clips with different frame rates on the same timeline

    how can I edit multiple clips with different frame rates on the same timeline

    You do not want to edit material from different frame rates on one timeline. You CAN do this, but it is a very bad idea - and this is why.
    Once you establish the sequence frame rate - lets say it is PAL material at 25fps, any material that you drop into the sequence other than 25 fps will have to be changed to play at 25 fps. If the material you add is NTSC (29.97), FCP will DROP 5 frames per sec to bring the frame rate down to 25 fps. Which 5 get thrown away? Every 6th one. This yields a funky cadence that becomes even more complex as as there are also interlaced fields (DV/NTSC is an interlaced format). Oh, and by the way, the image sizes are different as well. DV/PAL has 576 lines of resolution and DV/NTSC has 480. FCP has to scale up the NTSC to fit the PAL frame.
    You do not want FCP adjusting these things on the fly. You want to do a thoughtful (and time consuming) conversion so that you end up with all your material in one format with the best possible image from the conversion process. Compressor can do an adequate job with Frame Controls turned on. The Natress Standards Conversion FCP plugin is another way to go. A third option is to find a post house that can do the conversion for you using a hardware based process.
    The good news is, once everything is in the same format, editing it will be painless and the output process very quick.
    Whatever frame rate/ image size you select, I'd suggest using ProRes for the codec. It is 4:2:2 color and will withstand color correction and composting with much more grace than any variant of DV based codecs.
    Have fun.
    x

  • Can an swf movie be opened on a specific frame?

    When I call up an Flash-generated swf movie in its own
    browser window via a navigation bar button, it always open on its
    first frame. Is there a way to tell the browser in conjunction with
    the getURL command to open at a specific frame other than frame 1?
    I can't find an Actionscript code sample that allows this while
    using getURL. Or is there some other way -- e.g. appending the swf
    file with frame number in its HTML page in some way, using
    Javascript, FSCommand, etc?
    Jody

    Maybe this will help
    http://www.adobe.com/devnet/flash/articles/deep_linking.html

  • Can you have a button play a specific frame in a different Edge Animate page?

    I'd like to create a movie that can open other HTML files and go to a specific frame within those other pages. Is there any way to handle that inside of Edge Animate?

    Thanks for the suggestion, but I'm looking for something a little different.
    I'm looking to figure out a way to pass along some information from one movie to another.
    For example. If I have a page (Movie1.html) that has Button A, Button B and Button C. Is there a way for me to open a different page (Movie2.html) AND point to a different frame based on what they clicked in Movie1.html?
    So if they click Button A, it will open Movie2.html and go to frame label "IntroSection"
    But if they click Button B, it will still open up Movie2.html, but this time it would jump to the label "AboutUs"
    And if they click Button C, it will open up Movie2.html, it would jump to the label "End"
    The idea is to have a few different files, but be able to point to specific frames or labels within an external movie.
    Thanks!
    Jeff

  • Can we have multiple database audit specification on a single server audit ?

    Hi,
    We are having a 2 node Sql Clustered instance of SqlServer 2008 R2 Enterprise running
    on windows server 2008 R2. We have about 88 databases in the instance.
    Our servers run on Intel Xeon(R) CPU X5670 @2.94 GHz with 6 cores(12 logical processor).
    The servers are having 12GB of RAM.
    We are planning to introduce database level audit to find if there is any activity on
    some of our databases. These databases are not growing in size and there is a request
    from the application team to ascertain whether the endusers are accessing the database
    over a period of time. In this context I have 2 queries-:
    1)Can we have multiple database audit specification on a single server audit ie can we
    audit multiple databases to find out the user activity on those databases at a time? Or
    should we a separate server audit for each database audit specification?
    2)We plan to have the target of the audit on a file on the same shared volume(lun) where
    the MDF file and LDF files are located(in EMC storage) and in this context what performance
    monitor counters should we watch to ascertain whether there is any performance degradation
    due to introduction of server audit.
    Thanking you in advance
    Binny Mathew.

    As Auditn  is at the SQL Server instance level. You can have multiple audits per SQL Server instance.
    http://msdn.microsoft.com/en-us/library/cc280386.aspx
    Database Audit Specification
    The Database Audit Specification object also belongs to a SQL Server audit. You can create one database audit specification per SQL Server database per audit.
    The database audit specification collects database-level audit actions raised by the Extended Events feature. You can add either audit action groups or audit events to a database audit specification. Audit events are
    the atomic actions that can be audited by the SQL Server engine. Audit action groups are predefined groups of actions. Both are at the SQL Server database scope. These actions are sent to the audit, which records
    them in the target. Do not include server-scoped objects, such as the system views, in a user database audit specification.
    Database-level audit action groups and audit actions are described in the topic SQL Server Audit Action Groups and Actions.
    You can also consider using a Profiler trace file to capture the events.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Horizntal Gallery with Multiple viewable frames

    I want to have a section in the body of the website that scrolls left to right but has multiple image frames revealed at the same time.
    I'm trying to emulate something similar to this website:
    Cultural » Helix
    I know that you can create a slide show with one image that scrolls with a click-able button, is there a way to edit that widget to get closer to the look I'm going for?
    Thanks!

    A workaround:
    1 - set each gallery to be hidden from your primary gallery.
    2 - create an iWeb site with a welcome page to your galleries.
    3 - create a separate iWeb site for each user and password protect that site.
    4 - in each protected site add a blank page and use one of the methods in this demo page, iPhoto/MobileMe Galleries, to add the hidden sites you want that user to have access to. You won't be able to use the widget method however since the galleries will be hidden.
    5 - on your welcome page put a hyperlink for each user pointed to the protected site for that user.
    Granted it's a hassle but it's one way you can give particular users access to specific galleries. Being hidden a viewer cannot go to any other gallery.

  • Hotspots on specific frames

    hi all
    i am a newcomer to fireworks, and i am having fun working
    with it, but i am having the newbie problem of knowing the
    limitations of the app. here's my problem:
    i'm creating my homepage with a nav bar on the left, swapping
    out images in a slice to its right. i want to add hotspots to
    various places in these images that come up in the right slice, but
    when i do they are active in other frames that get swapped into the
    slice. after a bit of research it seems that this might not be
    possible in fw and that i should add this in dreamweaver, but i
    thought i would check. is there a way to associate a hotspot with a
    specific frame or image within a slice? or is that hotspot always
    associated with the slice? i began playing with adding layers of
    slices within the one area, but this seemed to be a confusing and
    inelegant way to do this. i could do this quickly in flash, but i'm
    trying to keep my text "hot" so that it can be selected and found
    by search engines. i'm sure there's a boneheaded thing i'm doing
    wrong....
    thanks
    bruce

    Allowing FW to apply hotspots to images gives one the
    mistaken impression
    that the hotspot is somehow part of the image. It is not. The
    hotspot only
    exists in the HTML that is exported by you when you export
    your slices.
    Since most people who use FW HTML get bitten by using a
    graphics editor to
    write HTML (unless they already know enough HTML to feel
    comfortable with
    it), I don't recommend you use this procedure.
    Export your graphics from FW and use DW to build your page,
    including your
    hotspots. This answer may clue you to the fact that you
    cannot apply a
    unique hotspot to anything other than the space which an
    image occupies on
    the HTML page.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "btovsky" <[email protected]> wrote in
    message
    news:[email protected]...
    > hi all
    > i am a newcomer to fireworks, and i am having fun
    working with it, but i
    > am
    > having the newbie problem of knowing the limitations of
    the app. here's my
    > problem:
    > i'm creating my homepage with a nav bar on the left,
    swapping out images
    > in a
    > slice to its right. i want to add hotspots to various
    places in these
    > images
    > that come up in the right slice, but when i do they are
    active in other
    > frames
    > that get swapped into the slice. after a bit of research
    it seems that
    > this
    > might not be possible in fw and that i should add this
    in dreamweaver, but
    > i
    > thought i would check. is there a way to associate a
    hotspot with a
    > specific
    > frame or image within a slice? or is that hotspot always
    associated with
    > the
    > slice? i began playing with adding layers of slices
    within the one area,
    > but
    > this seemed to be a confusing and inelegant way to do
    this. i could do
    > this
    > quickly in flash, but i'm trying to keep my text "hot"
    so that it can be
    > selected and found by search engines. i'm sure there's a
    boneheaded thing
    > i'm
    > doing wrong....
    > thanks
    > bruce
    >

  • "Exit" button used in multiple sequence frames

    I am hoping there is a more elegant way to do this...
    See the attached VI for a vastly-simplified program that typifies what I am trying to accomplish.  Basically, I've got one button that I want available in multiple sequence frames.  In this case, I have used an "Exit" button.  When pressed, the program passes through any remaining sequence frames until it ends.  The final frame "unclicks" the "Exit" button.  This final frame is necessary because I had to set the mechanical action of the Exit button to "Switch When Released" because I used local variables in all sequence frames after the first one.
    Is there a way I can accomplish the same functionalities of this program without using local variables and/or while setting the mechanical action of the "Exit" switch to "Latch When Released?"  I am specifically looking for solutions which will work in multiple frames of a stacked sequence structure (I realized there are ways to turn the three lights on without using a stacked sequence structure, but I am not interested in doing so).
    Any help would be greatly appreciated!  Thanks!
    Solved!
    Go to Solution.
    Attachments:
    Stop Button Demo.vi ‏14 KB

    hi dia,
    So many discussion was finished regarding this multiple Event structure. In your code totally 3 event structures you are using. But in a program only one Event structure is enough to operate properly. Because in LabVIEW only one event queue is there in built. So if you use more than one event structure LabVIEW will got confused and it will get queued up, even though there is no state and it will be masked some time. That's why your code taking so much of time to exit. Some times it seems like hang...
    Try this VI...
    <<Kudos are welcome>>
    ELECTRO SAM
    For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life.
    - John 3:16
    Attachments:
    Event Handle.vi ‏11 KB

  • How to create specific Frames

    Hi,
    Using Style and Create Frame I know but some specific frame How to create any one have Idea Please Share.
    Please find the Attached file have Some specific Frame types.
    Thanks
    Dhiraj

    You want to know how to make those specific frames by hand?
    You can find lots with just straight filmstrip tutorials and even some film strip templates...probably images of real ones for that matter... that can be used if you do a Google search. Same goes for the other frames.
    The tutorial I have linked below is using Photoshop. With the exception of doing the transform<warp step, everything can be done using elements. There are other tutorials that build a more detailed filmstrip but  I like this one because it shows how to make a wavy filmstrip.
    http://www.youtube.com/watch?v=ZhLbGleU-iY&feature=related
    Since transform warp isn't available in Photoshop Elements, you'll have to use the displacement filter (filter<distort<displace)  to make the filmstrip wave if desired.
    Above is the displacement map, I made to make my film strip wave. This was made by filling a layer with black and painting a couple of white lines with using the brush tool with a soft wide tip. I duplicated this layer and saved it as a PSD on my desktop.  Displacement maps must be in PSD format. I used this map along with these settings: 0 hoizontal; 50 vertical; stretch to fit; repeat. Note: You must have soft edges to get a wave effect with this filter. If you use hard edges this filter will cut instead of bend.
    Filmstrip images are some CG art I created.
    Frame made using the tutorial.
    Warped with displacement filter using the displacement map of two blurred lines.
    Added a perspective by using free transform as in the video along with a hand made drop shadow to ground the filmstrip. Background was also cropped.
    Final step was to simplify (rasterize) the gradient fill layer that I used over my background layer. I  added a little noise with Add<Noise to my simpified (rasterized) gradient fill layer to get rid of the gradient banding.
    Playing with a different perspective angle because it's kind of fun. Some of the shadow is lightly masked to make it fade a bit where the strip rises.

  • Play specific frame in relation to X and Y

    Hello i'm relatively new to Flash and although getting quite
    familiar with the environment i'm still pretty much a big ignoramus
    when it comes to actionscript. Appologies if sililar to this has
    been posted before, I did a search (and have been searching the net
    all day!)
    I have a stop frame animated head with most of frames done in
    various movements (at the moment they're JPGs, but if I can get
    this to work I'll convert to vector). I thought it'd be cool when
    the user is mousing around the top and right side of the head for
    the head to move in the cursors direction and look at it. Once the
    cursor is on top of the head it plays in reverse, back to the
    start. So I have the frames for this movement now (42 in various
    positions) and the closest i've come to achieving what I need is
    from using this:
    Actionscript:
    onClipEvent(load){
    xlow = 300
    xhigh = 450
    onClipEvent(enterFrame){
    gotoAndStop(Math.ceil((Math.min(Math.max(_root._xmouse,xlow),xhigh-1)-xlow+1)/(xhigh-xlow) *10))
    This works ok for just looking right (frames 1-10), but I've
    been useless at adapting this so far, and am not even sure if this
    it is what I need for the whole thing. I can't work out how to make
    it work on the y axis simultaneously.
    So all in all I need to tell flash to play a specific frame
    depening on the X and Y of the cursor and when the user mouses over
    the face the movie must play from wherever it was stopped.
    An added bonus would be something like a variation in
    animation speed - speedy at first and slowing as it reaches the
    target. However I'd be much more than happy to just get the basics
    down at the moment though.
    If none of this makes any sense I can supply the source file,
    but until I covert all the graphics to vector the file is big (8
    Mb).
    If anyone can give me any help or a nod in the right
    direction I'd be your new best friend,
    John

    This is made clear when you have Context Help turned on. You should always have this on.

  • How can I use multiple row insert or update into DB in JSP?

    Hi all,
    pls help for my question.
    "How can I use multiple rows insert or update into DB in JSP?"
    I mean I will insert or update the multiple records like grid component. All the data I enter will go into the DB.
    With thanks,

    That isn't true. Different SQL databases have
    different capabilities and use different syntax, That's true - every database has its own quirks and extensions. No disagreement there. But they all follow ANSI SQL for CRUD operations. Since the OP said they wanted to do INSERTs and UPDATEs in batches, I assumed that ANSI SQL was sufficient.
    I'd argue that it's best to use ANSI SQL as much as possible, especially if you want your JDBC code to be portable between databases.
    and there are also a lot of different ways of talking to
    SQL databases that are possible in JSP, from using
    plain old java.sql.* in scriptlets to using the
    jstlsql taglib. I've done maintenance on both, and
    they are as different as night and day.Right, because you don't maintain JSP and Java classes the same way. No news there. Both java.sql and JSTL sql taglib are both based on SQL and JDBC. Same difference, except that one uses tags and the other doesn't. Both are Java JDBC code in the end.
    Well, sure. As long as you only want to update rows
    with the same value in column 2. I had the impression
    he wanted to update a whole table. If he only meant
    update all rows with the same value in a given column
    with the same value, that's trivial. All updates do
    that. But as far as I know there's know way to update
    more than one row where the values are different.I used this as an example to demonstrate that it's possible to UPDATE more than one row at a time. If I have 1,000 rows, and each one is a separate UPDATE statement that's unique from all the others, I guess I'd have to write 1,000 UPDATE statements. It's possible to have them all either succeed or fail as a single unit of work. I'm pointing out transaction, because they weren't coming up in the discussion.
    Unless you're using MySQL, for instance. I only have
    experience with MySQL and M$ SQL Server, so I don't
    know what PostgreSQL, Oracle, Sybase, DB2 and all the
    rest are capable of, but I know for sure that MySQL
    can insert multiple rows while SQL Server can't (or at
    least I've never seen the syntax for doing it if it
    does).Right, but this syntax seems to be specific to MySQL The moment you use it, you're locked into MySQL. There are other ways to accomplish the same thing with ANSI SQL.
    Don't assume that all SQL databases are the same.
    They're not, and it can really screw you up badly if
    you assume you can deploy a project you've developed
    with one database in an environment where you have to
    use a different one. Even different versions of the
    same database can have huge differences. I recommend
    you get a copy of the O'Reilly book, SQL in a
    Nutshell. It covers the most common DBMSes and does a
    good job of pointing out the differences.Yes, I understand that.
    It's funny that you're telling me not to assume that all SQL databases are the same. You're the one who's proposing that the OP use a MySQL-specific extension.
    I haven't looked at the MySQL docs to find out how the syntax you're suggesting works. What if one value set INSERT succeeds and the next one fails? Does MySQL roll back the successful INSERT? Is the unit of work under the JDBC driver's control with autoCommit?
    The OP is free to follow your suggestion. I'm pointing out that there are transactions for units of work and ANSI SQL ways to accomplish the same thing.

  • How can I return multiple values with PL/SQL Web Services

    Hi,
    I'm new to developping Web Services. I'm doing some tests with JDeveloper and OC4J on my local machine with a Web Services based on a PL/SQL function within a package. Right now that function only returns one value. So the xml response only has one output.
    I'd like to know how can I return multiple values with my PL/SQL Web Service. For example, if I want to return an employee's name and id? And that the xml contains two output : <employee>, <empid>?
    Reginald
    ps : I have searched the forum and I couldn't find an answer to this question, if that has been discussed AND answered before, can you please post the link? Thanks

    Alright, I actually found my answer. Since this was asked I think as a followup somewhere else I'll give my answer.
    It is very simple, all you have to do is create an Object Type and then Return that object type. After that, JDeveloper will take care of everything and you will have an xml response with multiple values. Here
    {color:#ff0000}
    create or replace TYPE person AS OBJECT
    ( id_interv number,
    first_name VARCHAR2(50),
    last_name VARCHAR2(50),
    date_birth date
    );{color}
    Then your function used in your Web Service should look something like this :
    {color:#ff0000}
    function info_emp (p_empno IN VARCHAR2) RETURN person AS
    l_emp person := person(-1,'','','');
    BEGIN
    SELECT first_name
    ,last_name
    ,emp_no
    INTO l_emp.first_name
    ,l_emp.last_name
    ,l_emp.emp_no
    FROM emp
    WHERE upper(emp_no) = upper (emp_no);
    {color}
    {color:#ff0000}
    RETURN l_emp;
    EXCEPTION WHEN NO_DATA_FOUND THEN
    l_emp := person (-1,'n/a','n/a','n/a');
    RETURN l_emp ;
    END info_emp;{color}
    {color:#ff0000}{color:#000000}After that, this is what the xml response looks like :{color}{color}
    &lt;first_name xsi:type="xsd:string"&gt;John&lt;/first_name&gt;
    &lt;last_name xsi:type="xsd:string"&gt;Doe&lt;/last_name&gt;
    &lt;emp_no xsi:type="xsd:string"&gt;0250193&lt;/emp_no&gt;

  • In Elements 7.0, how can I delete multiple photos at the same time?

    In Adobe Photoshop Elements 7.0, how can I delete multiple photos at the same time?   Please be a little specific so I can follow your instructions as I'm not real smart at computers; I'm an intermediate user.  Thank you.

    Shift-click the photos or Ctrl-click them to select them, then right-click one of them and choose Delete from Catalog. They will all go together.

Maybe you are looking for