You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@xml.apache.org by David Corbin <dc...@machturtle.com> on 2000/12/19 02:39:32 UTC

Lots of methods

I have lots of methods in my deployment descriptor "<isd:provider>"
tag.  Is there anyway to declare these other than in a single long
line?  Either by using nested tags (ideal) or some "standard XML way" to
wrap a long attribute?

Thanks.
-- 
David Corbin 		
Mach Turtle Technologies, Inc.
http://www.machturtle.com
dcorbin@machturtle.com

RE: Lots of methods

Posted by "Robert C. Lyons" <bo...@unidex.com>.
David wrote:
> I have lots of methods in my deployment descriptor "<isd:provider>"
> tag.  Is there anyway to declare these other than in a single long
> line?  Either by using nested tags (ideal) or some "standard
> XML way" to wrap a long attribute?

David,

Apache SOAP allows one or more whitespace characters
between two adjacent method names. For example, you can
format the isd:provider element as follows:

  <isd:provider type="java"
                scope="Application"
                methods="getAddressFromName
                         addEntry
                         getAllListings
                         putListings">

Best regards,

Bob

<sig name    = 'Bob Lyons'
     title   = 'E-Commerce Consultant'
     company = 'Unidex, Inc.'
     phone   = '+1-732-975-9877'
     email   = 'boblyons@unidex.com'
     url     = 'http://www.unidex.com/'
     product = 'XML Convert: transforms flat files to XML and vice versa' />


RE: Lots of methods

Posted by "Robert C. Lyons" <bo...@unidex.com>.
David wrote:
> I have lots of methods in my deployment descriptor "<isd:provider>"
> tag.  Is there anyway to declare these other than in a single long
> line?  Either by using nested tags (ideal) or some "standard
> XML way" to wrap a long attribute?

David,

Apache SOAP allows one or more whitespace characters
between two adjacent method names. For example, you can
format the isd:provider element as follows:

  <isd:provider type="java"
                scope="Application"
                methods="getAddressFromName
                         addEntry
                         getAllListings
                         putListings">

Best regards,

Bob

<sig name    = 'Bob Lyons'
     title   = 'E-Commerce Consultant'
     company = 'Unidex, Inc.'
     phone   = '+1-732-975-9877'
     email   = 'boblyons@unidex.com'
     url     = 'http://www.unidex.com/'
     product = 'XML Convert: transforms flat files to XML and vice versa' />