I have two projects in my solution file one is Webui (a .NET application) and another one is WCF service project.
The scenario is whenever a user uploads a file in Webui, that file needs to be send to the WCF service. Can anyone please suggest me how to send attachments from Webui to the WCF service?
Upload the file you need to transfer it as a byte stream. You need to use WCF streaming. For example
how to upload file via WCF