Invoke soap Service in Job #5098
Unanswered
pnicosia80
asked this question in
Q&A
Replies: 1 comment
-
Ensure all 'System.ServiceModel.' packages are using the .NET 8 versions (and for those packages where there is no .NET 8 version, remove them from the project as they are now integrated into NET 8). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Good evening,
I'm trying to invoke a web service from inside a job in the module server project and I get this error. How can I solve it?
The CustomBinding on the ServiceEndpoint with contract 'MicroareaLoginManagerSoap' lacks a TransportBindingElement. Every binding must have at least one binding element that derives from TransportBindingElement.. Numero Retry: 3. at System.ServiceModel.Channels.Binding.EnsureInvariants(String contractName)
at System.ServiceModel.Description.ServiceEndpoint.EnsureInvariants()
at System.ServiceModel.Channels.ServiceChannelFactory.BuildChannelFactory(ServiceEndpoint serviceEndpoint, Boolean useActiveAutoClose)
at System.ServiceModel.ChannelFactory.CreateFactory()
at System.ServiceModel.ChannelFactory.OnOpening()
at System.ServiceModel.Channels.CommunicationObject.System.ServiceModel.IAsyncCommunicationObject.OpenAsync(TimeSpan timeout)
at System.Runtime.TaskHelpers.WaitForCompletion(Task task)
at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
at System.ServiceModel.Channels.CommunicationObject.Open()
at System.ServiceModel.ChannelFactory.EnsureOpened()
at System.ServiceModel.ChannelFactory
1.CreateChannel(EndpointAddress address, Uri via) at System.ServiceModel.ChannelFactory
1.CreateChannel()at System.ServiceModel.ClientBase
1.CreateChannel() at System.ServiceModel.ClientBase
1.CreateChannelInternal()at System.ServiceModel.ClientBase`1.get_Channel()
at MicroareLoginManager.MicroareaLoginManagerSoapClient.MicroareLoginManager.MicroareaLoginManagerSoap.LoginCompact(LoginCompactRequest request)
at MicroareLoginManager.MicroareaLoginManagerSoapClient.LoginCompact(String& userName, String& companyName, String password, String askingProcess, Boolean overWriteLogin, String& authenticationToken)
Thanks
Beta Was this translation helpful? Give feedback.
All reactions