Socket Programming - Serve All Network Protocols

Jan 13, 2014

I am new to java. I want to create a socket that can serve all the network protocols. Can we make such type of socket in java.

View Replies


ADVERTISEMENT

Where To Use Accept Routine In Socket Programming

Sep 2, 2014

i was reading my book when in a code,it used accept(),but it did'nt talk about it.would you explain to me where to use accept().(the chapter was about socket programming)

View Replies View Related

File Transfer In Java Using Socket Programming

Apr 7, 2014

I have written a java code to transfer files from one server to another using the concept of socket programming. I got the codes from another java forum that meet my requirements. The program is said to transfer large sized files (like .mkv , .mprg movies) from one machine to another and can be used to transfer files of all formats. But after running the codes I found that the program is not able to transfer large sized files such as movies and even pdf of sizes 80mb or 111mb. When i transfer small sized files, it gets transferred and the output shows that. You can run the codes and observe it. But when i try to transfer large sized files, the program goes on running for hours. The large sized files are not getting transferred. The program has used bytebuffer but still this error occurs. The codes are as follows (I got them from this site [URL] ....)

**ClientMain.java**

import java.io.IOException;
import java.net.Socket;
public class ClientMain
{
private DirectoryTxr transmitter = null;
Socket clientSocket = null;

[Code] .....

1. ClientMain.java and DirectoryTxr.java are the two classes under client application.
2. ServerMain.java and DirectoryRcr.java are the two classes under Server application.
3. run the ClientMain.java and ServerMain.java simultaneously

Also specify the source directory, destination directory and host address of the machine in which server is running in the ClientMain.java (as per your computer). Here we are not specifying source file, instead a source directory or folder is specifying. So the entire files of source directory will be transferred.

View Replies View Related

File Transfer In Java Using Socket Programming

Apr 8, 2014

I have written a java code to transfer files from one server to another using the concept of socket programming. I got the codes from another java forum that meet my requirements. The program is said to transfer large sized files (like .mkv , .mprg movies) from one machine to another and can be used to transfer files of all formats. But after running the codes I found that the program is not able to transfer large sized files such as movies and even pdf of sizes 80mb or 111mb. When i transfer small sized files, it gets transferred and the output shows that. You can run the codes and observe it. But when i try to transfer large sized files, the program goes on running for hours. The large sized files are not getting transferred. The program has used bytebuffer but still this error occurs. The codes are as follows (I got them from this site [URL] ....)

**ClientMain.java**

import java.io.IOException;
import java.net.Socket;
public class ClientMain
{
private DirectoryTxr transmitter = null;
Socket clientSocket = null;

[Code] ....

Note that:-

1. ClientMain.java and DirectoryTxr.java are the two classes under client application.
2. ServerMain.java and DirectoryRcr.java are the two classes under Server application.
3. run the ClientMain.java and ServerMain.java simultaneously

Also specify the source directory, destination directory and host address of the machine in which server is running in the ClientMain.java(as per your computer). Here we are not specifying source file ,instead a source directory or folder is specifying.So the entire files of source directory will be transferred.

View Replies View Related

JSF :: AJAX Integration - Unable To Find Or Serve Resource

Jan 21, 2015

While usiing JSF f:ajax tag, I am getting the following error for not being able to load jsf.js file.

Looking for resolving this error?

JSF1064: Unable to find or serve resource, jsf.js.xhtml

View Replies View Related

Network Communication Using Sockets?

Dec 6, 2014

I have all of my code written, but it is not producing any output and i'm not sure why.

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.File;

[code]...

View Replies View Related

Streaming Music Over Network

Apr 16, 2015

I want to make a service like Spotify, where I can stream music that I have stored on my computer (in this case server) to my laptop or phone.

* What would be a suitable format for this?
* How would I actually stream it? I want to stream, not download and then play, I want to play the music while downloading.

View Replies View Related

Bullets Not Firing Across Network Screen

Apr 10, 2014

I have a program thats ran over a network and is multi-player. However whenever I fire any bullets they do not fire on the other clients screen. Here's the code

import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import javax.swing.*;
import java.util.*;
public class TankWar {

[Code] ....

View Replies View Related

Sockets Can Be Used To Transfers File Over Network

May 7, 2014

This question has confused me because "Errors" are capitalized and I'm not sure what they mean.

To me this question is false. Sockets can be used to transfers file over a network.

I can't see why this wouldn't work. The code looks fine to me.

I don't think this is true unless you're using the mouseEntered() or mouseExited() method. But again, I'm not sure.

I think this is true, I don't know what else could have listeners.

They're only worth a few marks each so the answer is only suppose to be a line or two. They are all true or false questions that require an explanation.

View Replies View Related

Swing/AWT/SWT :: Not Able To See Network Activity In JFrame

Jun 1, 2014

I am trying to develop an application which will be showing a TimeSeries graph(related library JFreeChart) displaying network activity related to a particular network interface embedded in a JFrame.I have created a JPopUpMenu which is having containing a list of JMenuItems showing network interfaces as their String values.Menu is popping up correctly

Further I am selecting a JMenuItem related to a particular network interface to show network activity in TimeSeries graph.On selecting a JMenuItem I can see that graph is moving on constantly but not able to see any network activity.

Pasted the code below :

package com.ankit.analyser;
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.EventQueue;
import java.awt.FlowLayout;
import java.awt.Window;
import javax.swing.JFrame;

[Code] .....

Further I can see that packetArrived method of PacketListener is not being overridden by class PacketHandler as I am not able to see data packets on console and static list in main class is also empty.

View Replies View Related

Servlets :: Send Data Over Network Using Httpsession?

Jan 9, 2015

I am learning few concepts in servlets. And i came across this doubt. We used to send data over network using httpsession as below.

HttpSession session = request.getSession();
Object obj = new Object();
session.setAttribute("object", obj);

And get the data in JSP with below code

<%= session.getAttribute("object")%>

However I am not sure whether HTTPSession is serializable or not.

How HTTPSession works?

View Replies View Related

Sorting Without Using Disk - Network Or Virtual Memory

May 31, 2014

Suppose you are given a computer with 1GB RAM. The disk of this computer holds a 10GB file containing random numbers. Propose a technique for sorting the file without using the disk or network or virtual memory. Outline your approach, propose an algorithm, and implement the algorithm. What is the algorithmic complexity of your algorithm.

View Replies View Related

How To Receive Some Data From Multiple Clients On Network

Apr 16, 2014

I got my first project in which i need to receive some data from multiple client on network regularly(say every second) and then process that data and stored it to the database and then GUI needs to be created which display data accordingly.

While thinking for the design i thought blocking queue to implement the same. Like producer receive data from the port into a string builder and put that into the LinkedBlockingQueue. Consumer will take this data , process some work on it and store it into the database.I am using sybase ase 15 as a database.

My question is as i am receiving data very frequently which require insertion , updation and search almost every second into the database. What is the best way to improve the performance.

say i have 2 types of data is coming one having keyword 'Alarm' and other having 'ceased' so i need to use something like this

common fields in both is name and number.

if (ceased)
search into the database for particular event for which this ceased receive using name and numbe rand update the another field into it Also make separate entry for it
else
make a entry

Also as i am using 2-3 thread for consumers and thread = Number of client for the producer. So i thought to use synchronization at the consumer side which writes data into the database such that only 1 thread can write it.

View Replies View Related

Java Network Simulator - Specifying Jar Class Path

Sep 4, 2014

I have downloaded jns-1.7 & tried to run an example program "Simulator.java" by specifing the jar classpath while compiling as "javac -cp <path-to-jns-jar-file> Simulator.java". But i got 21 errors as follows:

Simulator.java:3: error: package jns.command does not exist
import jns.command.Command;
^
Simulator.java:4: error: package jns.element does not exist
import jns.element.Element;

[Code] ...

21 errors

I am trying my hand on JNS as i need to deveop a key-distribution scheme (random Key-Distribution scheme) using a simulator. As i have experience in java, i thought to use JNS instead of NS2/NS3 which seems very complex to me.

View Replies View Related

Java - Connection With Time Attendance Machine In Network

Apr 15, 2015

I'm working in project, my theme is to develop an application management system for fingerprint and RFID card attendance machine in java programming language.

My problem i didn't find documentation in java for connecting with this device.

View Replies View Related

Bullets Are Not Showing Up Across Network Client Screen In Game

Apr 11, 2014

Tank war game thats ran over a network and is multiplayer, however whenever I fire a bullet it shows on my screen but not the other player's screen. Here's the code:

import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import javax.swing.*;
import java.util.*;
import java.net.*;
import java.io.*;
 
[Code] ....

View Replies View Related

Phone Network - Program Compile But Has Several Runtime Errors

Apr 4, 2014

The first 4 class below are the main classes while the last class is the testing class. I got it all to compile but for whatever reason there are several runtime errors. I have spent hours trying to figure out what they are, but I was only able to eliminate a few.

import java.util.*;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Set;
import java.lang.*;

public class PhoneNetwork {

[Code] .....

View Replies View Related

Bullets Are Not Showing Up Across Network Client Screen In Game

Apr 13, 2014

Tank war game thats ran over a network and is multiplayer, however whenever I fire a bullet it shows on my screen but not the other player's screen. Here's a snippet of code form where i think the problem is coming from:

class Tank implements Ball {
double locX, locY, radius, angle;
int self; // index of this tank in WarPanel.tanks
public boolean turnL, turnR, forth, back, fire;
boolean prevtL, prevtR, prevfo;
Color color;

[Code] ....

View Replies View Related

Swing/AWT/SWT :: Program That Record And Rerun Network Traffic

Sep 21, 2014

I have a program that records and reruns network traffic. It was developed in C and runs in my case under Windows 7 Professional but will run almost anywhere. I have observed a lack of stability.

First I have a JAVA stand alone GUI program that runs the program as follows:

g11_bttn_start_script_capture.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {

URI uri = null;
URL url = null;
String tempstr = "";
tempstr = "-s " + g11_txt_PATH_portnumber.getText() + " " + g11_txt_scriptname.getText() + ".both";

[Code] ....

Basically it launches the executable t3drive, hangs arounf so it gets a chance to start, and then connect to it via the embedded browser.

It frequently works, sometimes launches in the browser but then freezes, and sometimes fails to start at all.

t3drive works 100% of the time if I run it under cygwin and I can reliably connect to it using any browser.

Why this might not be stable? Just looking for a direction of what to try next.

View Replies View Related

JDBC :: IO Error - Network Adapter Could Not Establish Connection

Jan 24, 2015

Yesterday, I established a connection with oracle 12c, codes is here:
 
ods.setURL("jdbc:oracle:thin:c##mytest/myt@//myhost:1521/orcl");Connection conn=ods.getConnection(); 
where "c##mytest/myt" is username and password. It worked well.

But, today, "IO Error:The Network Adapter could not establish the connection" appeared when I tried to run my program again.

I changed //myhost into 127.0.0.1, it worked again.(Before I did this, I checked lsnrctl and regedit and firewall....., no difference)

Here is my question:

1) What happens between //myhost to 127.0.0.1, hostname cannot be use to JDBC? If yes, how?
 
Besides, I have some other questions:
 
2) How import a *.dmp file which exported from 10g into 12c?
 
3)If I need upgrade 10g to 12c, what shall I do?

View Replies View Related

Unable To Register Network Mounted Drive Path

May 17, 2013

I ma trying to implement Java "watchService". I am unable to register network mounted drive path. Is there any solution for this.

Path ftpFolder = Paths.get("H:/Ftp/Incoming/");

where H is mounted Drive.

View Replies View Related

How To Cut IDE Out Of Programming

Nov 17, 2014

I'm just trying to learn how to cut the IDE out of my programming.I've added C:Program FilesJavajdk1.7.0_55in to the environment variables (path), am navigating to the src folder where my java class exists in cmd prompt, and then typing "javac CaesarCipher.java", but its complaining that it can't find the file.

Is the problem something to do with the relative address of the compiler to the file it needs to run? Just a stab in the dark on my part. Or do I have to add the JRE path as well as the compiler?

View Replies View Related

How To Find Type Of Network Connection (wired Or Wireless) In Java

Jan 19, 2015

I want lo list all the devices connected to my network, I done like this

InetAddress i = InetAddress.getLocalHost();
byte[] ip1 = i.getAddress();
InetAddress address = InetAddress.getByAddress(ip1);
for (int b = 0; b <255;b++) {
ip1[3] = (byte)b;

[Code] ....

It prints all the connected devices, its k.. my doubt is, how to list the wired connections and wireless connections from them...

View Replies View Related

Swing GUI Programming

Jan 6, 2014

I find myself asking these two questions because I see them as relating. First question is; I always write

Java Code: f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); mh_sh_highlight_all('java');
(where f is a JFrame object)

to set the close for the JFrame. What I don't get about this is what is going on in the parenthesis. I looked in the Java Documentation, and it says an int goes inside. In that case, I don't really get what the word JFrame is doing there. Overall, please explain what is inside the parenthesis of that line and why it has to be there.The second question is a generic question. I notice a lot of times an object will be created, and as its parameter, you will have to instantiate an object. an example would be

Java Code: Class f = new Class(new Object) mh_sh_highlight_all('java');

What does it mean when an object gets created inside of a new object? Why is putting Java Code: new Object mh_sh_highlight_all('java');
ever necessary when concerning the two parenthesis?

View Replies View Related

Networking :: Unable To Connect Remote Machine - Network Path Was Not Found

Jan 30, 2014

I am trying to connect a remote machine but I can't. There is a shared folder in the remote machine, when I write the path to file browser in local machine, it does not find the path specified. Both machines have successful network condition and ping each other. Also, the shared folder is opened to everyone, there should not be a permission problem, right?

View Replies View Related

JSP :: Using Socket For Chatting?

Feb 13, 2014

I'm developing a web-based chatting system using JSP and socket.

The problem i am facing is that the sender can send message but on the receiver side we have to manually refresh the page. The sender stays into blocking mode until the receiver refresh its page !

after that i've implemented auto-refresh on the receiver side and "Connection Refused" exception is generated.

View Replies View Related







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