DCOM (Transferring of binary files.)
-
I want to send and receive the binary data across systems. The problem I'm facing is, when a binary file is read and it is sent, the binary data will be sent upto the first encountering NULL character. So I'm wondering, how can I send. Plzzzzz, help me in this issue. Suggestions would be greatly appreciated.
Come online at:- jubinc@skype
-
I want to send and receive the binary data across systems. The problem I'm facing is, when a binary file is read and it is sent, the binary data will be sent upto the first encountering NULL character. So I'm wondering, how can I send. Plzzzzz, help me in this issue. Suggestions would be greatly appreciated.
Come online at:- jubinc@skype
-
Hello, Just try: *.idl: HRESULT FunName([in,out] SAFEARRAY(BYTE)* pbtBufData); *.h : STDMETHOD(FunName)(SAFEARRAY** pbtBufData); *.c : STDMETHODIMP CClassName::FunName(SAFEARRAY** pbtBufData){...} Regards,