Isha Mackker

Greenhorn
+ Follow
since Oct 18, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Isha Mackker

Hi All,

Can anybody please help me in knowing if the JBossCache is equally configurable and useful as GigaSpaces. How can we mention lease time in JBossCache and can we just keep objects in memory instead of persistence storage to database etc.?
Also how listeners/receivers work in JBossCache? I mean do they need to provide some template to cache for retrieving objects or it is simple key based.

Thanks.
16 years ago
Hi All,
I have a third party ocx that I'll be using in my java application. For that, I need to write a wrapper dll that I can load into my application through JNI. This dll will be interacting with the ocx and will help me call the methods in ocx and mapping the data types in Java to the ones in C.
My question is how can I generate a header file from the ocx file so that I can include that in the wrapper dll and call the methods defined in the ocx. This way I'll be implicitly loading the ocx into the wraper dll. Or is there any other way to load the ocx into my wrapper dll?
Thanks,
Isha
17 years ago
Hi All,
I have a third party ocx that I'll be using in my java application. For that, I need to write a wrapper dll that I can load into my application through JNI. This dll will be interacting with the ocx and will help me call the methods in ocx and mapping the data types in Java to the ones in C.
My question is how can I generate a header file from the ocx file so that I can include that in the wrapper dll and call the methods defined in the ocx. This way I'll be implicitly loading the ocx into the wraper dll. Or is there any other way to load the ocx into my wrapper dll?
Thanks,
Isha
17 years ago
Yes, may be it won't be out of date soon, though not sure, but any updates on when Sun is gonna launch SCWCD 5.0?
Hi All,

I have read in FAQs for SCWCD regarding version 5 of the exam:

Quote from Bert on April 2006: "The [1.4] exam will be available and "current" for a long time. There is no plan to update the SCWCD exam, I would guess that the EARLIEST that the SCWCD will be updated is at least a year away. At that point, the current exam will still be available for AT LEAST another year past that."

And its almost one and a half year now.. Any updates on when Sun is going to release version 5?
If not now, then how beneficial will it be to go for 1.4?

Thanks,
Isha
Yes, thats very true. I need not restart the JBoss.
Anyhow, to make the script wait, I can use this:
sleep 10s
this will make the script wait for 10 secs where 's' is a suffix to indicate seconds.
Thanks.
17 years ago
Hi All,

I have written a shell script to update my web application, i.e. executing the shell script automatically stops the JBoss, replaces old ear file with new ear file and then start the JBoss.

I want the script to wait for the JBoss to stop and then start replacing the ear. I tried using wait $PID, extracting PID as:

PID=`ps -ef | grep 'jboss.sh' | tr -s " " | cut -d" " -f2`
PID=`echo $PID | cut -d" " -f1`

where jboss.sh is another script to stop the JBoss and then calling the wait as:

wait $PID

the issue with this is that it says:

test.sh: line 8: wait: pid 4215 is not a child of this shell.

Please help.
Thanks.
17 years ago
Hi all,
I am working on an application in which a user has provision to add pages from the internet and save them as bookmarks. Now I want the same to be done for intranet / local htm files as well. And If a file or page is behind a firewall - its title & handle to should be saved. On revisiting - we can assume that the access to the link is possible through the client - then it can be shown. Can anybody please suggest me, how this can be made feasible by using JavaScript.
Thanks,
Isha
Hi all,
I have passed the SCJP exam for tiger edition a few days back. Now I am a bit confused about what next, I mean whether I shall go for SCWCD exam for 1.4 edition?
Plz help.
Isha.
Hi all,
Facing this exception in struts, plz help.

18:24:28,343 ERROR [StrutsCXStandardTransformer] TransformerConfigurationException
18:24:28,343 ERROR [StrutsCXStandardTransformer] Exception
com.cappuccinonet.strutscx.exceptions.StrutsCXXSLTException: TransformerConfigurationException
javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: java.util.NoSuchElementException
at com.cappuccinonet.strutscx.xslt.StrutsCXStandardTransformer.createXSLTemplate(StrutsCXStandardTransformer.java:467)
at com.cappuccinonet.strutscx.xslt.StrutsCXStandardTransformer.makeTransformation(StrutsCXStandardTransformer.java:354)
at com.cappuccinonet.strutscx.xslt.StrutsCXStandardTransformer.takeAction(StrutsCXStandardTransformer.java:682)
at com.cappuccinonet.strutscx.xslt.StrutsCXStandardTransformer.transform(StrutsCXStandardTransformer.java:281)
at com.cappuccinonet.strutscx.xslt.StrutsCXServlet.invoceStrutsCXTransformer(StrutsCXServlet.java:601)
at com.cappuccinonet.strutscx.xslt.StrutsCXServlet.doPost(StrutsCXServlet.java:274)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:704)
at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:474)
at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:409)
at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)
at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at com.ists.jsserver.web.controller.JSActionServlet.process(JSActionServlet.java:59)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:44)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:169)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)


Thanks and Regards,
Isha.
18 years ago
Hi all,
I am facing the following problem for a failed build in my project:

BUILD FAILED
C:\javaprojects\CourseCafe\build.xml:237: C:\javaprojects\CourseCafe\build\src\com\ists\jsserver\locator not found.

I have checked all the classpaths and the properties file, nothing is wrong anywhere. And the build folder is being created at 2 places, 1 inside the project folder and another inside the src folder. can anybody plz help me why this is happening and what can be a probable solution?

Thanks and Regards,
Isha.
18 years ago
What i wanted is at run time, i mean if u don't have access to the source code, u can't even change the run(), then is there any way to kill or stop the thread?
Hi Marius Snyman,
Can u plz send the same tutorial to me as well.
Isha
Hi All,
Is there any may to kill a thread or stop executing a thread at the run time, not at development time(by using yield(), sleep() or setting lower priority etc.)?
Thanks and Regards,
Isha
Hi
I took mine on 17th feb only, but no certificate yet, are there any formalities need to be fulfilled for that? plz do let me know.
Thanks and Regards,
Isha
19 years ago