passing object between two webApps on the same server

G

Guest

Can I pass an object from one web application to another on the same server?
I want to kind of post it or something so that I don't have to pass info in
the url string.
 
S

Steve C. Orr [MVP, MCSD]

An object belongs to an application, therefore you cannot directly pass it
to another application.
There are indirect ways however, such as passing key information from the
object and having a similar object accept it in the other application. Or
you could serialize the object in App1 and deserialized it in App2.
You could post data to the other app or you pass it via a common database,
etc.
 
B

Bruce Barker

the easiest is to use webservices, put one app can post to another using
webclient. you can alo serialize to a common database.

-- bruce (sqlwork.com)
 

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

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,023
Latest member
websitedesig25

Latest Threads

Top