greetings,
i created a test asp page like so:
I also create a simple form an posted to the above asp page. The value entered the database. Now, i'll be working with a remote server that is using a java based webservice to push an xml file to the aformentioned asp page?
Would i be able to grab the xml packed as an item?
i created a test asp page like so:
Code:
<!--#include file="includes/dbconstants.asp"-->
<%
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open CONSTdbConnStr
For Each item In Request.Form
objNode = objNode & item
strSQL = "INSERT INTO GDSconfirm (ReservationID, StatusR) VALUES ('11111', '"& objNode &"')"
objConn.Execute(strSQL)
Next
objConn.Close
%>
I also create a simple form an posted to the above asp page. The value entered the database. Now, i'll be working with a remote server that is using a java based webservice to push an xml file to the aformentioned asp page?
Would i be able to grab the xml packed as an item?