cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1285
Views
0
Helpful
2
Replies

How to find out Membership of Lines in Line Groups with AXL

r.rung
Level 1
Level 1

Hello,

i'm writing a Java Programm to add and remove membership of lines to Line Groups.

adding works well, but how can i find out the membership of a specific line?

i found the Element AXLSoap - LLineGroupMember , but it has no reference, so it seems that it exists, but it is not used by any AXL Request.

i tried the following without success:

AXLSoap - listLineGroup -> gives me no members

AXLSoap - getLineGroup -> gives me no members

please tell me that i don't have to use a sql search statement....

1 Accepted Solution

Accepted Solutions

Simon Marshall
Cisco Employee
Cisco Employee

Hi r.rung,

Here is what I used to display the line members of a linegroup:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/11.0">

   <soapenv:Header/>

   <soapenv:Body>

      <ns:getLineGroup sequence="?">

         <name>LG_Name</name>

         <returnedTags>

               <members uuid="?">

                    <member uuid="?">

                         <directoryNumber uuid="?">

                              <pattern></pattern>

                         </directoryNumber>

                    </member>

               </members>

      </returnedTags>

      </ns:getLineGroup>

   </soapenv:Body>

</soapenv:Envelope>

Hope this helps

View solution in original post

2 Replies 2

Simon Marshall
Cisco Employee
Cisco Employee

Hi r.rung,

Here is what I used to display the line members of a linegroup:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/11.0">

   <soapenv:Header/>

   <soapenv:Body>

      <ns:getLineGroup sequence="?">

         <name>LG_Name</name>

         <returnedTags>

               <members uuid="?">

                    <member uuid="?">

                         <directoryNumber uuid="?">

                              <pattern></pattern>

                         </directoryNumber>

                    </member>

               </members>

      </returnedTags>

      </ns:getLineGroup>

   </soapenv:Body>

</soapenv:Envelope>

Hope this helps

amazing Thanks.