2

I need to add new field to the Soap Service. This field can add unbounded operations (contain name, description, example xml).For example, is this possible?

example

In the Artifact Source i tried inside a but it is not possible and I cant see how to make something similar like the image.

Thanks!

Community
  • 1
  • 1
Skeitho
  • 113
  • 1
  • 9

1 Answers1

0

You can add a new field which can add unbounded operations as displayed in the image attached through the below code segment. Hope this helps.

Publisher create view

    <table name="WebServiceOperations" columns="3" maxoccurs="unbounded">
    <subheading>
        <heading>Name</heading>
        <heading>Description</heading>
        <heading>XML</heading>
    </subheading>
    <field type="text">
        <name label="Name">name</name>
    </field>
    <field type="text-area">
        <name label="Description">description</name>
    </field>
    <field type="text-area">
        <name label="xml">xml</name>
    </field>
</table>

Note: If you want to get the exact view you have to create or update the GC extension points. For that please refer this question.

Community
  • 1
  • 1
Dilini
  • 188
  • 9