Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 8 of 8

Thread: Web protection in java platform?

  1. #1
    Junior Member
    Join Date
    May 2008
    Posts
    10
    Thanks
    0
    Thanked 1 Time in 1 Post

    Smile Web protection in java platform?

    Hi every one,

    I need to know the web protection in java platform?
    In java , which concepts i am going to use?
    please send me , guideline to develop web protect software?

    For example, I if want to open google.com,i need password to access the google.com website.


    thanks and regards,
    sundar


  2. #2
    mmm.. coffee JavaPF's Avatar
    Join Date
    May 2008
    Location
    United Kingdom
    Posts
    3,336
    My Mood
    Mellow
    Thanks
    258
    Thanked 294 Times in 227 Posts
    Blog Entries
    4

    Default

    So are you basically looking for a way to password protect a page/website?

  3. #3
    Junior Member
    Join Date
    May 2008
    Posts
    10
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default Re: Web protection in java

    thank u.
    yes , but it is like (blue coat w9 web protection admin software)

    I want create simple internet filter tool (like blue coat k9 web protection admin software).
    i dont know , how to create internet filter tool in java?
    i need some guideline to develop internet tool in java platform.

    please help me.

    regards,
    sundar

  4. #4
    Banned
    Join Date
    May 2008
    Posts
    25
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default Re: Web protection in java

    Quote Originally Posted by sundarjothi View Post
    thank u.
    yes , but it is like (blue coat w9 web protection admin software)

    I want create simple internet filter tool (like blue coat k9 web protection admin software).
    i dont know , how to create internet filter tool in java?
    i need some guideline to develop internet tool in java platform.

    please help me.

    regards,
    sundar
    I have no idea what you mean by a "internet filter tool" but to protect pages you can use j security checks or the jaas/ssl implementation.

  5. #5
    Senior Member
    Join Date
    May 2008
    Posts
    19
    Thanks
    0
    Thanked 9 Times in 4 Posts

    Default Re: Web protection in java

    I have no idea what you mean by a "internet filter tool" but to protect pages you can use j security checks or the jaas/ssl implementation.
    K9 is software which protects children on the internet.. It basically filters out adult content and other stuff on websites that parents see as bad material.

    I think he is trying to do the same thing...

    I have no idea how to go about doing it though. Maybe he could write his own web browser and then scan each page for certain keywords before the page is loaded? If the keywords are found, the page could fail.

  6. #6
    Banned
    Join Date
    May 2008
    Posts
    25
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default Re: Web protection in java

    Quote Originally Posted by Flash View Post
    K9 is software which protects children on the internet.. It basically filters out adult content and other stuff on websites that parents see as bad material.

    I think he is trying to do the same thing...

    I have no idea how to go about doing it though. Maybe he could write his own web browser and then scan each page for certain keywords before the page is loaded? If the keywords are found, the page could fail.
    One way to do this is indeed to write your own web browser or a plugin for an existing web browser although I don't think Java is a good language to do this.

    Another option is to download an online page entirely and scan for certain keywords before viewing it. After the page is accepted load it in a Firefox or IE etc instance although the problem that may arise is that the user can continue in the FF/IE browser and the application won't be able to scan the pages within these web browsers. Again, java isn't a good language for this.

  7. #7
    mmm.. coffee JavaPF's Avatar
    Join Date
    May 2008
    Location
    United Kingdom
    Posts
    3,336
    My Mood
    Mellow
    Thanks
    258
    Thanked 294 Times in 227 Posts
    Blog Entries
    4

    Default Re: Web protection in java

    If you did want to create a web browser to do this then this link is worth a look:

    Basic Web Browser Example*-*Java Gui Builder
    Please use [highlight=Java] code [/highlight] tags when posting your code.
    Forum Tip: Add to peoples reputation by clicking the button on their useful posts.

  8. #8
    Junior Member
    Join Date
    May 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Web protection in java

    Quote Originally Posted by sundarjothi View Post
    Hi every one,

    I need to know the web protection in java platform?
    In java , which concepts i am going to use?
    please send me , guideline to develop web protect software?

    For example, I if want to open google.com,i need password to access the google.com website.


    thanks and regards,
    sundar
    First start with basic java. :p