greenstone.org greenstone wiki greenstone trac planet greenstone

Changeset 16785

Show
Ignore:
Timestamp:
2008-08-14 12:13:25 (3 months ago)
Author:
ak19
Message:

Makes static reference to now-static method nodeToElement() of XMLConverter.java

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • other-projects/trunk/gs3-webservices-democlient/src/GS3DemoClient/org/greenstone/gs3services/AdminSOAPServer.java

    r16762 r16785  
    261261                 
    262262                // Let the messagerouter process the request message and get the response 
    263                 Element response = converter.nodeToElement(mr.process(message)); 
     263                Element response = XMLConverter.nodeToElement(mr.process(message)); 
    264264                        // won't be null except when Node returned is not an element 
    265265                        // otherwise, MR always returns some response 
  • other-projects/trunk/gs3-webservices-democlient/src/GS3DemoClient/org/greenstone/gs3services/QBRSOAPServer.java

    r16762 r16785  
    728728                 
    729729                // Let the messagerouter process the request message and get the response 
    730                 Element response = converter.nodeToElement(mr.process(message)); 
     730                Element response = XMLConverter.nodeToElement(mr.process(message)); 
    731731                     // won't be null except when Node returned is not an element 
    732732                     // otherwise, MR always returns some response