Jayaseelan Shanmugam

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

Recent posts by Jayaseelan Shanmugam

Hi Sivaraman,
Since the Web server in our production environment is shared one, I can not deploy the third party libraries into the server endorsed directory.

Thx & Regards,
JaySee
18 years ago
Hi Sivaraman,
As you mentioned using itext library is one way of genearting reports in java. The other way aroud is using fop to generate PDF or CSV reports. Here the process is transforming XSLT(format) and XML (data holder) by using FOP libraries.

Here the main issue is I can not use the XML processing libraries which are kept inside my application specific lib folder. System expects those libraries with in the tomcat endorsed directory instead application specific libraries.
18 years ago
Following are the libraries which are being used in my application for PDF report generation.
1. xalan-2.6.0.jar
2. xercesImpl-2.6.2.jar
3. xml-apis.jar

Problem is I have compulsorily to put these libraries in the tomcat common/endorsed folder or otherwise reports are not generated duing run time. I have tried to keep all the libraries in my application specific lib folder but it does not works. Please do the needful
18 years ago
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<SOAP-ENV:Header>
</SOAP-ENV:Header>

<SOAP-ENV:Body>
<purchaseOrder xmlns="urn reilly-jaws-samples">
<shipTo country="US">
<name>JaySee</name>
<Street>Sigamani Nagar</Street>
<City>Chennai</City>
<State>Tamil Nadu</State>
</shipTo>
<items partNum="999-JJJ">
<productName>Candy Canes</productName>
<quantity>999</quantity>
<price>1.68</price>
<comment>I want Candy!</comment>
</items>
</purchaseOrder>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
19 years ago
Refer
Java Web Services - David A. Chappell & Tyler Jewell
By O'Reilly Publication
19 years ago
Could not recognize the SOAP XML Namespace while invoking MessageRouterServlet:

The error as follows:

<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xm
lns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org
/2001/XMLSchema">
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<faultcode>SOAP-ENV:Server</faultcode>
<faultstring>service 'http://schemas.xmlsoap.org/soap/envelope/&apos; unkno
wn</faultstring>
<faultactor>/WebServiceServer/messagerouter</faultactor>
</SOAP-ENV:Fault>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
19 years ago
I am working with WebSphere Application Server 5.1. I have created the DataSource with J2C Authentication properties. I got an error while accessing the Datasouce through JNDI Look up. The error as follows:

[3/6/05 16:39:32:281 IST] 1264b590 ConnectionFac I J2CA0122I: Resource
reference jdbc/GpsDataSource could not be located, so default values of the following are used: [Resource-ref settings]

res-auth: 1 (APPLICATION)
res-isolation-level: 0 (TRANSACTION_NONE)
res-sharing-scope: true (SHAREABLE)
res-resolution-control: 999 (undefined)
[Other attributes]

isCMP1_x: false (not CMP1.x)
isJMS: false (not JMS)

Can any one help me out in this regard?
19 years ago