Mahendran Duraisamy

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

Recent posts by Mahendran Duraisamy

Hi,
U may need to look into the architecture of the B2B Web Server of WebMethods. They have these services called WIDL services. U can create ur own services to contact a website and parse that website content for useful information. www.webmethods.com
look www.w3.org to learn about WIDL services development.
Regards,
mahendran
23 years ago
Hi,
U may need to look into the architecture of the B2B Web Server of WebMethods. They have these services called WIDL services. U can create ur own services to contact a website and parse that website content for useful information. www.webmethods.com
look www.w3.org to learn about WIDL services development.
Regards,
mahendran
Hi,
U sample code shows two namespace declarations why is that?
1. xmlns="http://www.w3.org"
2. xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance"
I believe the second one is enough to run ur application.
Try this one also,
<person xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:SchemaLocation='C:\SchemaValidation\schema_test.xsd'>

Regards,
mahendran
Hi,
When i look at ur error log. I see errors from Xerces or Xalan parser which is strange because u r using a different parser like JAXP1.1. The method not found exception for StartElement is the error message from the application which is looking for Xerces or Xalan parser jar files in the classpath.
U said u r using "JAXP 1.1. parser and tomcat3.2.1 and JDK1.3.1 and SAX parser " i have no idea about JAXP1.1 but what is the SAX parser ? u didn't give the name of the parser. why don't put the jar files from Xerces or Xalan in Tomcat's classpath.
Those jar files are available in www.apache.org.
Regards,
mahendran
Thank U very much parmeet.
It works.
Regards,
mahendran
Hi Parmeet,
Thanks for ur reply.
I was talking to one of our developer who is logging that table which has date field. He told me to write a query to display both the date and time from "date" field.
It appears like this "MM-DD-YYYY:HH:MM:SS" will u pls. tell me how to sort this particular column to get the recent 20 records at any point of time.
Thanks,
mahendran
Hi,
Is there a way to pull the recent 20 records from Oracle Database table without using any field in particular.
My table contains fields like ,
session_id - looks like random number generator
timestamp with only date not the time.
The table is logged by some application in the background whenever a transaction is occurred.
For example , in any web server if u view the log file thru the administrative screen/console u have this option like display the recent 20 records or display the last first. That kind of thing.
but i don't know how to write SQL query to display the recently inserted 20 records at any point of time.

Thanks and Regards,
mahendran