XML From Web Service
-
Once you get an answer from your web service, it comes out as XML. How do I get it into a backend so i can put it in a web viewable interface? ie. how do i get the answer onto a page or how can i get a stylesheet or do i have to call the stylesheet myself?? The Wudan Master
-
Once you get an answer from your web service, it comes out as XML. How do I get it into a backend so i can put it in a web viewable interface? ie. how do i get the answer onto a page or how can i get a stylesheet or do i have to call the stylesheet myself?? The Wudan Master
-
This is not related to your question. Because truly I dont know the answer. But I am curious about your user name. I kinda like that name ever since I saw Crouching Tiger... movie. Are you impressed also?? omkamal
-
Once you get an answer from your web service, it comes out as XML. How do I get it into a backend so i can put it in a web viewable interface? ie. how do i get the answer onto a page or how can i get a stylesheet or do i have to call the stylesheet myself?? The Wudan Master
-
Can you tell us how. I'd like to do the same sort of thing. :confused: :confused: :confused:
-
hi, omkamal Yes I was impressed with the film I have the DVD. My fellow developers think Im nutts as I watch the film quite a lot and keep quoting lines ( in english :( ) from the film. I wondered if anyone would recognise it ;) The Wudan Master
The only thing that attracts me in the movie is (even though unbelievable) the Martial Arts they play. I read a lot of articles about chinese people who can meditate to an extent which makes their body feel light and were able to fly like a leaf/paper floating in air. There is certain science involved in that too which would be very complicated to explain. But to a novice's eyes they all seem to be fictional. And my friends are novice too that they tease me often when I watch the movie. I have a DVD of it too. In fact I like all the chinese (good) martial arts movies. Good to know that there is someone(Li Mu Bai) on my page. omkamal
-
Can you tell us how. I'd like to do the same sort of thing. :confused: :confused: :confused:
Hi, Its easy it does it itself all you have to do is make an app to take the xml and display it:- QueryDatabaseApp.localhost1.InfoService myService = new QueryDatabaseApp.localhost1.InfoService(); object myObj = myService.getNumberOfTests( SerialNumber.Text ); if( null != myObj ) { Result.Text = myObj.ToString(); DataGrid1.DataSource = myService.getTestHistory(); DataGrid1.DataBind(); } else { Result.Text = "Serial Number NOT Found!"; } here is a bit out of the app that uses the web service with a stored proceedure returning a string and a data set which is put into a grid. The Wudan Master
-
Hi, Its easy it does it itself all you have to do is make an app to take the xml and display it:- QueryDatabaseApp.localhost1.InfoService myService = new QueryDatabaseApp.localhost1.InfoService(); object myObj = myService.getNumberOfTests( SerialNumber.Text ); if( null != myObj ) { Result.Text = myObj.ToString(); DataGrid1.DataSource = myService.getTestHistory(); DataGrid1.DataBind(); } else { Result.Text = "Serial Number NOT Found!"; } here is a bit out of the app that uses the web service with a stored proceedure returning a string and a data set which is put into a grid. The Wudan Master
Thanks, I'll give it a try. :)