sql dependency through webservice ?

  • Thread starter Thread starter Rick Elbers
  • Start date Start date
R

Rick Elbers

Dear all,

Is something like sql depency with a webservice
dataset or table possible ?
If not say that we want direct mutual communication
how difficult would it be to use remoting in 2.0 ?
Had some traumas with remoting's security
in 1.1
 
Rick Elbers said:
Dear all,

Is something like sql depency with a webservice
dataset or table possible ?
--You need to have serializable objects to pass them through a ws. A Db
connection isn't serializable so while you could pass this information to
and fro - doing it directly is a no go. You can do async stuff but
effectively speaking,, I don't think you'll be able to get there if I
understand your question correctly.
If not say that we want direct mutual communication
how difficult would it be to use remoting in 2.0 ?
-- It really depends on the nature of your application. Is this hosted
inside a LAN? If so, then you could easily remote it, but again, remember
that a db connection isn't serializable
Had some traumas with remoting's security
in 1.1.
--Depends on a lot of things. How did you host it when you had the
problems? What were the security problems you had?


I know I'm pretty vague in my answers, but if you could tell me a little
more about the use case, i could probably provide some more concrete
answers.

HTH,

Bill
 
Back
Top