You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2009/06/22 18:34:47 UTC

svn commit: r787307 - in /cxf/branches/2.2.x-fixes: ./ distribution/src/main/release/samples/js_provider/impl.js

Author: sergeyb
Date: Mon Jun 22 16:34:47 2009
New Revision: 787307

URL: http://svn.apache.org/viewvc?rev=787307&view=rev
Log:
Merged revisions 787305 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r787305 | sergeyb | 2009-06-22 17:22:25 +0100 (Mon, 22 Jun 2009) | 1 line
  
  Fix for js_provider
........

Modified:
    cxf/branches/2.2.x-fixes/   (props changed)
    cxf/branches/2.2.x-fixes/distribution/src/main/release/samples/js_provider/impl.js

Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Jun 22 16:34:47 2009
@@ -1 +1 @@
-/cxf/trunk:782728-782730,783097,783294,783396,784059,784181-784184,784893,784895,785279-785282,785468,785621,785624,785651,785734,785866,786142,786271-786272,786395,786512,786514,786582-786583,786638,786647,786850,787200,787269,787277-787279,787290
+/cxf/trunk:782728-782730,783097,783294,783396,784059,784181-784184,784893,784895,785279-785282,785468,785621,785624,785651,785734,785866,786142,786271-786272,786395,786512,786514,786582-786583,786638,786647,786850,787200,787269,787277-787279,787290,787305

Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Mon Jun 22 16:34:47 2009
@@ -1 +1 @@
-/cxf/trunk:1-782619,782728-782730,783097,783294,783396,784059,784181-784184,784893-785866,785932,786142,786271-786272,786395,786512,786514,786582-786583,786638,786647,786850,787200,787269,787277-787279,787290
+/cxf/trunk:1-782619,782728-782730,783097,783294,783396,784059,784181-784184,784893-785866,785932,786142,786271-786272,786395,786512,786514,786582-786583,786638,786647,786850,787200,787269,787277-787279,787290,787305

Modified: cxf/branches/2.2.x-fixes/distribution/src/main/release/samples/js_provider/impl.js
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/distribution/src/main/release/samples/js_provider/impl.js?rev=787307&r1=787306&r2=787307&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/distribution/src/main/release/samples/js_provider/impl.js (original)
+++ cxf/branches/2.2.x-fixes/distribution/src/main/release/samples/js_provider/impl.js Mon Jun 22 16:34:47 2009
@@ -28,7 +28,7 @@
     var ns4 = "http://apache.org/hello_world_soap_http/types";
     var list = document.getElementsByTagNameNS(ns4, "requestType");
     var name = list.item(0).getFirstChild().getNodeValue();
-    var newDoc = document.getOwnerDocument().getImplementation().createDocument(ns4, "ns4:greetMeResponse", null);
+    var newDoc = document.getImplementation().createDocument(ns4, "ns4:greetMeResponse", null);
     var el = newDoc.createElementNS(ns4, "ns4:responseType");
     var txt = newDoc.createTextNode("Hi " + name);
     el.insertBefore(txt, null);