Click here to Skip to main content
15,883,943 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
in the ATL dll project there is one function with BYTE* Parameter.


C++
STDMETHODIMP CMSDllServer::sum22(BYTE* aa,SHORT len)
{
	AFX_MANAGE_STATE(AfxGetStaticModuleState());

	
	for(int i=1;i<len;i++)
	{
		aa[i]=i;
	}
  return S_OK;
}


when call this function in a C# windows application this work correctly and array values returned to truth

C#
byte[] Packet = new byte[5];

	dllServer.sum22(ref Packet[0],5);

       //out put
         1,2,3,4,5



but

the same function in a webservice returned to only first index array and exist very big problem

C#
 byte[] Packet = new byte[5];
dllServer.sum22(ref Packet[0],5);

   //out put
     1,0,0,0,0



help me pleaseeeeeeeeeeeeeeeeeeeeeeeeeeeee

thanx
Posted
Comments
KarstenK 30-Apr-13 4:07am    
why arent you using an int[] for the transfer.

My tip is, that the byte of the webservice is some wrapper class which behaves strange...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900