shail nig

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

Recent posts by shail nig

I want to implement a airline checkin terminal.

just to clarify POS is ''point of sale" or "point of service".
After doing some Research on google i have come across following things

OPOS: Provides the UnifiedPOS mapping for a POS application running on the Windows operating system.

JavaPOS: Provides the UnifiedPOS mapping for a Java Language POS application running on any operating system.

POS for .NET: Provides a UnifiedPOS mapping for a Microsoft .NET POS application running on the Windows operating system with the POS for .NET class libraries.

If i have to use .NET is "POS for .NET" a good option for a web based POS.
I understand a KIOSk can be a web based application also.

now coming to another aspect of KIOSK - KIOSK monitoring

we need to monitor KIOSK events such as KIOSK working/not working, KIOSk printer paper jam, out of paper


can this all be done using simple web based application using struts or jsf and activex or applets
I dont know if this is correct place to ask this question.

I want to know what technologies goes into building into a Self service kiosk like a bank atm or an airlines kiosk.

What technologies are used for client ( Web based or Thick client)?

m using ContentHandler to generate xml
in data i have <STRONG>
which is being converted to & lt; STRONG & gt;

i want to avoid this

any idea how this can be done

Shail

[ April 12, 2006: Message edited by: shail nig ]
[ April 12, 2006: Message edited by: shail nig ]
m generating pdf using fop
but not able to see russian font in it
fop doesnt give any error
m using cryllic font and have installed in my machine

any ideas?

Shail
i am not able to generate multilingual pdf using the above said procedure

can anyone help???

m using following command

FOP -c conf/userconfig.xml -xml Lang.xml -xsl MultiLAng.xsl -pdf MultiLang.pdf

my userconfig.xml file is

<font metrics-file="m-ARIAn.xml" embed-file="C:/m-ARIAn.ttf" kerning="yes">
<font-triplet name="mARIAn" />
<font-triplet name="mARIAn" />
</font>

<font metrics-file="Iqraa.xml" kerning="yes" embed-file="C:/WINNT/Fonts/Iqraa.ttf">
<font-triplet name="Iqraa" style="normal" weight="normal"/>
</font>

'#' is being generated instead of special characters

Shail
i am not able to generate multilingual pdf using the above said procedure

can anyone help???

m using following command

FOP -c conf/userconfig.xml -xml Lang.xml -xsl MultiLAng.xsl -pdf MultiLang.pdf

my userconfig.xml file is

<font metrics-file="m-ARIAn.xml" embed-file="C:/m-ARIAn.ttf" kerning="yes">
<font-triplet name="mARIAn" />
<font-triplet name="mARIAn" />
</font>

<font metrics-file="Iqraa.xml" kerning="yes" embed-file="C:/WINNT/Fonts/Iqraa.ttf">
<font-triplet name="Iqraa" style="normal" weight="normal"/>
</font>

'#' is being generated instead of special characters

Shail
hi,
i am developing java application on wls server.i have a ear file which is having 2 ejb's and 2 war's.
in one of the ejb m using class-path entry as shown
Class-Path: xerces.jar Logging.jar xmlParserAPIs.jar xercesImpl.jar eHubCommon-Server.jar jakarta-regexp-1.3.jar log4j-1.1.3.jar saxpath.jar jdom.jar jaxen-jdom.jar jaxen-dom.jar jaxen-core.jar XML2DOConverter.jar XML2DOConverterExample.jar bti-rsa_validator.jar
The last jar bti-rsa_validator.jar is using SAXParser class
when deploying application m getting error NoClassDefFound for SAXParser which is present in 2 jars xerces.jar and xercesImpl.jar under same package.
i have put all jars in one directory and made ear file.
if i put xerces.jar in wls classpath evevrything works fine,but i have use that using manifest file .
21 years ago
hi,
i am developing java application on wls server.i have a ear file which is having 2 ejb's and 2 war's.
in one of the ejb m using class-path entry as shown
Class-Path: xerces.jar Logging.jar xmlParserAPIs.jar xercesImpl.jar eHubCommon-Server.jar jakarta-regexp-1.3.jar log4j-1.1.3.jar saxpath.jar jdom.jar jaxen-jdom.jar jaxen-dom.jar jaxen-core.jar XML2DOConverter.jar XML2DOConverterExample.jar bti-rsa_validator.jar
The last jar bti-rsa_validator.jar is using SAXParser class
when deploying application m getting error NoClassDefFound for SAXParser which is present in 2 jars xerces.jar and xercesImpl.jar under same package.
i have put all jars in one directory and made ear file.
if i put xerces.jar in wls classpath evevrything works fine,but i have use that using manifest file .
m having ear file conataining 4 components
1.war
2.war
3.jar
4.jar
out of which 3.jar and 4.jar are EJB's
in manifest file of 3.jar i have placed following line for extension jar "5.jar"
Class-path: META-INF/lib/5.jar
and placed 5.jar in META-INF/lib directory before creating 3.jar.
when deploying on wls7 it gives one of the class not found error.
any one ot help on this one??

Originally posted by Mike Curwen:
There are quite a few questions in your post, and in lots of different areas.

apache jserv - This is just about as old as you can get, 1999 or earlier. Is there any reason you are not using a newer technology? Tomcat 4.1.27 is what you should be using. Find it here by searching for Tomcat 4

debug servlets It can be as simple as coding 'System.out.println("debug statement");' but I wouldn't personally recommend it. I use log4j and really enjoy it. There is an excellent HOWTO site here

console Are you talking about the console output? I don't know about jserv at all, but in Tomcat, it's in the catalina.out file. If you mean a management console, where you can deploy and examine settings, then Tomcat has two different consoles... a deployer at http://localhost:8080/manager and an admin app at http://localhost:8080/admin

restarting At very least you'll need to reload a single web application when you make a change to a compiled class. Changes to JSP pages are generally noticed immediately without any problems.

xml Kinda off-topic for this forum. But basically, you'd use 'out.println("<xml-tag>");' statements (which is crude) or use an XML API that can construct an XML document through objects and then 'stream' it to the servlet output stream.


hi
thanks a lot
i have installed tomcat 4.1.27
but after starting server when i tried to open http://localhost:8080/admin
it said
http status 500
org.apache.jasper.JasperException: Unable to compile class for JSP
why is it coming??
even i will try to do some r&d.
bye
21 years ago
hi all,
i am using apache jserv for running servlets on my win98 machine
can i get a solution to debug sevlets using println statements?
i am also trying to find out console to monitor the server?
do i have to restart server every time i change my servers?
how can i write xml documents directly on browser?
shail
21 years ago
hi i m trying to install WLS8.1 on win98
after installation i created a domain
but while starting servers it gives me error that cmd.exe file not found
can anyone help
shail
21 years ago