That's a different beast. Basically what you need to do is: 1. Open up an HTTP connection to the java program (i'm assuming you have a URL to call) 2. Format your soap message and send it to the URL via the HTTP connection. 3. You'll receive a response like you would with any other HTTP connection
The only trick is that you will need is to make the call asynchronously -- and that's pretty straightforward in .NET -- and fire an event when you receive a response. But this is probably the hardest way to do it nowadays. There are a couple of other approaches you could also investigate: Using web service proxy objects... http://www.15seconds.com/Issue/010530.htm http://aspnet.4guysfromrolla.com/articles/110503-1.aspx And web service extensions http://aspnet.4guysfromrolla.com/articles/063004-1.aspx What you want to do is create a SOAP client. Do a little googling and you should be able to find some applicable examples. On 12/23/05, Rick Holcomb <[EMAIL PROTECTED]> wrote: > Yea I hear what you are saying and it probably is going to be hard but I > have no choice. > > (BTW: Using VS 2005) > > > > I need to send a SOAP message to a running java program that is waiting. It > will then return a message to me with the status of the request. That I > cannot figure out how to do. > > > > At a later date/time I will need to receive a message from the java program. > This part can be a webservice. > > -- Dean Fiala Very Practical Software, Inc http://www.vpsw.com ------------------------ Yahoo! Groups Sponsor --------------------~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/KIlPFB/vlQLAA/TtwFAA/saFolB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
