• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

sending email from MIDP devices

 
Ranch Hand
Posts: 99
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,

I am planning to do "sending email from MIDP devices using SMTP " project for MIDP enabled devoces (i am writing for mobile phone )..Since i am not having industrial experiance.... i am not getting how to test this application in my computer....I hope we need server(Like yahoo or gmail ) which will store email..how and where can i get email server which uses SMTP protocol for message transmitiom....
I hope we can test application without going for real server....i dont know how.
If anybody knows how to run or having any links for this material then please assit me......
[ May 10, 2006: Message edited by: harish thrivile ]
 
Ranch Hand
Posts: 231
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can work with javax.microedition.io.SocketConnection for socket connections, then deliver SMTP over it.
 
Ranch Hand
Posts: 160
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can run a local SMTP server. If you are using linux its as simple as starting sendmail. On windows, look into window SFU at http://www.microsoft.com/technet/interopmigration/unix/sfu/default.mspx.

I have a linux server on my network that it used for testing applications which need email.

There are plenty of options. You can talk directly to the SMTP server that handles you mail as long as the mail is addressed to you email address (or any and other mailbox that is handled by the server).

Spam controls may be a problem. Some servers require reverse DNS listings and/or IP blacklists.
[ May 15, 2006: Message edited by: Rashid Mayes ]
reply
    Bookmark Topic Watch Topic
  • New Topic