sunilkumar ssuparasmul

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

Recent posts by sunilkumar ssuparasmul

Hi Bear Bibeault


I infact realsied that and i used ITEXT API to send my text to the API but whne i use Itext api , i am not able to oprn the file at runtime as it says Permission Denied , when i tried to open the file

has any one implemented a better solution to convert from HTML to RTF and PDF , if not atleast with simple text (no htm) to create a RTF and PDF thru java

Thanks is Advance.


Regards
Sunil.s
18 years ago
JSP
Hi ,

I am trying to open the output of a JSP in a PDF , but it does nt open ..
What i am trying is , get all jsp output in a string and then write the string to output stream


i have some thing below in my code , but it doesnot work .

response.setContentType("application/pdf");
response.setHeader("Content-disposition","attachment; filename=Sample.pdf");
o = response.getOutputStream();

....

o.println(concatedString);

I tried converting my string into byte array and then write , still it doesnt work .

It says that file is not pdf supported and when i view the file source it is in HTML (the format which i wrote it) . DO i have to do anything in addition to convert into PDF . Please clarify as it is very critical.

With the same above steps and contecnt type as "application/word" , i coudl open the word document.


thanks in advance.

Regards
SUnil.s
18 years ago
JSP
Hi all ,


response.setContentType("application/msword");
response.setHeader("Content-disposition","inline; filename=test.doc");
o = response.getOutputStream();
o.println("<html>");
o.println("<head>");
o.println("<title>Runtime Model Structure</title>");
o.println("</head>");
o.println("<body>");
o.println("<h3>Runtime Model Structure</h3>");
o.println( generateConetentToDIsplay());
o.println("</body>");
o.println("</html>");

I have the above code in my program , it works perfectly in IE6 with SP1 and win2000 and it opens a word doc with the above content , where as the same code i try in WIN XP and IE6 with SP2 , the window opwns and just closes it .

Please let me know if i am missing something

Regards
Sunil.s
18 years ago
JSP
When Some of the
the Localized Texts (Transalations) have special characters (as that in 'Espa�ol').

i am getting the following error '
ia m using apache-jserv .

Can some body please help as it is Very urgent


Message: Fail to convert between UTF8 and UCS2: failUTF8Conv
java.sql.SQLException: Fail to convert between UTF8 and UCS2: failUTF8Conv
at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
at oracle.jdbc.dbaccess.DBError.check_error(DBError.java:1130)
at oracle.jdbc.dbaccess.DBConversion.failUTF8Conv(DBConversion.java:2261)
at oracle.jdbc.dbaccess.DBConversion.utf8BytesToJavaChars(DBConversion.java:2061)
at oracle.jdbc.dbaccess.DBConversion.charBytesToJavaChars(DBConversion.java:878)
at oracle.jdbc.dbaccess.DBConversion.CHARBytesToJavaChars(DBConversion.java:807)
at oracle.jdbc.ttc7.TTCItem.getChars(TTCItem.java:298)
at oracle.jdbc.dbaccess.DBDataSetImpl.getCharsItem(DBDataSetImpl.java:1492)
at oracle.jdbc.driver.OracleStatement.getCharsInternal(OracleStatement.java:3530)




select value NLS_CHARACTERSET from nls_database_parameters where parameter =
'NLS_CHARACTERSET';

select value NLS_NCHAR_CHARACTERSET from nls_database_parameters where
parameter = 'NLS_NCHAR_CHARACTERSET';


TIA,
Sunil
20 years ago
But how do i directly connect without using odbc-jdbc bridge
I would appreciate if there are nay pointers of if someone can send me the
code snippet.
Thanks in advance
Sunil
I wanted to make a connection to ODBC
TEST 1:-
Instead of creating a system dsn like "TestDSN" below
String dbDriver = "sun.jdbc.odbc.JdbcOdbcDriver";
String dbServer = "jdbc dbc:TestDSN";
String dbLogin = "";
String dbPassword = "";
Class.forName(dbDriver);
return DriverManager.getConnection(dbServer, dbLogin, dbPassword);


TEST 2":-
Is it possible to directly specify the mdb file instaead of creating dsn
and connecting as below

String dbDriver = "sun.jdbc.odbc.JdbcOdbcDriver";
String dbServer = "jdbc dbc:MYDB.mdb";
String dbLogin = "";
String dbPassword = "";
Class.forName(dbDriver);
return DriverManager.getConnection(dbServer, dbLogin, dbPassword);


TEST1 Works where as TEST 2 Do not Please Help and clarify
Or is it possible ot exstablish a connection without creating dsn.

Thanks in advance
Hi all ,
I am including ajsp file in another jsp file and it keeps giving me exception like this
<%@include file="/shah/ConnectionPool.jsp"%>
where /shah is the context root
i have alos tried absolute path
<%@include file="http://localhost:9000/shah/ConnectionPool.jsp"%>
but stil it continues to give teh follwoing exception . i cannot run in 8080 as some iother process rune at 8080.

Exception Trace
org.apache.jasper.JasperException: /transformer/Booster.jsp(58,0) File "/shah/ConnectionPool.jsp" not found
at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:94)
at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:428)
at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:170)
at org.apache.jasper.compiler.Parser.processIncludeDirective(Parser.java:305)
at org.apache.jasper.compiler.Parser.parseIncludeDirective(Parser.java:340)
at org.apache.jasper.compiler.Parser.parseDirective(Parser.java:378)
at org.apache.jasper.compiler.Parser.parseElements(Parser.java:800)
at org.apache.jasper.compiler.Parser.parse(Parser.java:122)
at org.apache.jasper.compiler.ParserController.parse(ParserController.java:199)
at org.apache.jasper.compiler.ParserController.parse(ParserController.java:153)
at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:223)
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:351)
at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:474)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:184)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
at java.lang.Thread.run(Thread.java:484)
21 years ago
Hi ,
when i try to run my jsp files . it is not laoding . any pointers y?
I have all my jsp under
CATALINA_HOME\webapps\ROOT\shah
and teh server is running in port 9000
and this is wat i used to refer the jsp
http://localhost:9000/shah/Contactus.jsp
I get teh follwoing exception .Please Help
org.apache.jasper.JasperException: Unable to compile class for JSP
at org.apache.jasper.JspCompilationContext.load(JspCompilationContext.java:507)
at org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:145)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:189)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
at java.lang.Thread.run(Thread.java:484)

root cause
java.lang.ClassNotFoundException: org.apache.jsp.FilamentTransformer_jsp
at org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:209)
at org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:131)
at org.apache.jasper.JspCompilationContext.load(JspCompilationContext.java:504)
at org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:145)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:189)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
at java.lang.Thread.run(Thread.java:484)
21 years ago
Hi all ,
When i tried to do context lookup in applets . i am getting an error (see below)
Where as the same code works perfectly fine in appletviewer.
I am not sure why it is looking into my jndi.properties file in my local machine bcos
there is already one jndi.properties which i have bundeled as a jar included in my applets
attributes tag.
Can some body please help me solve.
I know it is not advisable to directly contact applets from EJB but my requirment is such taht we canot avoid it and moreover its an intranet application.so please do not mention abt applet-servlet and stuff etc.
So please help me if u have any ideas about this
It is very urgent .

Exception : -
com.ms.security.SecurityExceptionEx[Applet1.initJMS]: cannot access file C:\WINNT\Java\lib\jndi.properties
at com/ms/security/permissions/FileIOPermission.check (FileIOPermission.java)
at com/ms/security/PolicyEngine.deepCheck (PolicyEngine.java)
at com/ms/security/PolicyEngine.checkPermission (PolicyEngine.java)
at com/ms/security/StandardSecurityManager.chk (StandardSecurityManager.java)
at com/ms/security/StandardSecurityManager.checkRead (StandardSecurityManager.java)
at java/io/FileInputStream.<init> (FileInputStream.java)
at com/sun/naming/internal/VersionHelper11.getJavaHomeLibStream (VersionHelper11.java:136)
at com/sun/naming/internal/ResourceManager.getApplicationResources (ResourceManager.java:451)
at com/sun/naming/internal/ResourceManager.getInitialEnvironment (ResourceManager.java:152)
at javax/naming/InitialContext.init (InitialContext.java:214)
at javax/naming/InitialContext.<init> (InitialContext.java:190)
at Applet1.initJMS (Applet1.java:126)
Thanks in advance,
sunil.s
Hi All,
I am doing a kind of server push mechanism for which i need to make teh HTTp connection active throughout.
Can somebody tell me what is teh maximum number of HTTP Connections could be open at a time in WEBlogic.
I read some where it depends on Execute Threads ,
Can somebody tel me a very good approximation on this.
TEH situations demands that conenction will never be closed.
Thnaks in advance ,
Hope to hear from you all Soon
Sunil.s
22 years ago
We're currently thinking about using Javascript from within a JSP frame to refresh itself
The scenario is something like this ,
The DB is updated some process, whenever the DB updates , teh front end screen
(if open ie if it is viewed by soembody) has to be refreshed to get fresh set of data.
The client wanted to do soem kind of pushing rather doing a polling.
If you have done something like this before or read anything
plz share tour ideas or code or any articles worth to get this done

Thnaks very much in advance
Sunil.s
22 years ago
JSP
We're currently thinking about using Javascript from within a HTML frame to refresh itself
The scenario is something like this ,
The DB is updated some process, whenever the DB updates , teh front end screen
(if open ie if it is viewed by soembody) has to be refreshed to get fresh set of data.
The client wanted to do soem kind of pushing rather doing a polling.
If you have done something like this before or read anything
plz share tour ideas or code or any articles worth to get this done

Thnaks very much in advance
SUnil.s
22 years ago
Hi ,
I am trying to connect to a JMS server using Applets.
but i am getting the follwoing error when i do a look up

com.ms.security.SecurityExceptionEx[finCalc/stateless/TestClientApplet.teste
2]:
> > cannot access file C:\WINNT\Java\lib\jndi.properties
> > at
> > com/ms/security/permissions/FileIOPermission.check
> > at com/ms/security/PolicyEngine.deepCheck
> > at com/ms/security/PolicyEngine.checkPermission
> > at com/ms/security/StandardSecurityManager.chk
> > at
> > com/ms/security/StandardSecurityManager.checkRead
> > at java/io/FileInputStream.<init>
> > at
> >
> com/sun/naming/internal/VersionHelper11.getJavaHomeLibStream
> > at
> >
> com/sun/naming/internal/ResourceManager.getApplicationResources
> > at
> >
> com/sun/naming/internal/ResourceManager.getInitialEnvironment
> > at javax/naming/InitialContext.init
> > at javax/naming/InitialContext.<init>
> > at finCalc/stateless/TestClientApplet.teste2
This is the piece of code i used to a lookup
=======================================================================
<APPLET CODE="TestClientApplet.class" archive="teste.jar" NAME="Hello"
WIDTH=0 HEIGHT=0>
<param name="java.naming.factory.initial"
value="org.jnp.interfaces.NamingContextFactory">
<param name="java.naming.provider.url" value="t3://inatp2rml21s:7011">
</APPLET>
====================================
TestClientApplet.java
====================================
...
Hashtable env = new Hashtable();
env.put(Context.APPLET, this);
Context ctx = new InitialContext(env);
...
If i'm passing parameters, why does "new InitialContext(env)" is looking
for "C:\WINNT\Java\lib\jndi.properties" ???

Please Help
Thnaks in advance.
sunils
22 years ago
Hi all
I amtrying to do a context lookup of weblogic using applets .
I am getting teh following error in Netscape ..please help
Init called
initJMS() started
java.lang.NullPointerException
at weblogic.jndi.WLInitialContextFactory.getInitialContext(Compiled Code)
at javax.naming.spi.NamingManager.getInitialContext(Compiled Code)
at javax.naming.InitialContext.getDefaultInitCtx(Compiled Code)
at javax.naming.InitialContext.init(Compiled Code)
* at javax.naming.InitialContext.<init>(Compiled Code)
at Applet1.initJMS(Compiled Code)
at Applet1.init(Compiled Code)
at netscape.applet.DerivedAppletFrame$InitAppletEvent.dispatch(Compiled Code)
at java.awt.EventDispatchThread$EventPump.dispatchEvents(Compiled Code)
at java.awt.EventDispatchThread.run(Compiled Code)
at netscape.applet.DerivedAppletFrame$AppletEventDispatchThread.run(Compiled Code)
Initialization failed

This is teh source i ahve used to do a look up
System.out.println("initJMS() started");
String hostName = "inatp2rml21s";
Hashtable env = new Hashtable();
env.put(Context.PROVIDER_URL,
"t3://" + hostName + ":7011");
env.put(Context.INITIAL_CONTEXT_FACTORY,
"weblogic.jndi.WLInitialContextFactory");
jmsContext = new InitialContext(env);
System.out.println("Context initialized");
22 years ago
Thnaks Chris For the reply ,
RIght now ia m concentration on the third point.
Do you have any idea how to establish that
if you have any code to do teh sam e it wold be of great help to me .
Right now if i connect to JMS using applet i am getting a exception like this
in NEtsacpe : -
java.lang.NullPointerException
at weblogic.jndi.WLInitialContextFactory.getInitialContext(Compiled Code)
at javax.naming.spi.NamingManager.getInitialContext(Compiled Code)
at javax.naming.InitialContext.getDefaultInitCtx(Compiled Code)
at javax.naming.InitialContext.init(Compiled Code)
* at javax.naming.InitialContext.<init>(Compiled Code)
at Applet1.initJMS(Compiled Code)
at Applet1.init(Compiled Code)
at netscape.applet.DerivedAppletFrame$InitAppletEvent.dispatch(Compiled Code)
at java.awt.EventDispatchThread$EventPump.dispatchEvents(Compiled Code)
at java.awt.EventDispatchThread.run(Compiled Code)
at netscape.applet.DerivedAppletFrame$AppletEventDispatchThread.r
teh following is teh Exception in IE
com.ms.security.SecurityExceptionEx[Applet1.initJMS]: cannot access file C:\WINNT\Java\lib\jndi.properties
at com/ms/security/permissions/FileIOPermission.check (FileIOPermission.java)
at com/ms/security/PolicyEngine.deepCheck (PolicyEngine.java)
at com/ms/security/PolicyEngine.checkPermission (PolicyEngine.java)
at com/ms/security/StandardSecurityManager.chk (StandardSecurityManager.java)
at com/ms/security/StandardSecurityManager.checkRead (StandardSecurityManager.java)
at java/io/FileInputStream.<init> (FileInputStream.java)
at com/sun/naming/internal/VersionHelper11.getJavaHomeLibStream (VersionHelper11.java:136)
at com/sun/naming/internal/ResourceManager.getApplicationResources (ResourceManager.java:451)
at com/sun/naming/internal/ResourceManager.getInitialEnvironment (ResourceManager.java:152)
at javax/naming/InitialContext.init (InitialContext.java:214)
at javax/naming/InitialContext.<init> (InitialContext.java:190)
at Applet1.initJMS (Applet1.java:114)
at Applet1.init (Applet1.java:44)
at com/ms/applet/AppletPanel.securedCall0 (AppletPanel.java)
at com/ms/applet/AppletPanel.securedCall (AppletPanel.java)
at com/ms/applet/AppletPanel.processSentEvent (AppletPanel.java)
at com/ms/applet/AppletPanel.processSentEvent (AppletPanel.java)
at com/ms/applet/AppletPanel.run (AppletPanel.java)
at java/lang/Thread.run (Thread.java)
22 years ago