thanks for the help
I'm not sure our team leader is going to go for using the org.w3 dom library if we don't already have it in source control
around here it's just pretty much standard java se - but agree with you that it is cleaning that
when I'm receiving xml data back I could probably use a sax parser
to answer you question on asynch - what I mean it this
at anytime my client can receive an xml transmission over http from the server
this would happen after it processes a file - which could take some time
once it's done I get the notification
so I need some object listening for the http post
I'm guessing I'd need to config an web server ( such as apache ) ...or a servlet container
would i use a servlet to do the listening ? or a message listener type bean ? - or hopefully just something simple like a java class I develop myself
which can someone grab the incoming xml stream via htpp - parse it - and handle the result - such as "file is done and it's located here" or "there was an error and the error is ..."
hope that clarifies a bit
in other worlds - I'll have my front end java program looping and checking a database - when there is data there i create xml notify and http post to server and immediately get some type of "got your notification response back" xml message
BUT there would be another object, thread or something listening for xml result message which could come in at any time from the server
and since the server is sending xml via http - then i think my object would be a web service or some type ? correct ? or doesn't it have to be ?
thanks for the help appreciate it