Month: August 2007

August 10

Now the first production release is out…

Check it out: WSDL services via the Oracle Protocol Listener. As mentioned in the documentation of the Oracle XMLDB Developers Guide, to enable the WSDL service:

DECLARE
  SERVLET_NAME VARCHAR2(32) := 'orawsv';
BEGIN
  DBMS_XDB.deleteServletMapping(SERVLET_NAME);
  DBMS_XDB.deleteServlet(SERVLET_NAME);
  DBMS_XDB.addServlet(NAME => SERVLET_NAME,
                              LANGUAGE => 'C',
                              DISPNAME => 'Oracle Query Web Service',
                              DESCRIPT => 'Servlet for issuing queries as a Web Service',
                              SCHEMA => 'XDB');
  DBMS_XDB.addServletSecRole(SERVNAME => SERVLET_NAME,
                             ROLENAME => 'XDB_WEBSERVICES',
                             ROLELINK => 'XDB_WEBSERVICES');
  DBMS_XDB.addServletMapping(PATTERN => '/orawsv/*',
                             NAME => SERVLET_NAME);
END;
/

This wil update the xdbconfig.xml file.

To use the WSDL service grant the role XDB_WEBSERVICES to the schema that needs it. This role enables use of Web services over HTTPS; it is required to be able to use Web services.

August 10

Just got the email in…

We are pleased to announce the production download availability of Oracle Database 11g (11.1.0.6.0) on Linux x86 (32-bit). The download is available from the Oracle Technology Network (OTN). There are many technical whitepapers posted for features available in this new release from OTN as well.

Enjoy

😉

August 4

The title was taken from Doug Burns post “Why you can’t just say ‘Stop feeding the troll’ …”. I don’t say I am a “good man”, but in this case I totally agree with Doug. Speak out. Speak out loud, and because Doug has his comment feature turn off and Jonathan probably will delete my comment, I write it down here.

I had a small deja-vu regarding Doug’s post, because when Doug and I had a small conversation on a bench in Dallas. One of the topics was web etiquette and one of my fears (just started this website), being sued by people with more money then me, while I only wrote down how I feld or what I thought was a correct (technical) argument.

If I am wrong, I am wrong. I will re-write my post or withdraw it, but first someone has to give me the correct arguments and test case to proof my fault. Lawyers are not in this category.