Resource Assembly Not Found?

  • Thread starter Thread starter Young Cho
  • Start date Start date
Y

Young Cho

Hi,

My users are reporting a "Resource Assemby Not Found" error. I suspect that it may be occurring within my "try" block for the HttpWebRequest use portion of the code where I try to do a HTTP POST. I do not see this error on the emulator attached to the debugger nor on my device. It seems to happen on both PPC 2002 and 2003 devices. Once this error occurs, it seems to persist (that is subsequent attempts to POSt result in the same error). Doing a soft reset and trying again helped on one of the devices, but not on the other. Does this error have to do with the order of CAB installations?

Thanks...
Young.
 
This message is thrown by a default exception handler (the one that handles unhandled exceptions) when device does not have System.SR.dll. This dll is not redistributable. It is installed during deploy from VStudio to help you when debugging the code. It is your responsibility to handle exceptions in your code and to provide meaningful messages.

For HTTP POST make sure that the device is configured to access internet addresses, i.e. that the same url you are using in your code can be opened from Pocket IE
Hi,

My users are reporting a "Resource Assemby Not Found" error. I suspect that it may be occurring within my "try" block for the HttpWebRequest use portion of the code where I try to do a HTTP POST. I do not see this error on the emulator attached to the debugger nor on my device. It seems to happen on both PPC 2002 and 2003 devices. Once this error occurs, it seems to persist (that is subsequent attempts to POSt result in the same error). Doing a soft reset and trying again helped on one of the devices, but not on the other. Does this error have to do with the order of CAB installations?

Thanks...
Young.
 
Back
Top