Click here to Skip to main content
15,890,185 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
MSIL
I am getting this message when the device want send data with gprs to a web service on server:

I create a web service and call this web service in my program, and some time getting this message

and stack tracer :

at System.Net.HttpWebRequest.finishGetResponse()

at System.Net.HttpWebRequest.GetResponse()

at System.Web.Services.Protocols.WebClientProtocol.GetWebResponse()

at System.Web.Services.Protocols.HttpWebClientProtocol.GetWebResponse()

at System.Web.Services.Protocols.SoapHttpClientProtocol.doInvoke()

at PdaVision.GprsWS.Service1.GetPosition()

at PdaVision.GPSV.UpdateTimer_Tick()

at System.Windows.Forms.Timer._WnProc()

at System.Windows.Forms.ApplicationThreadContext._InternalContextMessages()

at Microsoft.AGL.Forms.EVL.EnterMainLoop()

at System.Windows.Forms.Application.Run()

at PdaVision.Program.Main()

What can i do for this?



Thanks
Posted

1 solution

You are missing what is called a resource assembly (or a satellite dll). Make sure you have deployed all the files required for executing your app.
 
Share this answer
 
Comments
Hossein Khalaj 18-Jul-11 15:40pm    
How??
[no name] 18-Jul-11 15:46pm    
Well, this is what I could infer from the error message. You are probably using some third-party library which supports multiple languages (I mean human languages) and stores each language in a separate resource assembly. For some reason, the component throws an exception and the code is trying to load the resource assembly for the selected language which contains the error message. The code does not find the resource assembly for the selected language and throws this exception.

Now it is you who has to find what is missing. I just gave you a heads up.
Hossein Khalaj 18-Jul-11 15:55pm    
Ok.
But some time does work very well, and some time doesn`t work!!!
why?
[no name] 18-Jul-11 15:56pm    
Could it be file permissions?
Hossein Khalaj 18-Jul-11 23:53pm    
Which permissions?

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