<?xml version="1.0" encoding="UTF-8"?>
<saas-component
        xmlns="http://xml.netbeans.org/websvc/saas/component/1.0"
        xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'    
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"             
        xsi:schemaLocation='http://xml.netbeans.org/websvc/saas/component/1.0 
        org/netbeans/modules/websvc/saas/component/saas-component.xsd'       
        localizing-bundle="org.netbeans.modules.websvc.components.google.Bundle"
        icon="org/netbeans/modules/websvc/components/google/resources/google16.png">
            
    <!-- If localizing-bundle is specified, AdSenseForContent is the key to
         the localized string in the bundle. -->
    <display-name>AdSenseForContent</display-name>  
    
    <!-- Determines which group this component belongs too. This can go arbitrarily
         deep.  If localizing-bundle is specified, the name attribute will be
         treated as the key to the localize string in the bundle -->
    <group name="Google">
        <group name="..."/>
    </group>
   
    <!-- This is the description for this SaaS component. It is not localized. -->
    <description>Enables a developer to obtain a code snippet that adds the 
        Google search box to a publisher's web page. The search can be a full web search 
        or restricted to one of several domains. When an end user performs a search, 
        ads are displayed.  When a user clicks through, Google credits a payment.
    </description>
   
    <service type="http://schemas.xmlsoap.org/wsdl/"
        url="https://sandbox.google.com/api/adsense/v2/AdSenseForContentService?wsdl"
        service-name="AdSenseForContentServiceService"
        port-name="AdSenseForContentService">
                
        <!-- The follow elements indicate which operations will be visible by default.-->
        
          <!-- name value is wsdl:binding:/wsdl:operation[@name] -->
            <!-- serviceName value is wsdl:service[@name] -->
            <!-- portName value is wsdl:service/wsdl:port[@name] -->  
        <method name="generateAdCode">
            <doc>....</doc>
        </method>
        <method name="..." api-doc="..."/>                       
    </service>

</saas-component>
