Web / Desktop Shared Data

  • Thread starter Michael_R_Banks
  • Start date
M

Michael_R_Banks

All,

I'm trying to write a VB application that will parse a set of data,
create an object to hold the required information, then pass that
object to both another VB.net application (no problem) AND a PHP based
web-site. Has anyone done this before? I looked at using SOAP, but
I'm stumped on how to rebuild the object once it's in PHP. Is there
another method to serialize the object that would be more suited for
this interaction?

Regards,
Michael
 
G

Guest

All,

I'm trying to write a VB application that will parse a set of data,
create an object to hold the required information, then pass that
object to both another VB.net application (no problem) AND a PHP based
web-site. Has anyone done this before? I looked at using SOAP, but
I'm stumped on how to rebuild the object once it's in PHP. Is there
another method to serialize the object that would be more suited for
this interaction?


You'll need a Web Service client. Not sure if PHP provides one, but .NET,
Java, etc all do.

Otherwise you could use XML-RPC, but you'll need a third party library for
..NET.

Or you could just "post" data to the form using the WebClient class in
..NET. The data will get sent as form variables to the PHP page - which you
can easily extract.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top