How To Restrict Certain Website From Proxy Server

Mar 16, 2015

I have this code, how would i use it to restrict certain websites to be accessed.

SimpleProxyServer.java

Java Code:

import java.io.*;
import java.net.*;
public class SimpleProxyServer {
public static void main(String[] args) throws IOException {
try {
String host = "your Proxy Server";
int remoteport = 100;
int localport = 111;

[Code] ....

View Replies


ADVERTISEMENT

How To Restrict A Certain Website From Proxy Server

Mar 16, 2015

how would i use it to restrict certain websites to be accessed.

SimpleProxyServer.java
import java.io.*;
import java.net.*;
public class SimpleProxyServer {
public static void main(String[] args) throws IOException {
try {
String host = "your Proxy Server";

[code]....

View Replies View Related

JavaFX 2.0 :: Restrict TextArea To Allow Only IP Addresses With FXML

Jun 24, 2015

I have a TextArea that I am trying to restrict user inputs to allow only IP addresses format in that Area. So I thought of only allowing digits and decimal points. For multiple IPs, One IP per line, the TextArea needs to accept new lines. For the most part what I have below is working except for delete. I can't delete any entry even if I am using the associate Unicode.  Is this even the correct way of doing it?

public class RestrictIpInputTextArea extends TextArea {   
    @Override
   public void replaceText(int i, int il, String string){
       if(string.matches("[0-9_u000A_u232B_u0008_u2421_._u007F_u005F]") || string.isEmpty()){
          super.replaceText(il, il, string);

[Code] .....
 
In my FXML File I calling it as <RestrictIpInputTextArea ......

View Replies View Related

Number Combinations - Restrict Outputs To Suits Of 3 Numbers

Jul 29, 2014

I want to be able to

(A) Restrict the number of output values per line to 3 numbers,
(B) Remove Duplicate lines, where the same numbers are duplicated just outputted in a different order.
(C) Count the number of outlines
(D) Add a fixed column to the outputs that has an ascending count from 1 upwards

I'm trying to achieve. The code is as follows:

package num.com.t1;
import java.util.*;
import java.util.concurrent.atomic.AtomicInteger;
/**
*
*
*/
public class NumComT1 {
public static void main(String... args) {

[Code] ....

View Replies View Related

Servlets :: Restrict User To Login From One System At A Time

Apr 23, 2014

In My application I want to implement functionality to let user login from only one system at a time. I am searching for something that can Identify the system uniquely (Like IP address or Mac address ). I am using servlet and I don't know how to access Mac in servelt

View Replies View Related

Proxy Set In Java

Feb 19, 2014

I'm using proxy to crawl some data. So, for now I've this snippet,

public static void IPchange() {
String proxy = 121.11.23.21;
String port = 8080;
Properties systemProperties = System.getProperties();
systemProperties.put("proxySet", "true");
systemProperties.setProperty("http.proxyHost", proxy);
systemProperties.setProperty("http.proxyPort", port);
}

Now, I've a thread say T which is calls this IPchange() method to use proxy. Now, Thread T creates other threads say T1, T2. When I give URL to crawl for this T1 and T2. T1 and T2 will not call IPchange() method. To crawl URL, T1 and T2 now using my Original IP?

View Replies View Related

Proxy Authentication To Connect To Internet

Apr 25, 2014

For my job I would to develop a Java application which downloads some data from a webpage and then process them.

The problem is that I have to authenticate to a proxy server to connect to the internet. As I browsed on the net, there is a possible way for implementation.
 
Authenticator.setDefault(new Authenticator() {
    @Override
    protected PasswordAuthentication getPasswordAuthentication() {
        return new PasswordAuthentication(username, password);

[Code] .....
 
Sometimes it works fine, but usually I get the following exception:
 
java.io.IOException: Unable to tunnel through proxy. Proxy returns "HTTP/1.1 407 Proxy Authentication Required"
    at sun.net.www.protocol.http.HttpURLConnection.doTunneling(HttpURLConnection.java:2083)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:183)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1511)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1439)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)
 
I don't understand what's the problem and why it's not persistent.

View Replies View Related

Java Servlet :: Reverse Proxy For Web Application

May 24, 2013

The users of our a enterprise Java based web application must access a third web application through simple HTML links and then navigate in the target application. But for security reasons and constraints the direct exchange between the browers of users and server of the other web application is not allowed. Our web application must retrieve the web page from the other application and must return it to the users's browser. Is there a convenient way to implement this requirement in J2EE ? In this case our web application must play the role of a simple reverse proxy, must request a target JSP page from other application and process it to rewrite the URLs contained in the HTML page, then send the response to user's web browser.

View Replies View Related

HTTPs Request Authentication Failing Even After Setting Proxy

Jul 11, 2014

i am trying to access an https request on a server and authenticating it after passing on username and passwork. I have even set up the proxy of the employer to get the request back as a zipped folder.

I always get an error on: " InputStream reader = con.getInputStream();"

Can be a proxy setting issue too but I am not sure why it should be.

Is there a way to create a secure channel in java to connect to https or by any way the below code could be modified to connect it to the server?

Code is as below:

import java.net.*;
import java.net.Proxy.Type;
import java.io.*;
import javax.net.ssl.HttpsURLConnection;
import com.sun.org.apache.xerces.internal.impl.dv.util.Ba se64;
public class DownloadFile
{

[Code]...

View Replies View Related

JRE :: Java Applications Certificate Check With Password Protected Proxy

Jul 29, 2014

I have a problem with several java applications. When I start them Java wants to connect to the certificate authority, to check if the certificate is still valid and not on a blacklist.

The problem is: my whole internet is behind a password protected proxy. If I open my browser i get a windows with username and password. I enter it and internet in the browser works. But for Java it isn't working, because I see no point, where I can enter the password and username for the proxy. I can enter the proxy ip and port in the java settings, but not the password and username. So I get a error screen from java, telling me, that java could not connect. I can disable the check in the java settings, but I don't wont that.
 
Is there a way to tell java, that java uses my proxy with my password and username? I already googled this problem and found nothing except tutorials for connecting with proxy in the java code. But these applications are not from me, I can't change the code ...

View Replies View Related

JSF :: XHTML On One Server Can Talk To Managed-bean On Other Server (different Machine)?

Jul 27, 2014

I am developing a web application using JSF-2.0 on weblogic 10.3.6. I am using Facelets as VDL. I have 5 different machine. They are different according to their OS and their geographical location. On my first xhtml page server (machine) is decided. Then on next page file upload and rest of processing takes place. My restriction is that SSO configuration can be done on only one machine.

So I am restricted to using xhtml files from only my primary server where SSO configuration is done. But I have to connect to servlets or managed-bean of different machine as requests are machine specific and file needs to be uploaded to those machines for processing. So I cannot use redirectUrl as I need to be only on one machine. Is it possible that xhtml on one server can talk to managed-bean on other server(different machine)?.

View Replies View Related

Servlets :: How To Create A Room That Should Be Like Static On The Server Until Server Is Down

Apr 1, 2014

I am working on a chess game. I need to construct a game room where all the player are present and room chat is up. Also some tables where games are being played. Now my question is how to create this game room?

To me this room must need to be like static or global (if I am not mistaken) that is up when server starts and players can join this room and should be down when server is done. How can I implement such room that would stay up for infinite time.

View Replies View Related

Connect A UDP Web Server To Compression Server

Apr 19, 2015

Working on a project and am in need of some quick guidance to wrap things up. I have a functioning compression server that will create two files after the user gives it some input and a "magic string" to know when to stop reading input for that specific file.

I now need to connect a UDP web server to that compression server. the web server will read from the HTTP POST Request the data that was uploaded and send it to the compression server to create the two files... i have included both programs below

Web Server:

import java.io.*;
import java.net.*;
import java.util.*;
final class HttpRequest implements Runnable {
//Declare Constants and Variables
final static int BUF_SIZE = 1024000;
final static String CRLF = "
";

[Code]...

Compression Server:

import java.net.*; // for DatagramSocket, DatagramPacket, and InetAddress
import java.io.*; // for IOException
import java.util.zip.*;// for Zip
public class CompressionServer {
private static final int ECHOMAX = 65535; // Maximum size of echo datagram
private static final int BUFFER = 2048; // Buffer size for writing to Zip File

[Code]....

View Replies View Related

Servlets :: How To Map Website URL

Nov 25, 2014

I have my mapping as below

<servlet>
<servlet-name>main</servlet-name>
<servlet-class>co.edureka.controllers.MainController</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>main</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

So that I can map the first request coming say www.xyz.net to my first page , it does the work but some of my css and images is not getting displayed .

So I did as below

<servlet>
<servlet-name>main</servlet-name>
<servlet-class>co.edureka.controllers.MainController</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>main</servlet-name>
<url-pattern>/first</url-pattern>
</servlet-mapping>

By doing this my css and images get displayed and everything works fine.

But the problem is I want to display my first page as user puts the url.

I am putting my jsp pages in WEB-INF/jsps , I am not putting it directly under WEB-CONTENT directory.

View Replies View Related

Add A Website Into One Of JFrame?

Feb 3, 2014

im working on a program, but i have question and its. How can i add a website into one of my "JFrame" i have made?

exampel i want to add google.com website into the fram called V2.

HERE IS MY CODE:

Java Code: package mittprogram;
import java.awt.Color;
import java.awt.Font;

[Code].....

View Replies View Related

JSP :: How To Have Unchanged URL In Website

Jul 28, 2014

Am currently developing a website in JSP. For security reasons I need to have an unchanged URL throughout my website. Is there any way to achieve it?

View Replies View Related

Java Application For PHP Website

Dec 29, 2014

I have a blog hosting service (like Wordpress) written in PHP and MySQL, I'm gonna make Java Application for it (Runs on Windows, Linux and ...).

My Questions:

1. Can I use Connector/J to connect to my website database (MySQL)?

2. Which one is better? 1.Connect to website database, 2.Use Socket programming.

View Replies View Related

How To Read Content From A Website To App

Nov 27, 2014

I am working on a little project to create an App that can read contents from a website and return it back to my app. What protocol to use for that. Just the reading/retrieving content from a website.

View Replies View Related

Logon To Website Using Java?

Feb 10, 2015

Is it possible to use java to log on to a website? I mean,Ii know how to connect to a website and send commands, but I am not sure how to tell the server that i want to login?

And then after you logged in is it possible to then do something? like, if you logged in to gmail.com you would be able to see your emails?

View Replies View Related

App Works Locally But Not From Website

Feb 9, 2014

I have a Java application that was built by a third party and my task is to embed this in a web site. To do so I got an HTML snippet, a .JAR and da .DAT file that seems to be called by the app. I tested this locally on my machine and it works ok. After uploading to the web server I get an error message

NumberFormatException For input string: "i>>?<html>"(the question mark is actually upside down, the >> is really one character)

At first sight this looks like a common issue with UTF-8 file being delivered when the file itself holds only ANSI characters (or vice versa). So I made sure that the .HTM and the .DAT file are indeed stored in ANSI 8-bit (and not Unicode 16-bit) format. However, this does not solve the issue. The .HTM file itself also holds a ISO 8859-1 directive. The server is set to deliver UTF-8 by default. I cannot change this due to a huge lot of other dependencies.

So I am not sure if my suspicion is right - is it indeed a character set issue? Or is it something else?

The test file is on [URL] ....

View Replies View Related

JSP :: How To Determine Username (Website Visitor)

Jul 17, 2014

Is there a way to tell the login name of a visitor to a website?

View Replies View Related

Applets :: Signing Jar Files For A Website?

Jul 17, 2014

I am currently trying to update a few java applets for a website. As of right now, the applets are automatically blocked on all computers when they are accessed because the newest updates for Java have caused them to be blocked. I have determined that the solution to this is to resign the .jar files that are used to run the application with a new certificate.

I requested and received a certificate (in pkcs 12 format, a .p12 file), imported it into the computer, and used it to sign the .jar files. However, I have been getting an error after signing the .jar files stating that the full certificate chain of the code signing certificate is not valid.

I tried to check the path of the certificate using a method he recommended (using OpenSSL) but didn't really find anything of use.

View Replies View Related

Viewing Website File Tree

Apr 25, 2014

This is probably more of a web-based question. I have a basic web crawler I wrote with Java (using JSoup) which crawls through our repositories and stuff to locate the paths to certain snapshots and whatnot. It crawls through using the file tree which gets exposed when you try to go to a directory in a URL.

The problem I am having is that some of the directories contain index files, which means the connection to the directory redirects from the file tree to the index file. Any way to prevent that redirection?

View Replies View Related

Website Send Commands Application

May 8, 2014

I have a Java application this application sits on a Dedicated server and gets information about the machine and run commands on the machine.

I need it so that i can run these commands from pressing buttons on a website. For example i press a button to retrieve CPU info, it goes to the app, and the app sends the CPU info back.

I'm fine with the website and app its just the middle bit. How do i get the app to run commands sent from a webpage. Been ratting my brains for a couple weeks now.

View Replies View Related

Code To Download A File From A Website

Dec 3, 2014

I currently have the following code that I use to download a file from a website:

URL website = new URL(imgurl);
ReadableByteChannel rbc = Channels.newChannel(website.openStream());
FileOutputStream fos = new FileOutputStream(dir+""+imageNumber + "." + extension);
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
fos.close();

Usually, the code works very well. But sometimes, the download gets stalled indefinitely. Is there a way to set a time out period for the downloading of this file?

View Replies View Related

Website Interaction Using HTML UNIT

Apr 23, 2015

I am having a difficult time trying to get results from the code below. The purpose is for my program to insert the DHL tracking number in the tracking text box, and then for the program to "click" the search button and get the tracking results.

This is the code:

import com.gargoylesoftware.htmlunit.WebClient;
import java.io.*;
import com.gargoylesoftware.htmlunit.html.HtmlPage;
import com.gargoylesoftware.htmlunit.html.HtmlInput;
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
import java.net.*;
public class DHL {

[Code]...

These are the results I am getting in the console (in red), which look like an error:

Apr 23, 2015 7:55:49 PM com.gargoylesoftware.htmlunit.javascript.host.html.HTMLElement addbehavior
WARNING: Unimplemented behavior: #default#userdata
Exception in thread "main" com.gargoylesoftware.htmlunit.ElementNotFoundException: elementName=[*] attributeName=[name] attributeValue=[sbtc]
at com.gargoylesoftware.htmlunit.html.HtmlPage.getElementByName(HtmlPage.java:1747)
at htmlTest.main(htmlTest.java:17)

I just cannot figure it out for the life of me. Also, is there a community that focuses on HTML Unit?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved