Click here to Skip to main content
15,893,487 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello All

I have developed an application for mobile phones in JavaME using Netbeans 7.2.

it running well in imulators but when i tried to install in on Nokia or other mobiles it says FILE NOT SUPPORTED after installing it in phone.

The .jar application is installed directly through web as below

VB
Dim fileName As String = "MobileApp2.jar"
        Response.ContentType = "application/octet-stream"
        Response.AddHeader("Content-Disposition", "attachment;filename=" & fileName)
        Response.TransmitFile(Server.MapPath("~/Files/" & fileName))
        Response.[End]()



Please help, Why my file is not installing on phone?
Posted
Comments
TorstenH. 26-Dec-12 5:50am    
That's a quite specific thing. Please refer to the mobile's manufacturer and check there on how to install the application. You might need to follow specific rules, like having explaining XML-Files or anything like that with the app.

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