Tom Barns

Ranch Hand
+ Follow
since Oct 27, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Tom Barns

Where can i find the jar file to compile servlets with jboss-5.1.0.GA
which jar file do i need to set it up in classpath in order to compile a servlet.
Thanks
15 years ago
Congrats !!!
Can you please email me your notes to : [email protected]
Thanks.
Tom
17 years ago
Congrats !!!
Can you please email me your notes to : [email protected]
Thanks.
Tom
All,
book element in the folowing codes belongs to which namespace? to the default?to the one that haz prefix ab or has prefix cd?
<?xml version=�1.0�?>
<book xmlns:ab=�http://www.abc.com �
xmlns:cd=�http://www.Atlanta.com �
xmlns=�http://www.class.com � >
<cd:item>item one </cd:item>
<title>title one </title>
</ab:book>
Thanks all.
It is working fine.
Happy Thanksgiving for all.
23 years ago
JSP
Hi All
I have a very simple jsp in the default location which is :
$/weblogic/myserver/public_html/test.jsp
when i use the following url and execute it http://localhost:7001/test.jsp i found 'file download window'
asking where do i need to save my file,it is starnge behavior.
Also i have these setting for jsp properties in weblogic.properties:
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# WEBLOGIC JSP PROPERTIES
# ------------------------------------------------
# Sets up automatic page compilation for JSP. Adjust init args for
# directory locations and uncomment to use.
weblogic.httpd.register.DMS.jsp=\
# weblogic.servlet.JSPServlet
c:\inetpub\wwwroot
weblogic.httpd.initArgs.*.jsp=\
pageCheckSeconds=1,\
compileCommand=d:/jdk1.2.2/bin/javac.exe,\
workingDir=d:/weblogic/myserver/classfiles,\
verbose=true
23 years ago
Hi All
I have a very simple jsp in the default location which is :
$/weblogic/myserver/public_html/test.jsp
when i use the following url and execute it http://localhost:7001/test.jsp i found 'file download window'
asking where do i need to save my file,it is starnge behavior.
Also i have these setting for jsp properties in weblogic.properties:
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# WEBLOGIC JSP PROPERTIES
# ------------------------------------------------
# Sets up automatic page compilation for JSP. Adjust init args for
# directory locations and uncomment to use.
weblogic.httpd.register.DMS.jsp=\
# weblogic.servlet.JSPServlet
c:\inetpub\wwwroot
weblogic.httpd.initArgs.*.jsp=\
pageCheckSeconds=1,\
compileCommand=d:/jdk1.2.2/bin/javac.exe,\
workingDir=d:/weblogic/myserver/classfiles,\
verbose=true
23 years ago
JSP
Thanks for the help again.
i downloded the wrong stuff,i got it right this time.
thanks.
Thanks for the reply,i do appreciate it.
i downloaded j2sdkee1.2.1-src and i found the j2ee.jar
in this path: c:\j2sdkee1.2.1-src\j2ee\misc\lib\j2ee.jar
I'm not sure if i'm pointing to the right jar file.
I'm trying to comple a sample file and i'm getting the following error:
Class javax.ejb.EJBObject not found in import.
import javax.ejb.EJBObject;

the file is :
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
public interface Customer extends EJBObject {
public Name getName()
throws RemoteException;
public void setName(Name name)
throws RemoteException;
public Address getAddress()
throws RemoteException;
public void setAddress(Address address)
throws RemoteException;
}

thanks for the help again.
Hi all
in order to compile the home interface and remote interface i need jar files for the packages javax.ejb and others.
where or how to download them and how to set the classpath in order for the system to get need classes from them
thanks all for your help.
Hi
I'm new to ejb,this is the first time i try to deploy an ejb.
I've created an enterprise bean using visualcafe and i got the jar file and i put under myserver directory.
i tried to execute the client and i got the following error:
[Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialCont
extFactory]javax.naming.NoInitialContextException: Cannot instantiate class: web
logic.jndi.WLInitialContextFactory
please let me know how to link somehowe visualcafe to weblogic and what do i need to get the bean deployed.
thanks.
Hi
where do i need to put my jsp files and my servlet files to be able to run them and what please the url that i need to use to access them.
thanks for your time.
23 years ago
i'm running a very simple jsp with weblogic and i'm getting the following error:
java.net.SocketException: ReadFile on fd=700 failed with err=64
at weblogic.socket.NTSocketMuxer.initiateIO(Native Method)
at weblogic.socket.NTSocketMuxer.read(NTSocketMuxer.java:254)
at weblogic.socket.MuxableSocketHTTP.requeue(MuxableSocketHTTP.java:157)
at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:267)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
here is the jsp file:
//=======================
<%@ page language="java" %>
<%
String queryData = request.getQueryString();
out.println("Attached GET data: " + queryData);
%>
//========================
i'm putting that file in : weblogic/myserver/public_html
tanks for your time.
23 years ago
JSP
Hi all
please expalin to me about the following.
The URI : http://www.javaranch.com/servlet/HelloWorld;jsessionid=ab123f556
is an example of?
Thanks for your time.
Where can i find information or tutorial to cover this topic.
thanks.