Kumar Suresh

Greenhorn
+ Follow
since Aug 10, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Kumar Suresh

I have opened an post in Oracle.forums regarding the same..
https://forums.oracle.com/forums/message.jspa?messageID=9828484#9828484

I was sending HTTP Post Messages using URL Connection, but now I have to send a MIME message using HTTP Post, is it possible ?

This is what I use now

Please let me know

Thanks
12 years ago
I have a servlet, which was initially getting request ( XML Message) and writing into a file on a Server. This was perfectly fine and it handled any number of messages per second. The problem started when I started to validate the XML message using an Huge XSD. using the Validator function.

I am getting the error "src-resolve: Cannot resolve the name 'xml:lang' to a(n) 'attribute declaration' component" .. I am getting this error only 3 out of 10 times.. the other 7 times its fine..

I am trying to submit a request pretty fast like may be 10 times within 2 seconds..

In the code below, I might be able to try converting the "in" parameter to bytes and back using it again in source, other forums have suggested to use the in parameter directly , but thats not where I got stuck..

Please suggest if there is any threading issue involved here or anything like that.

The DTD for the xsd can be found here http://xml.cXML.org/schemas/cXML/1.1.010/cXML.dtd

Thanks