TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
keith.bromwich
NA
34
0
response method
May 4 2004 3:32 AM
how do you in a webservice do a response or handle a get response. in my client i look and try and check to see if the web service is available. Dim url As New System.Uri(WebServiceURL & "/DCRSSync.asmx") ' Create the web request object Dim WebReq As System.Net.WebRequest WebReq = System.Net.WebRequest.Create(url) Dim Resp As System.Net.WebResponse Try ' Try and get a response Resp = WebReq.GetResponse Resp.Close() WebReq = Nothing Return True Catch ex As Exception Resp.Close() WebReq = Nothing Return False End Try so in the webservice what code do i need to give a response back cheers keith
Reply
Answers (
2
)
Jini As a Webservice
MSC PrOJECT TO DO