Why so many broken links under otn regarding db web services????

on this page
http://www.oracle.com/technology/sample_code/tech/java/jsp/dbwebservices.html
these are broken:
1. Oralce 9i database web services
http://www.oracle.com/technology/tech/webservices/htdocs/dbwebservices/Database_Web_Services.pdf
2. Basic Web service Call-out using PL/SQL UTL_HTTP
http://www.oracle.com/technology/tech/webservices/htdocs/samples/dbwebservice/DBWebServices_PLSQL.html
3. Publish PLSQL as a web service using JDEveloper
http://www.oracle.com/technology/tech/webservices/htdocs/series/plsql/index.html
4. Use Oracle 9iAQ with JMS for Web Services
http://www.oracle.com/technology/tech/webservices/htdocs/series/jms/
(so EVERY Tutorial results in a 404)

two of the links at the bottom of this page are broken:
http://www.oracle.com/technology/products/jdev/howtos/10g/WS_LoadJava/LoadJava_HowTo.html

Similar Messages

  • TS3276 Broken links when i send a web page from mail app in mavericks

    i used to send a web page from safari using Mail. since i updated to maverick, those who receive the mail, see broken links, is there a solution for this?
    Thanks

    Same here. Very frustrating. It was working perfectly in OS 10.8.

  • Queries regarding creating Web Services in Oracle EBS 11i[Workaround found]

    Hi,
    We have an E-Business Suite 11i installation(11.5.10.2). In our implementation we are using some of the public APIs to insert & update data in EBS tables. Earlier this was done by calling the required PL/SQL procedures through dblinks.
    Now, we need to do the same by using Web Services. That is we need a Web Service which can be invoked from a different application(SAP) and the Web Service in turn will call the APIs.
    I am new to Web Services/SOA and as far as I could understand from reading the documentation, we need the following:
    1. Install Oracle 10g Application Server with BPEL Process Manager ONLY(Oracle AS Adapter will be installed as part of BPEL PM. The Oracle AS Adapter will connect 10gAS to EBS)
    2. JDeveloper to create and deploy the BPEL process.
    I have a few questions here:
    1. Are the above two points the only prerequisites for what I want to achieve? Do I need to install anything else?
    2. How do I expose the created Web Service? I mean how will the 3rd party application invoke this Web Service?
    Answers and/or links to helpful documents awaited.
    Regards,
    -Sujoy
    Found an alternate and more cost-effective solution. Turns out that the SAP PI/XI engine can use JDBC to connect to the Oracle DB. SAP PI/XI will host the Web Service and will internally access the API through a JDBC connection.
    Edited by: Sujoy on Feb 3, 2011 7:41 PM
    Edited by: Sujoy on May 16, 2012 6:49 PM

    Hi Helios,
    I had checked the note that you are referring to before posting here. It did provide me with a start but otherwise it wasn't a great help (also some of the links are broken) . Since I am quite new to this...I am not sure whether I am proceeding in the right direction. An example/tutorial is what would be pretty useful.
    Thanks anyway!
    -Regards,
    Sujoy

  • Question regarding a web service functionality in JDeveloper

    Hi guys,
    I used JDeveloper to create a very simple Celsius to Fahrenheit converter web service. One Java class, one method, taking in a float as an argument and returns a float. I created the web service. When I deployed it to a remote OC4J, I got a com.mysql.jdbc driver cannot be found error...which threw me off. As it turns out in the Connections tab, I had a node created under Databases for accessing MySQL that is installed on my machine. So it seems JDeveloper was trying to transfer those settings as well to the remote OC4J...when I deleted that node, the problem went away and the web service got deployed ok. Why is that? Is there any way to tell JDeveloper to ignore that and deploy the Web Service?
    Thanks in advance.

    Hi,
    In the Preferences dialog's Deployment tab, the 'Bundle Default data-sources.xml During Deplyment' checkbox is checked by default. This file will define the data source for each defined database connection. Can you try unchecking this and try deploying the web service ?
    Havent got a MySQL db connection myself to try reproducing, Will seearound if I get access to one to reproduce inthe meanwhile..
    Regards,
    Sunil..

  • Query regarding calling web services in Visual Composer

    Hi Experts,
       I am thankful for your help for posting this link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e017128
    I am following the same steps but I am unable to find the system in visual composer after creating it in portal.
    I got another document also related to it...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ceea45f3-0c01-0010-049c-c2b001f590fb
    But in this document when I am giving the WSDL URL name its not accepting. It is showing as invalid.So I am unable to proceed forward. Please help soon...
    Regards
    Nutan

    Hi Nutan,
    Try to define the web service system directly in the portal. Through VC you can encounter problems.
    Regards,
    Natty

  • Can someone please offer guidance regarding xml web service?

    Post Author: LeeCUK
    CA Forum: Xcelsius and Live Office
    Hello, I am attempting to write a dashboard that will retrieve data from a database using the GetXML, I have tried many other methods but this seems the only one I can get working.
    The issue I have is that in my code it returns only one selecatble parameter and stores the whole entires within it.
    Below is an example of the code.
    I send from the dashboard the Xcelsius_Value and it returns the xml schema as expected with fieldnames but within one selectable parameter and does not allow splitting into different cells.
    I hope someone can help.Option Strict OffImports System.Data.OleDbImports System.DataImports System.Web.ServicesImports Oracle.DataAccessImports Oracle.DataAccess.ClientImports System.XmlImports System.Text
    <WebService(Namespace:="http://microsoft.com/webservices/")> Public Class Service1    Inherits System.Web.Services.WebService
    #Region " Web Services Designer Generated Code "    'Generated code not shown.#End Region
    #Region "Public Funcation"
        Public strSQL As String    Private configurationAppSettings As System.Configuration.AppSettingsReader = New System.Configuration.AppSettingsReader    Private oracomGeneric As New Oracle.DataAccess.Client.OracleCommand    Private oraconOds As New Oracle.DataAccess.Client.OracleConnection    Private adptGeneric As New Oracle.DataAccess.Client.OracleDataAdapter    Public dtsGeneric As New System.Data.DataSet    Public TableName As String
    #End Region
        <WebMethod()> Public Function DatabaseXML(ByVal Xcelsius_Value As String) As String
            Try
                oracomGeneric.Connection = oraconOds            oracomGeneric.FetchSize = CType(65536, Long)
                oraconOds.ConnectionString = CType(configurationAppSettings.GetValue("oracledatabase.ConnectionString", GetType(System.String)), String)
                adptGeneric.DeleteCommand = oracomGeneric            adptGeneric.InsertCommand = oracomGeneric            adptGeneric.SelectCommand = oracomGeneric
                dtsGeneric.Clear()
                oracomGeneric.Connection() = oraconOds
                TableName = "table1"
                strSQL = " SELECT   field1, field2, " & _         "ROUND (SUM (sumfield3)) AS value1, " & _         "ROUND (SUM (sumfield4)) AS value2, " & _         "ROUND (SUM (sumfield5)) AS value3, " & _         "ROUND (SUM (sumfield6)) AS value4 " & _            "FROM " & TableName
                oraconOds.Open()            oracomGeneric.CommandText = strSQL
                adptGeneric.Fill(dtsGeneric)            oraconOds.Close()
                DatabaseXML = dtsGeneric.GetXml()
            Catch Ex As Exception            Throw Ex        End Try    End Function
    End Class

    with as2 there is no good way:
    trace(this.firstChild.childNodes[1].childNodes[4].attributes['ID']);
    trace(this.firstChild.childNodes[1].childNodes[4].attributes['CssClass']);
    etc

  • Broken link on OTN home page (EUS)

    The link "Review the new technical white paper, Extending the Life of Database Applications.", that points to "http://otn.oracle.com/deploy/security/aso/EUS_appsarch.pdf" is broken!!! Can you unbreak it?
    Thanks
    Mário

    The information is archived. Please go to OTN archives and click on the April 21 week. The information is included in "Solve your User Management Headaches" section . The links are on the verbs - Resolve, Explore, Review, Read, Download etc.,

  • Broken Links on OTN Security Page

    On page http://www.oracle.com/technology/deploy/security/index.html (Oracle Platform Security), the links to Security Evaluations www.oracle.com/deploy/security/seceval and to Oracle Security Alerts (www.oracle.com/deploy/security/alerts.htm) are broken.

    Fixed; thanks for the heads up.
    Regards, OTN

  • Broken Links on OTN

    The Oracle magazine archive links on this page:
    http://www.oracle.com/technology//oramag/index.html
    to issues older than Jan-Feb 2004 do not work. If you edit the link for the current issue:
    http://www.oracle.com/technology/oramag/oracle/04-sep/index.html
    in logical ways, you can access the older issues:
    http://www.oracle.com/technology/oramag/oracle/02-sep/index.html
    but this should not be required.

    http://www.oracle.com/technology/products/bi/odm/index.html
    seems like many/most of the links on here point to missing pages...looking for info on Oracle data mining

  • Regarding PLSQL web services

    I'm calling a plsql stored procedure on PHP. The URL looks something like
    http://<servername><port>/pls/<DAD>/packagename.procedurename
    I get HTTP 404 error if the procedure has a PLSQL table type parameter in it.
    Any ideas why it's so? Has the mod_plsql settings got something to do with this, because this behavior is not seen on all environments?
    DB version: 8.1.7.3.0

    Check SICF that the service is activated.
    Go to ST01, start an authorisation trace. Attempt to use the service, then look at the trace to check if it's an auth issue.
    Check SM21 for any indication of an issue at that time.
    The problems I've encountered have been the service not being activated, the role not having the service included with the correct hash entry as in USOBHASH, or other authorisation errors.
    Finally, go to SMICM, and using one of the options there, up the trace level to 3. But if you get to that stage, you're really getting into networking type knowledge.

  • Regarding Testing Web service in oc4j

    Hi all,
    I have this webservice PublicBRMfetchInvoiceXMLService, which i have deployed as .war file in oc4j and which was successful. But while testing the webservice it give error like..
    Caught exception while handling request: Caught exception while handling request: java.lang.UnsatisfiedLinkError: no portal in java.library.path
    I have set the Classpath where the pcm.jar is located. could not figure out what went missing. Any idea on this error.
    Regards
    Anirban.

    Hi Anirban,
    Did you resolve this error. I am doing exactly the same and getting the same error.
    Could you tell me how you resolve this one.
    Write me an email to [email protected]
    Thank you very much for your precious time.
    Best Regards,
    Rohit
    +91-966-55-27-444

  • Regarding multiple web service

    Hi,
    I am working on web services in EJB.
    for securing the web service, we use jboss-wsse security.
    Can i have multiple web services with few web services being secured and the others in-secured?
    Thanks in advance.

    Friends,
    Can you please help me out with this logic? Thanks!

  • Regarding RESTful WEB SERVICES with SPRING MVC Framework

    Hi,
    Can anyone explain me about RESTful WEB SERVICES with SPRING MVC Framework .
    It is urgent for me.
    Thanks
    Venkat Jalli

    Hi Manoj,
    I am also new to Spring MVC portlet. But, I tried to see the difference between sample spring portlet and your code below. Issue that I can see is, in your code, you have not mapped your servlet container with portlet application. So, in theory, your servlet containder do not know that you have a servlet. Let me try to explain from sample portlet,
    In portlet.xml, they have something like below:-
    <portlet-name>swf-booking-mvc</portlet-name>
    <display-name>Spring Webflow Booking MVC</display-name>
    <portlet-class>org.springframework.web.portlet.DispatcherPortlet</portlet-class>
    And in web.xml, they have below:-
    <servlet-name>swf-booking-mvc</servlet-name>
    <servlet-class>org.apache.pluto.core.PortletServlet</servlet-class>
    <init-param>
    <param-name>portlet-name</param-name>
    <param-value>swf-booking-mvc</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    This web.xml is for Pluto portlet container and there will something similar for Weblogic portal as well that I am trying to figure out :(
    Thanks,
    Sanjeev

  • Resolve Broken Links with No Reference

    I have many broken links in a webhelp project that I cannot
    resolve because there is no reference. Is there a way to delete
    broken links?

    Hi, I have a similar problem and cannot seem to get rid of a
    bunch of broken links.
    Basically at some point this project file had an html
    subfolder that was taken out. Consequently many topics had
    html\<topicname>.htm and then became <topicname>.htm.
    My problem is now that these files with the html\ folder are
    under broken links and now don't reference or link to anything if I
    right-click on them. I cannot restore them, delete them, or edit
    them in any way.
    I find that it is also creating problems when the WebHelp is
    generated and put on our server, several topics give a "file not
    found" error because they are searching for html\ in the filename
    and of course cannot find it. I have fixed these by searching and
    getting rid of any reference to \html in the topic files, but a few
    still don't link properly. Even after creating a new table of
    contents and re-linking all topics and images it does the same, AND
    has these broken links still listed.
    Any ideas? I realize this may be several problems. I think
    someone in the past deleted the html folder outside of RoboHelp and
    it messed everything up. We are taking about a Help file with over
    700 topics, so it is a real beast to work with.
    Thanks,
    Joel

  • Is there an automated way to fix broken links?

    I've been revising a large online Help system. I've added
    many new topics. I've deleted topics. I've changed topic names of
    topics already in place. As a result, the system has many broken
    links. Is there an automated way, or a utilility, to fix these
    links? This is a very large help system.
    I'm using X5 (WebHelp).
    Feel free to answer via email, and thanks!

    When you delete RH offers to fix the links to that topic. If
    you did not take that option then you can only fix it manually. Did
    you perhaps delete outside of RH?
    I don't see how adding a new topic can break a link as
    nothing links to it until you create the links.

Maybe you are looking for

  • Customize delivery note during MIGO mov. type 541

    Hi, everyone. Pls. I need help because during MIGO mov. type 541, I need to print the delivery note just to accompany the materials. I can create/save the material doc. correctly, but when I save I have to customize the printout of delivery note. Tha

  • Load-balancing by application version

    Hi there. I have a pair of CSS-11501's that I'm using for load-balancing incoming connections for a specific software application. We have 2 versions of the software that connect to the same TCP port on the server side. Is there any way to have the C

  • Bex WAD Documnets

    Hi Experts,    Please tell me where can i find some study material on Bex & WAD. Please do send me if any one is having some documents at [email protected] Thanks Arpit Agarwal

  • List reset previous level (InDesign CS6)

    When working with numbered Lists i encountered the following problem with resetting the list numbers. I want to auto number the following list: (This is the correct version as i think it should be) 1 Headline 1.0.1 Text 1.0.2 Text 1.1 Headline 1.1.1

  • Satellite A350-212 PSAL6E BIOS download issue

    Currently Toshiba driver download website does not list search results so I could not download BIOS officially. I have found for my Toshiba A350-212 PSAL6E BIOS but thats giving previllage error even I run as administrator. Maybe its not the actual B