daniel schulken

Ranch Hand
+ Follow
since Sep 23, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by daniel schulken

Ive tryed it in tomcat 5.0.16 which seems to work on win2k systems, but i was unable to get it to work correctly on a linux slackware 9.X system. Current the clustering seems to be under development and in most situations will work.
The primary developer is doing his best to get some issues worked out with it and is very open and responsive to changes.
Shouldnt this thread be in the tomcat group?
20 years ago
I seem to be having a problem with having tomcat serve jsp's from a central file server that tomcat can see but is not running on.
The error i am getting is
Document base g:\sites\thesportsregister does not exist or is not a readable directory
I have netused the directory and the permisions are set so that any one can get to the files.
Is the issue due to the files being on another server?
Is it due to how microsoft win2k deals with the pathing?
Oh and yes the directory is there and i can view the files to.
20 years ago
is it posibable to virtual host multiple sites that point to differnt jsp and other assets but use the same code in one location? Or would the code have to be spread to all the other virtual host to?
20 years ago
That is what netscape mail goes thru.
err settings in the netscape mail client.
20 years ago
Iam tryingto send e-mail from a java program directly thru netscapes smtp server andkeep getting error.Iseem to be stumped any ideas?
thanks
daniel schulken
String host = "smtp.netscape.net";
String from = "user@netscape.com";
String to = "user@comcast.net";
Properties props = System.getProperties();
props.put( "mail.smtp.host", host );
Session sessionmail = Session.getDefaultInstance( props, null );
sessionmail.setDebug( true );
Session session =
Session.getInstance(props, null);
// Store store = session.getStore("pop3");
// store.connect(host, "user@netscape.net", "user");

MimeMessage message = new MimeMessage(sessionmail);
//Transport tr = sessionmail.getTransport("smtp");
//tr.connect(host, "user@netscape.net", "user");
//message.saveChanges();// don't forget this
// Define message
message.setFrom(new InternetAddress(from));
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
message.setSubject("Locate a Vehicle");
message.setText("<Name> ef_Name" +
" " + "<Address> ef_Address" +
" " + "<City> ef_City" +
" " + "<State> ef_State" +
" " + "<Zip> ef_Zip" +
" " + "<Phone> ef_Phone" +
" " + "<Email> ef_Email" +
" " + "<Year> ef_Year" +
" " + "<Make> ef_Make" +
" " + "<Model> ef_Model" +
" " + "<Series> ef_Series" +
" " + "<Miles> dd_Miles" +
" " + "<Color Choice 1> ef_Color1" +
" " + "<Color Choice 2> ef_Color2" +
" " + "<Color Choice 3> ef_Color3");
// Send message
Transport.send(message);
//tr.send(message );
//tr.sendMessage(message , message.getAllRecipients());
//tr.close();
}
20 years ago
here is what i am trying to do.
%>
<jsp:forward page="<%=NavigationBean.getNextJsp("Next","/jsp/itemsetup/ItemCharacteristicsList.jsp",ItemMasterInstanceBean.currentItemMaster.getType_of_item().charAt(0))%>" />
<%
I am getting a Attribute Next has no value error message at compile.
any ideas?
thanks
20 years ago
JSP
I have some general questions for all jsp / servlet programmers. Has any one created a project using just jsp? If so, have you had to maintain a large project? How did that go?
I am only asking because a manager in the shop that I am working in thinks that may be the way to go for development speed.
21 years ago
Never mind, I was using a different port to listen to.
22 years ago
ok i get this output
Constructing server implementations...
Binding server implementations to registry...
Test Error :java.rmi.ConnectException: Connection refused to host: cc1083727-a; nested exception is:
java.net.ConnectException: Connection refused: no further information
java.rmi.ConnectException: Connection refused to host: cc1083727-a; nested exception is:
java.net.ConnectException: Connection refused: no further information
java.net.ConnectException: Connection refused: no further information
java.lang.Throwable(java.lang.String)
java.lang.Exception(java.lang.String)
java.io.IOException(java.lang.String)
java.net.SocketException(java.lang.String)
java.net.ConnectException(java.lang.String)
void java.net.PlainSocketImpl.socketConnect(java.net.InetAddress, int)
void java.net.PlainSocketImpl.doConnect(java.net.InetAddress, int)
void java.net.PlainSocketImpl.connectToAddress(java.net.InetAddress, int)
void java.net.PlainSocketImpl.connect(java.net.InetAddress, int)
java.net.Socket(java.net.InetAddress, int, java.net.InetAddress, int, boolean)
java.net.Socket(java.lang.String, int)
java.net.Socket sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(java.lang.String, int)
java.net.Socket sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(java.lang.String, int)
java.net.Socket sun.rmi.transport.tcp.TCPEndpoint.newSocket()
sun.rmi.transport.Connection sun.rmi.transport.tcp.TCPChannel.createConnection()
sun.rmi.transport.Connection sun.rmi.transport.tcp.TCPChannel.newConnection()
java.lang.Object sun.rmi.server.UnicastRef.invoke(java.rmi.Remote, java.lang.reflect.Method, java.lang.Object [], long)
void sun.rmi.registry.RegistryImpl_Stub.bind(java.lang.String, java.rmi.Remote)
void java.rmi.Naming.bind(java.lang.String, java.rmi.Remote)
void com.wareone.rmi.ProductServer.main(java.lang.String [])
when i run this code
/**
* Insert the method's description here.
* Creation date: (12/18/01 9:08:42 PM)
* @param args java.lang.String[]
*/
public static void main(String[] args) {
try {
System.out.println("Constructing server implementations...");
ProductImpl p1 = new ProductImpl("Blackwell toaster");
ProductImpl p2 = new ProductImpl("ZapXpress Microwave Oven");
System.out.println("Binding server implementations to registry...");
Naming.bind("toaster", p1);
Naming.bind("microwave", p2);
System.out.println("Waiting for invocations from clients...");
} catch (Exception e) {
System.out.println("Test Error :" + e);
e.printStackTrace();
}
i dont see what the problem is does any one else see a problem with this?
22 years ago
try a flow more like create use case diagrams -> create a conceptual model(class diagram with out the methods) -> create sequence Diagram-> create collaboration diagram->class diagram(with the methods!).
i had herd it was $50 dollars usa in india
not sure what that translate's into in india though.
do you have any suggestions for ooad hopefulls?
as in what to study book wise?
well you cant go wrong with uml distilled!
question 1
well design patterns are just patterns that software developers have come across time and agin
question 2
not quite sure what you mean.
question 3
well i belive there are 23 BASE patterns but lots of variations of the base patterns.
question 4
well i dont know exactly what booch modeling language was before he helped to create uml but i would guess that it takes parts from his modeling language and either extends or is taken directly?
is this correct guys/gals?
i thank you should have a different topic. perhaps design challange?
looks like a good list of requirements though.
i get working on this, this weekend.