I have found here Upload file via Soap message in detail. But i have another issue if there is large file in Soap then it creates memory issues cause of file loads in memory for sending via Soap message.
I read about MTOM (Message Transmission Optimisation Mechanism). "When you use MTOM/XOP to optimise a SOAP message, the XOP processing serialises it into a MIME Multipart/Related message. The XOP processing extracts the base64Binary data from the SOAP message and packages it as separate binary attachments within the MIME message, in a similar manner to e-mail attachments"
I have found how to use this approach in java here Soap with Attachments and MTOM in Java
Now i have two questions :-
- By using MTOM/XOP approach in iOS we can reduce Or solve the issue of memory as explaind above.
- In programming How we can use MTOM/XOP approach in iOS.
Any help will be appriciated.Thanks in advance.