Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


soapui

<person>
<fname>abc</fname>
<lname>xyz</lname>
<age>22</age>
</person>


above data i am prepareing in soapui and run the request and
generate response.


how to fetch this xml response data using oracle sql query.

pls tell me query.



soapui <person> <fname>abc</fname> <lname>xyz</lname> <age..

Answer / Vikram Singh Vimal

To fetch XML response data from an Oracle database, you can use the DBMS_XMLGEN package. Here's a sample code snippet:
DECLARE
v_xml XMLType;
l_response CLOB;
BEGIN
SELECT xmltype(l_response) INTO v_xml
FROM table_name
WHERE some_condition = 'some_value';
DBMS_OUTPUT.PUT_LINE(v_xml);
END;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SOAP Interview Questions

What are the advantages of SOAP?

1 Answers  


Explain about the syntax rules in SOAP?

1 Answers  


How is SOAP different from the Ariba and Commerce One Standards of cXML etc?

1 Answers  


Explain about the SOAP body element?

1 Answers  


Explain what is the properties in soapui?

1 Answers  


What does xml-soap server includes to allow flexible services for the users?

1 Answers  


explain how you can parameterize the endpoints in soap ui?

1 Answers  


What is soap protocol used for?

1 Answers  


Explain about the encoding style attribute?

1 Answers  


What is the major obstacle users faced when using soap?

1 Answers  


To test a web service you must create a windows application or web application to consume this service. State whether true or false.

1 Answers   Siebel Systems,


What are the factors that help to decide which style of web services – soap or rest – to use?

1 Answers  


Categories