`
wuhuizhong
  • 浏览: 692767 次
  • 性别: Icon_minigender_1
  • 来自: 中山
社区版块
存档分类
最新评论

Calling .Net Web Services from Oracle PL/SQL

阅读更多

http://www.lostechies.com/blogs/joshua_lockwood/archive/2007/09/14/calling-net-web-services-from-oracle.aspx

 

I'm working relatively closely these days with an Oracle DBA on this super-cool mainframe integration project (anyone want to join me?  LOL).  The old batch ops were managed through cron'd jobs in Oracle and I was asked to take a different approach.  I haven't found anything like Control-M here and was toying with the idea of rolling my own scheduling services.  The management wanted the integration pieces written in VB.Net, not PL/SQL scripts as had been done in the past, fair enough.  In a later meeting, the DBA had said that he REALLY wanted to replace the cron jobs with Oracle Jobs...hmmm...what to do, what to do...

I'd already planned on publishing .Net web services to support calls to the actual service objects.  A scheduler would be configured to call the web services at set intervals and kick of the batch processing.  I did a little research and found the utl_http library in Oracle.  I ran a quick test if it was installed and working and was delighted.

With utl_http it's pretty easy to call an XML web service.  It supports using PL/SQL to utilize HTTP requests and responses.  To test it I threw together a very simple web service that allows anonymous callers to write to a custom event log.  Now the DBA can automate sending me nasty grams (none received yet, I'm a little disappointed).

Here's the PL/SQL script that calls the web service.  All you have to do is define the requesting soap envelope, set the appropriate HTTP header info, point to your target using the right protocol and fire!

declare http_req utl_http.req; http_resp utl_http.resp; request_env varchar2(32767); response_env varchar2(32767); begin request_env:=' <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <LogMessage xmlns="http://tempuri.org/"> <message>This is my message</message> </LogMessage> </soap:Body> </soap:Envelope> '; dbms_output.put_line('Length of Request:' || length(request_env)); dbms_output.put_line ('Request: ' || request_env); http_req := utl_http.begin_request('http://wsXXXX/Test_WebService/Service.asmx', 'POST', utl_http.HTTP_VERSION_1_1); utl_http.set_header(http_req, 'Content-Type', 'text/xml; charset=utf-8'); utl_http.set_header(http_req, 'Content-Length', length(request_env)); utl_http.set_header(http_req, 'SOAPAction', '"http://tempuri.org/LogMessage"'); utl_http.write_text(http_req, request_env); dbms_output.put_line(''); http_resp := utl_http.get_response(http_req); dbms_output.put_line('Response Received'); dbms_output.put_line('--------------------------'); dbms_output.put_line ( 'Status code: ' || http_resp.status_code ); dbms_output.put_line ( 'Reason phrase: ' || http_resp.reason_phrase ); utl_http.read_text(http_resp, response_env); dbms_output.put_line('Response: '); dbms_output.put_line(response_env); utl_http.end_response(http_resp); end;

 

See? Easy as PI!  It's practically self explanatory (and the web service itself gives the client pretty much the info they need to get wired in).  As you see, I used varchars to declare vars for the request and the response.  With larger SOAP messages you'd want to take a different approach (reading chunks into a buffer) because the varchar is so small. 

Here's the console output showing what was sent and received (reformatted a bit for readability):

Length of Request:324 Request: <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <LogMessage xmlns="http://tempuri.org/"> <message>This is my message</message> </LogMessage> </soap:Body> </soap:Envelope> Response Received -------------------------- Status code: 200 Reason phrase: OK Response: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Body> <LogMessageResponse xmlns="http://tempuri.org/"> <LogMessageResult>Logged Message: [This is my message]</LogMessageResult> </LogMessageResponse> </soap:Body> </soap:Envelope>

Now how cool is that?  This was really my first time consuming (or starting to anyway) .Net web services from a disparate technology and hadn't really spent much quality time with SOAP since around 2002.  Now kicking of the jobs through Oracle will be a breeze...after I iron out authentication, of course.

Now, to learn how to use the 'out of the box'  XML parser that comes with Oracle...

分享到:
评论

相关推荐

    Oracle Database 10g PL-SQL Programming

    - **Calling Stored Procedures**: How to execute stored procedures from PL/SQL or SQL. - **Using Functions**: Invoking functions to perform calculations or retrieve data. - **Working with Packages**: ...

    C# sapnco30 for .net 支持.net4.0~4.8 含x86和x64 2022.07

    解决的问题:SAP.Middleware.Connector.RfcCommunicationException:“destination XXXX failed when calling RFC_METADATA_GET -- see log for details” 老版本的DLL异常报错:RFC_METADATA_GET 说明: 1、for .NET...

    11g_plsql_user_guide_and_reference.pdf

    ### PL/SQL Features in Oracle 11g Release 1 (11.1) #### Enhancements to Regular Expression Built-In SQL Functions In Oracle 11g Release 1, the regular expression built-in SQL functions have been ...

    Actualtests Oracle

    The provided content is from an Oracle certification exam preparation material (1Z0-147) focusing on programming with PL/SQL in Oracle 9i. The document includes sample questions and answers, which can...

    实验六:使用PLSQL编写存储过程访问数据库.ppt

    - **Calling Oracle stored procedures from Microsoft.NET** 指导如何在.NET环境中调用Oracle存储过程,涉及ADO.NET和Oracle Data Provider for .NET。 - **Stored Procedures for Java Programmers** 解释了在Java...

    PB web service

    描述 "Calling .NET Web Services from PB11.5" 提到的核心概念是,用户将学习如何在PowerBuilder中创建和消费.NET Web服务。这通常涉及到以下步骤: 1. **添加Web引用**:在PB中,开发者需要通过“项目”菜单选择...

    Amazon Web Services in Action(Manning,2015)

    Amazon Web Services in Action introduces you to computing, storing, and networking in the AWS cloud. You'll start with a broad overview of AWS and learn how to spin-up servers manually and from the ...

    SAP FRC接口调用calling RFC_METADATA_GET -- see log for details报错解决方案

    SAP.Middleware.Connector.RfcCommunicationException:“destination XXXX failed when calling RFC_METADATA_GET -- see log for details” 猜测的原因: 老的DLL库在获取接口实例时,会触发“RFC_METADATA_GET”...

    干货代码MATLAB控制CST进行建模仿真

    标题中的“干货代码MATLAB控制CST进行建模仿真”表明了这个压缩包内容的核心,即使用MATLAB编程控制CST(Computer Simulation Technology)软件进行电磁仿真。MATLAB是一款强大的数学计算软件,广泛用于数值分析、...

    Calling C from IDL(2002)

    《Calling C from IDL》是2002年发布的一份文档,主要探讨了如何在IDL(Interactive Data Language)环境中调用C和C++代码。IDL是一种强大的数据处理和可视化语言,广泛应用于科学计算和数据分析领域。而C和C++是...

    【AI 大模型】函数调用 Function Calling ② ( 函数调用 引入 - 函数调用开发流程 - 代码示例 )

    https://hanshuliang.blog.csdn.net/article/details/140380268 博客代码示例 一、Plugins、Actions 扩展 1、GPT 大模型缺陷 - 引入 Plugins、Actions 扩展 2、Plugins 插件 3、Plugins 插件开发流程 4、Plugins ...

    Building a JSON web service with Java and Axis2

    1.Download Axis2 as WAR and...7. Start your servlet container and test the standard version service by calling this url: http://localhost:8080/axis2/services/Version/getVersion?response=application/json

    Python库 | joint_calling-0.1.49-py3-none-any.whl

    资源分类:Python库 所属语言:Python 使用前提:需要解压 资源全名:joint_calling-0.1.49-py3-none-any.whl 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    php.ini-development

    http://php.net/configuration.file ; The syntax of the file is extremely simple. Whitespace and lines ; beginning with a semicolon are silently ignored (as you probably guessed). ; Section headers (e...

    【ASP.NET编程知识】Asp.Net Core轻量级Aop解决方案:AspectCore.docx

    AspectCore是一个适用于Asp.Net Core平台的轻量级Aop(Aspect-oriented programming)解决方案,它更好地遵循Asp.Net Core的模块化开发理念,使用AspectCore可以更容易构建低耦合、易扩展的Web应用程序。AspectCore...

    Bigdatahackathon:Turkcell 大数据黑客马拉松

    Turkcell 大数据黑客马拉松问题第 1 部分 ... 完整:wasb://calldatacontainer@tbigdatahackathonstorage.blob.core.windows.net/ START_TIME|END_TIME|CALLED_NO|CALLING_NO|TERMINATION_CAUSE_ID|CONVE

    WEBRTC运行流程.pptx

    http://c.biancheng.net/view/2123.html 什么是socket tips:getuserMedia() notsupported的原因 (https://developers.google.com/web/updates/2015/10/chrome-47-webrtc?hl=en) 解决方法 主要是因为谷歌64更新...

    Calling_R_from_python_use_Rpy2_Windows_rpy2.zip

    Calling_R_from_python_use_Rpy2_Windows_rpy2

    Excel Report 万能报表平台4.45

    Report creation using Microsoft Excel Get data through webservice,so you can get remote data Support of the SQL-queries for the data sets creation Calling of the stored procedures ...

    communication-services-web-calling-tutorial:Azure Communication Services的Web调用功能的入门样本

    cd communication-services-web-calling-tutorial / Project 通过从Azure门户配置Azure通信服务资源来获取连接字符串。 将连接字符串用作config.json文件中键connectionString值。 npm安装 npm运行构建 npm运行...

Global site tag (gtag.js) - Google Analytics