I am working on a mobile application in .NET. This is a windows mobile application. I am facing a problem in this application that I wanna upload an image/file to given url/server. Many upload classes is not using like Webclient,WebRequest,WebResponse. I used HttpWebReques, That is not connecting with server.
Can anyone help me on how to upload the images on given url in windows mobile 6 in .NET?
Not sure what you mean exactly with uploading images to a given URL. Surely you need some listener or something on your server to be able to receive the image data.
You could create a .NET web service, with a function that takes a byte[] input parameter to upload your image data, on your server and reference that in your Windows Mobile application.