Looking for suggestion for SOAP over HTTP API to Oracle 10G

I need to be able to write data to an oracle 10g database through a SOAP over HTTP connection. What is the suggest packages to do such an action.
Best regards,
Dale

I suspect the problem is that the actual communication between client & Oracle DB server is done on a random "high port"; not 1522.
The packets on the high port are not getting through the VPN.
What I have made work in the past is to use ssh tunneling.
Good Luck, you might need it.

Similar Messages

  • Enabling SOAP over HTTPs on PI7.0

    Hello
        We have a requirement to connect PI7.0 to PI7.1 with SOAP over HTTPS. Would you please let us know what all configuration need
           1.  Setting required to be done on PI7.0 ( Communication Channels, Receiver and Sender agreements)
           2.  Where to put private key and root certificate in Visual admin
           3. Port configuration for outbound and inbound traffic.
           4. Enabling of SSL on PI7.0.
           5. Any ICM related setting on PI7.0
    Thanks & Regards

    Hi Uttam,
    Hi,
    For using HTTPS protocol, you have to chose the option of HTTPS in the 'HTTP Security Level' parameter on SOAP sender communication channel.
    For using HTTPS protocol, the SSL certificates need to be deployed on the server.
    Below are the links for more information on SSL certificates:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/14/ef2940cbf2195de10000000a1550b0/frameset.htm
    http://www.tldp.org/HOWTO/SSL-Certificates-HOWTO/
    For choosing & installing steps of SSL, refer the below links:
    /people/aniket.tare/blog/2005/03/22/ssl-certificate-installation-procedure-for-sap-j2ee-engine-630-150-steps-in-visual-administrator
    http://info.ssl.com/article.aspx?id=10694
    -Supriya.

  • Advantages and disadvantages of SOAP over Http

    Hi!
    Can any one explain about advantages and disadvantages of SOAP over HTTP.
    Thanks
    Sreenath

    Hi,
    Yes you can use RMI to communicate to your soa suite server allthough i could not get it to work from weblogic 10.3, there is a conflict with certain other libraries. From any other 10.1.3 oracle application server there should not be any problem. The biggest advantage of RMI over SOAP is performance. The soap client also generates lots of logging which can not be disabled, ... i already logged a bug on that. The advantage of SOAP over RMI is its underlying HTTP protocol which is, in some cases, the only protocol allowed by network engineers to pass through firewalls.
    Kind Regards,
    Andre

  • Design Choices and is LiveCycle needed? best practices for using RTMP/AMF over HTTP/XML communicatio

    Hi,
    I am new to flex/RIA. I am exploring different design choices especially in client server communication. On client side we will be using Flash based RIA (using Actions scripts).
    There will be some simple forms (like for login, registration, payments etc) and some simple reports including with several graphs and charts. Each chart might have 1000 to 1500 data points etc. There are not video or audio content as such. On server side we have Servlets, java API and some EJBs to provide the business logic and real time prices/content (price update is usually every 10 seconds) /data. Some of the content will be static as well.
    I have following questions in my mind. Is it worth it to use RTMP/AMF channels for the followings?
    1. For simple forms processing (Mapping Actions scripts classes to Java classes). Like to display/retrieve/update data for/from registration forms.
    a. If yes, why? Am I going to be stuck with LCDS? Is it worth it? What could be the cons for heavy usage/traffic scenarios
    b. If not what are the alternates? Should I create the web services? Or only servlets are sufficient (ie. Only HTTP+Java based server side with no LCDS+RTMP+AMF)? All forms need to communicate on secure channel.
    2. For pushing the real time prices/content which we may need to update every 15 seconds on user interface using graphs and charts. Can I do it with some standard J2EE/JMS way with RIA (Flex) on front-end? i.e. Flash application will keep pulling data from some topic. Data can be updated after few secs or few minutes which cant be predicted.
    3. Are there any scalability issues for using RTMP? What happens if concurrent users increase 10 times within a year?
    4. What are the real advantages of using RTMP/AMF instead of simple HTTP/HTTPS probably using xml based objects
    5. Do I need to use LCDS if I am using AMF only on client side? Basically I mean if I am sending an object in form of xml from a servlet. Can some technology in Flash (probably AMF) in client side map it an Action script object?
    6. What are the primary advantages of using LCDS in a system? Is there any alternate solutions? Can I use some standard solutions for data push technologies?
    I would like that my server side implementation can be used by multiple types of clients e.g. RIA browser based, mobile based, third party software (any technology) etc.
    I appreciate if you can kindly refer me to some reading materials which can help me deciding the above. If this is not the right place to post this message then please do refer me to the place where I can post such questions.
    Thanks and Kind regards,
    Jalal

    Hi Jalal,
    Let me see if I can help with some of your questions
    1. Yes, you can use LCDS for simple forms processing. Any time you want to
    move data between the Flex client and the server, LCDS (or its free Open
    source cousin BlazeDS) is going to help. I would expect you would use the
    mx:RemoteObject MXML tag to invoke server side code, passing it the form
    data input by the application user.
    2. If you need to push near real-time data, LCDS gives you the RTMP channel
    which can scale quite nicely. You can then use the mx:Consumer MXML tag to
    subscribe the clients to the messages, which can come from almost anywhere,
    include JMS topics or queues.
    3. RTMP (included in LCDS) is the best option for scaling to tens of
    thousands of users and the LCDS servers can be clustered to proved better
    scaling.
    4. The AMF3 protocol used over the RTMP channels performs much faster than
    simple XML over HTTP. See this blog posting for some tests:
    http://www.jamesward.org/census/.
    5. If you are sending a Flex application XML, then I would recommend using
    the E4X API to work with the XML. This is a pretty nice and powerful way to
    work with XML. If you want Actionscript objects (and probably better
    performance), then using AMF serialization to Actionscript objects is the
    way to go.
    6. Primary advantages? There are many, but mainly you can avoid thinking
    about the plumbing and concentrate on solving your application and business
    logic problems.
    Hope this helps you a little
    Tom Jordahl
    Adobe

  • How can I know the end of TCP stream and/or SOAP over HTTP flow

    Hi all!
    I want to read SOAP messages over HTTP, from sniffed TCP fragments.
    How can I decide that the TCP and/or the HTTP fragmenst finished?
    For example there is a SOAP message sliced to 5 TCP packets, and the first packet contains the HTTP header and some SOAP content too. The last packet contains the SOAP XML's ending XML-tag </soap:Envelope>.
    I don't want to watch every packet's end like "if the end string is </soap:Envelope> then it is the last packet", I just simply want to know which is the last packet of that message.
    The TCP connection won't be closed after the message arrives, and let's say the HTTP header doesn't contain a Content-Length field.

    A TCP connection is just a stream of bytes. It doesn't care what those bytes are. HTTP is built on top of TCP and specifies the ability to make a request without closing the connection (HTTP 1.1 Keep Alive). So you need to understand the HTTP protocol, understand whether it's a Keep Alive connection or not, and then do the same thing a browser would to do understand when a reply has been completed and the connection is available for the next request. Otherwise, you'll just look like you're getting loads of unrelated data as you sniff the connection. Oh, and you'll probably need to understand the HTTP chunking protocol too.

  • SOAP over HTTPS from XE to 10.1.3

    I'm trying to setup the classic client server application using soap(web services,utl_http) over https between XE(clients) and Application server 10.1.3. I created a pl/sql web service using JDeveloper 10.1.3 and deployed it to the AS successfully.
    When trying to create a new webservice through HTML DB (over port 80), XE states that I have no input or output parameters for my soap methods. I belive its parsing my WSDL wrong...but this is another thread...I think I can make that work.
    The main technolgical problem is sending the soap msgs over https. I would perferr to do this with utl_http since I could control my logic with pure pl/sql. Is the Apache proxy route the only option?
    Is there no way for pl/sql to consume web services?
    If a JVM was included with XE then this would be a breeze(hint hint)
    Thank you
    Dan

    Dan,
    The SOAP utility with APEX appears to be very weak, I and several others have tried to use it against 'real' web services (e.g. Amazon's S3) and get the same problem, no input or output parameters.
    To do SOAP client within Oracle the hard way see ...
    http://www.oracle.com/technology/tech/webservices/htdocs/samples/dbwebservice/DBWebServices_PLSQL.html
    I'm using Simon Fell's PocketSoap library with Excel VBA to first ensure my understanding of the S3 service, then I'll use the resulting soap envelopes as templates for hand coding into PL/SQL. Not ideal, but it works.
    Tom

  • SOAP over HTTP

    I want to send XML in SOAP envelop over HTTP to Web Service. I want to used HttpUrlConnection instead of other approaches. I have set doInput and doOutput both as true as want both type of communicaiton from one HttpUrlConnection.
    I am able to get OutputStream from HttpUrlConnection but getting error 500 while trying to get InputStream.
    Any idea ... ?

    Its a question abt SOAP.I'm new to SOAP.As SOAP itself
    is a protocol (Simple obj access protocol) SOAP is no longer an acronym - I believe this was done so people's understanding of SOAP was not limited to SOAP-RPC.
    why is HTTP used to transfer data using SOAP?SOAP is an XML messaging standard. It provides a standard method for exchanging XML data in a fashion that is transport agnostic, i.e. it would be perfectly valid (though slow) to use email as the transport for SOAP messages.
    HTTP is used because it is simple, widely implemented across platforms and languages, and is also commonly available. A side effect of the use of HTTP is that many servers allow HTTP traffic through their firewalls, enabling SOAP applications to be available over a wider network (this is not the greatest from a security perspective).
    In short, HTTP is used because it's there.
    JT

  • SOAP over HTTP/POST

    Hi everyone,
    I'd be eternally grateful if someone could provide me with a quick + easy solution to the following (basic?) task.
    I have a user form with the required parameters and a submit button. I have an XML schema which specifies the format for the soap requests and responses. How do I accept user input, wrap it into a soap request, send it via HTTP/POST to a server ( http://localhost:9999/xyz/xyz), wait for a soap response and display the response in a readable format to the user when they press the submit button? Not that hard is it?!
    Please try to be a specific as possible because I'm no Java expert. I'm just so confused with all the tutorials about wsdl, bpel, tomcat, jax ws, glassfish etc etc etc!
    I use netbeans and java app server 9, though I'm open to other IDEs/servers.
    Any help will be greatly appreciated,
    Ruth

    https://saaj.dev.java.net/source/browse/*checkout*/saSAAJ: aj/saaj-ri/docs/index.html
    The Java Web Services Tutorial:
    http://java.sun.com/webservices/docs/1.6/tutorial/doc/index.html
    (Chapter 5)
    SOAP Tutorial: http://www.w3schools.com/soap/default.asp

  • Invoking Soap over HTTPS

    Has any one tested invoking the BPEL process using the SOAP WS invokcation over HTTPS from a OA framework web page?
    We have a UI page that takes the BPEL end point via profile option and invokes the BPEL process as follows:
    // code to create the SOAP message and send it
    org.apache.soap.messaging.Message msg = new org.apache.soap.messaging.Message();
    msg.setSOAPTransport(new SOAPHTTPConnection());
    msg.send(new URL(location), "process", requestEnv);
    Envelope responseEnv = msg.receive();
    Body responseBody = responseEnv.getBody();
    I am not sure if this can handle the HTTPS as there is no code to set the key store and certificate.
    Thank you,
    Chida

    Has any one tested invoking the BPEL process using the SOAP WS invokcation over HTTPS from a OA framework web page?
    We have a UI page that takes the BPEL end point via profile option and invokes the BPEL process as follows:
    // code to create the SOAP message and send it
    org.apache.soap.messaging.Message msg = new org.apache.soap.messaging.Message();
    msg.setSOAPTransport(new SOAPHTTPConnection());
    msg.send(new URL(location), "process", requestEnv);
    Envelope responseEnv = msg.receive();
    Body responseBody = responseEnv.getBody();
    I am not sure if this can handle the HTTPS as there is no code to set the key store and certificate.
    Thank you,
    Chida

  • BEA recommendation for use of Thin or Thick driver of Oracle 10g

    What is recommended by BEA to use Oracle Thin or thick driver for connecting to oracle 10g database from Weblogic Server 8.1.5?

    nmyneni wrote:
    What is recommended by BEA to use Oracle Thin or thick driver for connecting to oracle 10g database from Weblogic Server 8.1.5?Use the Oracle driver in the thin mode, not the thick/OCI mode.
    The latter will expose you to native code bugs in OCI that
    can kill an entire JVM.

  • Install Http Server in ORACLE 10g 10.2.0.3

    Hi, before i had Oracle XE 10.2.0.1 and Apex 3.2 both worked ok. Now remove Oracle XE and APEX 3.2 and then installed ORACLE 10g 10.2.0.3 and Apex 4.0, but when i try to login to apex http://server:8080/pls/apex/apex_admin the login page not appears.
    Before run apex with OC4J from developer suite 10g, but now i need to install some particular http server with the companion cd or something like that.
    I guess i have to install http server and xml database from companion cd but which option have to choose.
    Regards

    Pl post details of your OS. If you installed 10.2.0.3, you will also need to install the HTTP server from the companion CD.
    http://download.oracle.com/docs/cd/E17556_01/doc/install.40/e15513/overview.htm#CJAFEAJJ
    http://www.oracle.com/technology/obe/apex/apexinst/apexinst.htm#t2
    HTH
    Srini

  • How to configure http server in oracle 10g

    Hi
    I am configuring apex 3.2.1 on oracle 10g 10.2.0 I need help how to configure http server bec i did not find any Apache file or folder in 10g if it is then how .
    Arshad

    Hi
    I use to configure only this in $ORACLE_HOME/forms/server/forms.conf (and restart ias):
    AddType application/x-orarrp rrp_
    AddType application/x-orarrp-text rrpt
    AddType application/x-orarrp-ps rrpp
    AddType application/x-orarrp-pdf rrpa
    AddType application/x-orarrp-rtf rrpr
    AddType application/x-orarrp-html rrph

  • Looking for suggestions for a new display: What size, resolution and refresh is recommended?

    I've been using my laptop display, 15.6" and its just too small. I figured I'd purchase a display to plug into the laptop. I'd like suggestion on specs. I figured a 20 to 23 inch would work ok but I've seen some folks with dual screens. Lastly, I have no understanding of resoution, refresh rates to look for or brands to either look at or stay away from.
    Any help would be great.
    Thanks.

    The good news is that you don't need to worry too much about the specs -- just about any monitor you purchase will be OK.  First choose a size that fits in you work area, then pick the monitor from that range of products that has the highest resolution and refresh rates -- the monitors will all have very similar specs.
    I've been using PCConnection
    http://www.pcconnection.com/
    as my primary source for computer purchases for over 12 years and highly recommend it.  They have user's comments for most of their products, so you can get a feel for the satisfaction level of the products.
    I've never understood the value of having dual monitors, unless one needs to have a couple of real-time monitoring apps open at the same time for instant feedback about the data....
    Ken

  • Looking for suggestions for specialized tone generator

    An office colleague has two tuning forks: one is middle C and the other is G. When she strikes them and holds them near my ears for several seconds, one on each side, the effect is amazing. Then she reverses their position, to continue my nearly trancelike state.
    I want to find an application that will duplicate this effect. I can't find a tone generator that will create two tones simultaneously, one on each channel, much less reverse channels at some point. I am guessing there are music or mixing applications that can do this effortlessly, but I am too dumb to identify them. Will some kind soul help me out? If no app is available I may try to develop an app for that and get rich.

    In the waveform display, select the part of the audio file containing only the noise you want to reduce. Choose Process>Set Noise Print. The selected noise is stored as a noise print. Then, in the waveform display, select the part of the audio file in which you want to reduce noise (probably the whole file in your case), and choose Process>Reduce Noise. When the reduce Noise dialog appears, drag the noise threshhold slider to the right just a bit (I take it down to about -45db to -40db), and click the play button in that dialog window to preview the file. If you like what you hear, press Apply.
    FYI, this was taken nearly word for word from the Soundtrack Pro user manual, pp168-169.
    Happy denoising.

  • Grants for non-apps user to view APIs in oracle application module browser

    Hi,
    Im trying to make a connection with E-Business Suite using the Oracle Applications Adapter and the Enterprise Service Bus. I follow all the steps for creating the connection pools, connection data sources and connection factories using the standar apps user. After setting up the environment I can drag the oracle applications adapter to a ESB project and choose from all the modules available the especific functionality I want.
    The problem comes when I try to use a user different from apps. When I try to set the connection with other user no E-Business Suite modules are display in the Adapter wizard.
    Are there any specific privileges I should set up to this database user (non-apps) to give him acces to API, XML Gateways, Tables/views,Business Events, etc??.

    Could you let me know the procedure/steps to assign privileges and/or responsibilities for new oracle apps userI understand this is for an application user.
    when I am trying to import a journalAgain, you have to run this as an application user.
    Same import is working fine with default Oracle applications 11i "APPS" user.APPS is a database user (NOT an application user). So, the Application user you want to create and assign him responsibilities has nothing to do with the database user. If you assign the same responsibilities which the other user has (the one which you use to import journals) to the new application user, then you should be able to do the task successfully.

Maybe you are looking for

  • Can't get rid of a TX - message keeps appearing and being processed by OSB

    I have some sort of a poison message or TX I can't flush. Every 10 seconds I get a log message like the second one below, and the number of pending messages in multiple places and OSB proxy service messages processed keep climbing - all without produ

  • Different colour text in textarea

    Hi, I was hoping someone could tell me whether it's possible to change the colour of text that is appended to a textarea. I'm finishing off a chat server/applet project and i thought it would look better if I could colour code the messages that are d

  • Administrator API: Login to specific instance with username, password

    1) How do I login to a specific instance of ColdFusion administrator with a username and password.  The example I see everywhere is variations of: adminObj = createObject("component","cfide.adminapi.administrator"); adminObj.login("password"); which

  • BB Bold 9780 OS6

    I recently purchased a Bold 9780 OS6, and encounter problem when using browser; i.e. Access Blocked. With my previous Bold 9700, such problem can be solved when one change the browser setting to internet Explorer instead of BB Explorer. Please help.

  • Can no longer drag icons, copy paste, print, spell check, drag and drop etc

    All of a sudden I can no longer do any of thoses things. Also I get a message that ClamAV can not find the scanning agent either (I use ClamXav). the spell check in Safari does not work either. it claims it can not find my printer, and who knows what