Can I pass XMLnode as a input and get back XMLnode as output from a SP?

Hi,
I find implementations where XMLNode's outerxml (varchar) is passed as input and generally the XMLNode output is obtained using the ExecuteXMLreader.
is there any other way of doing this... like where the SP gets an XMLNode input and returns back an XMLNode output?
not sure if this is relevant... I am trying to use OracleAS to expose SPs as webservices... I am a .net guy got no clue on J2EE architecture... how much JAVA coding or understanding of J2EE architecture is reqd for accomplishing this?
looking fwd to your replies...
regards,
Sakthi

James, welcome to the forum.
If Shaw is a telecommunications company, I would contact their Customer Service to see what they have to say.  This is a specialty connection that is better handled by the people who deal with it every day.
Please click "KUDOS" if I have helped you and click "Accept as Solution" if your problem is solved.
Signature:
HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
HP Photosmart 7520 AIO
++++++++++++++++++
**Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
Intelligence is God given; Wisdom is the sum of our mistakes!
I am not an HP employee.

Similar Messages

  • How can I undo a OS X update and get back my previous config

    How can I undo a OS X install and get back my previous config ?

    See: OS X Mavericks: Revert to a previous OS X version

  • On my new 15" MacBook Pro (June 2011) using Calendar I click the  corner arrow to enlarge the screen.  Now it is MORE than full size.  No arrow visible to return to small size.  Menu bar can't be grabbed.  I sweep and get back to desktop. No small screen?

    I installed Lion on my newish 15" MacBook Pro.  When using Calendar I click the  corner arrow to enlarge the screen.  Now ithe calendar is MORE than full size, no arrow visible to return to small size.  The Menu bar doesn't respond. when I try grabbing it to move the whole screen sideways.  When  I sweep I get back to desktop. I can sweep back to the calendar, but can't make it small again.  Menubar options include changing font size, but nothing about reverting to smaller window size.  Any suggestions?

    I installed Lion on my newish 15" MacBook Pro.  When using Calendar I click the  corner arrow to enlarge the screen.  Now ithe calendar is MORE than full size, no arrow visible to return to small size.  The Menu bar doesn't respond. when I try grabbing it to move the whole screen sideways.  When  I sweep I get back to desktop. I can sweep back to the calendar, but can't make it small again.  Menubar options include changing font size, but nothing about reverting to smaller window size.  Any suggestions?

  • Can an InDesign file be interactive? (And I don't mean output from an InDesign file.)

    Is it possible to have an element in an INDD file trigger another action inside the INDD file, without exporting the original file to an interactive PDF or anything else?
    For example, I would like to create a "go to the next page" button in an InDesign file so that anyone else who opens the file within InDesign can click on the button and be taken to the next page of the InDesign file.
    For various reasons that aren't relevant to this discussion, I do not want to distribute the file as a PDF or anything other than INDD.
    Will a script do the job?
    I'm using InDesign CS6 on a Mac.
    Thanks for any help you can give!

    A button to go to the next page: bottom left corner of your main window ... (Granted, it's small enough to miss.)

  • How to call plsql procedure or function and getting back the string?

    Hi Everyone,
    i am using Jdev 11.1.1.5.0.
    i have a requirement to call plsql procedure or function from my backing bean java file and get back the returned value from the procedure or function.
    what piece of simple code i need to write in my backing bean?
    please suggest.
    Thanks.

    As always you write the method to call he pl/sql in the application module, expose this method to the client (so you see it in the datacontroll) then create a operation binding to the method and call this operation from the bean. The result you get by operation.getResult();
    You should never call pl/sql from the bean directly!
    The doc shows how to call the procedure from an application module: http://docs.oracle.com/cd/E21764_01/web.1111/b31974/bcadvgen.htm#sm0297
    Timo

  • How can I pass a file refnum into and out of external c++ code? What type does it convert to in c++?

    I am trying to write external c++ code that will read a file already opened by Labview and therefore assigned a refnum. (Unfortunately, I definately can't use the standard Labview vis.) However I am not sure what c++ type to use in order to manage the refnum.
    All help and thoughts appreciated. Thanks,
    Joanna

    You could do ALL your file handling in C or C++ (MFC CFile for
    example) and pass Microsoft file handles into and out of LabVIEW
    instead of LabVIEW file references into and out of C. This may be an
    easier way to attack the problem.
    You could create a DLL in MSVC that exports a FileOpen function, a
    FileClose function and a FileRead and/or FileWrite Function and then
    call that DLL from place to place as required in your code.
    It would help us if you would explain what kind of data you are trying
    to read or write and what the application is. Is it binary data?
    text files? Do you need some special Win32 file system feature like
    file mapped memory? I guess what I am asking is what is your
    motivation for doing file handling in C or C++?
    Douglas De Clue
    LabVIEW developer
    [email protected]
    "Rolf" wrote in message news:...
    > A LabVIEW file refnum is an internal Magic Cookie to LabVIEW and there is no
    > way to directly extract the actual information assigned to that Magic
    > Cookie.
    > However the CIN Reference Manual describes one function which allows to
    > retrieve a lower level "File" handle and at least on Windows 32 bit and
    > LabVIEW
    > from version 5 up to and including 6.1 this "File" LabVIEW datatype directly
    > maps
    > to the Win32 API "FILE" Handle.
    >
    > The function to use is
    >
    > MgErr FRefNumToFD(LVRefNum refNum, File *fdp);
    >
    > It is declared in extcode.h or one of its dependant headers and exported
    > from "labview.lib"
    > all located in the cintools directory and you can link this lib also to a
    > normal DLL project.
    > However calling this DLL then from any other process than LabVIEW or a
    > LabVIEW
    > executable will not initialize the DLL anymore correctly.
    >
    > Your best option if you need to write in C(++) should be to use the LabVIEW
    > file manager
    > functions described on the External Code Manual (manual/lvexcode.pdf) on
    > this File handle.
    > If you need to use directly some Win32 API functions with it please note
    > that although currently
    > the "File" in the LabVIEW file manager functions matches the FILE in Windows
    > 32 bit API
    > functions this is an undocumented and hence unsupported feature. The next
    > LabVIEW version
    > may actually use a different datatype for its "File" parameter to the
    > LabVIEW file manager calls
    > and your use of assuming File == FILE may simply crash.
    >
    > Also operating on a file refnum in LabVIEW which has been accessed directly
    > with Win API
    > functions may result in strange behaviour such as the file read/write mark
    > not being updated as
    > you would maybe expect it.
    >
    > "Jo" wrote in message
    > news:50650000000800000016520000-1023576873000@exch​ange.ni.com...
    > > How can I pass a file refnum into and out of external c++ code? What
    > > type does it convert to in c++?
    > >
    > > I am trying to write external c++ code that will read a file already
    > > opened by Labview and therefore assigned a refnum. (Unfortunately, I
    > > definately can't use the standard Labview vis.) However I am not sure
    > > what c++ type to use in order to manage the refnum.
    > > All help and thoughts appreciated. Thanks,
    > > Joanna

  • How can I purchase an iTunes card online and get the code online to purchase apps.

    How can I purchase an iTunes card online and get the code online to purchase apps.

    iTunes Gift Options
    http://support.apple.com/kb/HT2736

  • My ipad has gone in lost mode by mistake and now i have it and i enter the password and i cant enter my ipad how can i enter or restart the ipad and start back over new

    my ipad has gone in lost mode by mistake and now i have it and i enter the password and i cant enter my ipad how can i enter or restart the ipad and start back over new

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • Can I uninstall Pages 5.5.2 and go back to an earlier version?

    Can I uninstall Pages 5.5.2 and go back to an earlier version? I have Yosemite 10.10 and am working on a MacBook Air. The new version of Pages does not auto capitalize first word in sentence or "I" and I need these capabilities.

    You asked about Pages 5.5.2.
    That Preference does not exist in Pages 5.5.2, you have to use Pages '09.
    To get rid of Pages 5.5.2 just drag it from your Applications to your trash, but be warned that any documents you created in Pages 5.5.2 will first need to be Exported back to Pages '09 format to0 be opened in Pages '09.
    Peter

  • HT1391 if I been robbed from my two diveces what can I do? to protect my informacion and get back my music??

    if I been robbed from my two diveces what can I do? to protect my informacion and get back my music??

    This won't get your old messages back but will help with new ones: https://selfsolve.apple.com/deregister-imessage

  • Can I purchase an IPhone 5 that is factory unlocked, so that I can insert my t-mobile sim card and use it on my service from the apple store?

    Can I purchase an IPhone 5 that is factory unlocked, so that I can insert my t-mobile sim card and use it on my service from the apple store?

    Not in the US, at the present time. Apple has not started selling officially unlocked iPhone 5's in the US, & has not announced when they will.

  • Is there any shop in texas ,austin where we can replace an old ipod touch 3G and get a new ipod touch 4G ??

    Is there any shop in texas ,austin where we can replace an old ipod touch 3G and get a new ipod touch 4G ??
    pls help mee

    Sorry but I am pretty sure there isn't a shop which offers such a service.
    Apple stores offer a 14 day remorse period where you can return a purchase for a full refund without having to give a reason however this has probably expired - unless you bought from a different store with a similar system which you still happen to be within the time limit for.
    Your best bet would be to sell your iPod 3G and put the money towards a new one. If you are having trouble selling it an Apple store will take it and give you 10% off a new iPod.

  • Can I uninstall itunes 10.5.1 and get the get the version just prior to it?  OSX

    I can no longer drop my podcasts into my classic ipod. This after it wiped out all of my ipod podcasts. Can I uninstall itunes 10.5.1 and get the get the version just prior to it?  OSX

    Well, Genius I'm not. Guess I'll just not use any ipod downloads until they fix this mess. Thanks for your help. Also, just to double check: All of this started when I syncd my calender and contacts and I do I have sync ipod unchecked.

  • I would like to buy my boyfriend the iphone 5. He has an upgrade - but can I purchase it for Christmas now and get money back when he activates and uses his upgrade?

    I would like to buy my boyfriend the iphone 5. He has an upgrade - but can I purchase it for Christmas now and get money back when he activates and uses his upgrade?

    Or purchase an Apple Gift Card for him to use to get a phone at Apple after Christmas. He gets the card as the Christmas gift and can go get the phone himself. It would cost you the same amount of money.

  • Uploaded music to iCloud and it broke up my albums, I now have the same albums in different location with 2 or 3 songs on each one, can I make them whole albums again and how do I keep it from happening again?

    uploaded music to iCloud and it broke up my albums, I now have the same albums in different location with 2 or 3 songs on each one, can I make them whole albums again and how do I keep it from happening again?

    The iTunes Match forum is here: https://discussions.apple.com/community/itunes/itunes_match

Maybe you are looking for

  • I Can't See any album art on my ipod Please help

    For some rerason all of my album artwork won't show up on my ipod anymore. The only way to make it show up is to put the album art on in the library before putting it on my ipod but I have over 1700 songs and it is not worth deleting them to do that.

  • Releasing Billing document to accounts

    Hi, From this new financial year starting from Apr-09 we have problem while releasing service billing document to accounts. When we try to release service bill using change billing document VF02 transaction and by clicking on green flag button in top

  • Iphone 5 and outlook 2013 (windows 8).

    Can sync contacts fine but not calendar.  Tried all the suggestions on the threads read to date and nothing works.  If anyone has actually made this work can you please let me know the specific setting on the iphone and outlook to make this work.  th

  • Portal runtime error. in PAR application

    Hello Gurus, i developed my own portal application for change portal password. I used the follow blog for made it: A Change Password Application I compiled (without errors) and deploied application on my portal and i created a new iview based on my P

  • Update Rules to ODS

    I have created an ODS which includes 3 key figures as data fields. When I create update rules to this ODS the key figures do not appear in the Update rules.  Is there any reason why and how can I resolve? Thanks This is specifically for an update rul