• 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

PPPoE in java

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I�m new to java programming and my major is computer Network. I want to write a PPPoE client software with java for windows xp .I don�t know any about pppoe programming in java
Please inform me
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For that you'd be better of writing the PPPoE module natively in C (or any other native language) and linking it with your Java application via JNI.

http://en.wikipedia.org/wiki/Java_Native_Interface

Cheers
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It can't be in Java, since Java doesn't provide access to protocol layers this deep. The lowest layer Java can access is TCP/UDP, while PPP is way below that: http://en.wikipedia.org/wiki/Point-to-Point_Protocol_over_Ethernet
 
reply
    Bookmark Topic Watch Topic
  • New Topic