Did you include the full message?
If the full message is "Operation MIOS_SubmitNotifications is an operation with a primitive return type. This wizard does not have support for that, but you can create mappings and web service calls manually." then it means that you can't use the wizard, but you can still use the WSDL to create a consumed web service.
Im getting further now.
I got now the following error: 'Cannot find the declaration of element 'not:SubmitNotifications'.'
The ':not' is a namespace. But this request has 2 different namespaces. How can i add this both namespaces to the Webservice?
The request i send from soap that is working now is:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:not="http://ns-x.nl/notifications">
<soapenv:Header/>
<soapenv:Body>
<not:SubmitNotifications>
<SubmitNotifications>
<!--Optional:-->
<notifications>
<!--Optional:-->
<notifications>
<Notifcation>
<!--Zero or more repetitions:-->
<Notification>
<MessageId>1</MessageId>
<!--Optional:-->
<NotificationSchedule>2018-11-14T00:00:00</NotificationSchedule>
<NotificationType>s</NotificationType>
<!--Optional:-->
<Parameters>
<!--Optional:-->
<Paramters>
<Parameter>
<!--Zero or more repetitions:-->
<Parameter>
<Name>?</Name>
<Value>?</Value>
</Parameter>
</Parameter>
</Paramters>
</Parameters>
</Notification>
</Notifcation>
</notifications>
</notifications>
</SubmitNotifications>
</not:SubmitNotifications>
</soapenv:Body>
</soapenv:Envelope>
but the request it has to be:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:not="http://ns-x.nl/notifications" xmlns:sub="http://schemas.datacontract.org/2004/07/SubmitNotifications" xmlns:rad="http://www.radiuz.com/">
<soapenv:Header/>
<soapenv:Body>
<not:SubmitNotifications>
<not:notifications>
<sub:Notification>
<sub:MessageId>1</sub:MessageId>
<sub:NotificationSchedule>2018-11-14T00:00:00</sub:NotificationSchedule>
<sub:NotificationType>SEND_EMAIL_1069</sub:NotificationType>
<sub:Parameters>
<sub:Parameter>
<sub:Name>Number</sub:Name>
<sub:Value>1642544677</sub:Value>
</sub:Parameter>
<sub:Parameter>
<sub:Name>EmailTemplateId</sub:Name>
<sub:Value>S_1069</sub:Value>
</sub:Parameter>
<sub:Parameter>
<sub:Name>AdditionalFee</sub:Name>
<sub:Value>5,00</sub:Value>
</sub:Parameter>
</sub:Parameters>
</sub:Notification>
</not:notifications>
</not:SubmitNotifications>
</soapenv:Body>
</soapenv:Envelope>