function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sushant panigrahisushant panigrahi 

Try to solve: No data produced from map, please check source profile and make sure it matches source data. in wsdl code

I used wsdl link, salesforce triggering boomi and sending data. 
 
but it is showing error: "No data produced from map, please check source profile and make sure it matches source data."
 
1. Initially it was showing unsupported include tag than i use wsdl=single to eliminate include tag.
2. and than targetnamespace can not be null than i use typenamespace in request profile and provide name space 
 
After this 2 salesforce enable to generate apexcode and parse successfully and it is triggering boomi. but now it is showing this error , request profile invalid it seems , please give me suggestion what should i do?
 
I am attaching screenshot of request profile and wsdl link, where i need to change, 
 
WSDL
 
https://xxxxxxxxxxxxxx/ws/soap/cal/v1/getData?wsdl=single 
This XML file does not appear to have any style information associated with it. The document tree is shown below.
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"xmlns:tns="http://www.boomi.com/connector/wss"xmlns:xs="http://www.w3.org/2001/XMLSchema" name="WebServiceProvider"targetNamespace="http://www.boomi.com/connector/wss">
<wsdl:types>
<xs:schema xmlns:tns="namespace.GERenewables.COM" elementFormDefault="qualified"targetNamespace="namespace.GERenewables.COM" version="1.0">
<xs:element name="Opportunity_Info" type="tns:Opportunity_Info"/>
<xs:complexType name="Opportunity_Info">
<xs:sequence>
<xs:element maxOccurs="1" minOccurs="0" name="OPPORTUNITY_NUMBER" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="OPPORTUNITY_NAME" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="INSTALL_COUNTRY" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="INSTALL_STATE" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="SITE_VAVG" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="SITE_K_FACTOR" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="SITE_AIR_DENSITY" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="SITE_WIND_SHEAR" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="SITE_STUDY_HEIGHT" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="SITE_CTI" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="PLANNED_COD" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="PROJECT_SCOPE" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:element name="ResponseData_oppty" type="tns:ResponseData_oppty"/>
<xs:complexType name="ResponseData_oppty">
<xs:sequence>
<xs:element maxOccurs="1" minOccurs="0" name="Internal_ID" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="StatusMessage" type="xs:string"/>
<xs:element maxOccurs="1" minOccurs="0" name="ERROR" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
<xs:schema xmlns:ns2="namespace.GERenewables.COM" elementFormDefault="qualified"targetNamespace="http://www.boomi.com/connector/wss" version="1.0">
<xs:import namespace="namespace.GERenewables.COM"/>
<xs:element name="getOpportunity" type="tns:getOpportunity"/>
<xs:complexType name="getOpportunity">
<xs:sequence>
<xs:element minOccurs="0" ref="ns2:Opportunity_Info"/>
</xs:sequence>
</xs:complexType>
<xs:element name="getOpportunityResponse" type="tns:getOpportunityResponse"/>
<xs:complexType name="getOpportunityResponse">
<xs:sequence>
<xs:element minOccurs="0" ref="ns2:ResponseData_oppty"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</wsdl:types>
<wsdl:message name="getOpportunity">
<wsdl:part element="tns:getOpportunity" name="parameters"/>
</wsdl:message>
<wsdl:message name="getOpportunityResponse">
<wsdl:part element="tns:getOpportunityResponse" name="parameters"/>
</wsdl:message>
<wsdl:portType name="WebServiceProviderPortType">
<wsdl:operation name="getOpportunity">
<wsdl:input message="tns:getOpportunity"/>
<wsdl:output message="tns:getOpportunityResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="WebServiceProviderPortBinding" type="tns:WebServiceProviderPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="getOpportunity">
<soap:operation soapAction="getOpportunity"/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="WebServiceProvider">
<wsdl:port binding="tns:WebServiceProviderPortBinding" name="WebServiceProviderPort">
<soap:address location="https://test.connect.boomi.com/ws/soap/GERW/HEROKU/processOpportunityDetails"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

User-added image