java webservice and .net client Interoperability

  • Thread starter Thread starter ABCL
  • Start date Start date
A

ABCL

HI all
we are consuming third party java webservice in the .net client.
The third party is changing webservice's interface continuosly if thwy
want to add new method in the wenservice, They are also changing the
existng methods, Becuse of that we have to change everything in
our .net client.
How can we write our code so we have to not cahnge code every where
and have to change it in one place?

Thanks
ABCL
 
ABCL said:
we are consuming third party java webservice in the .net client.
The third party is changing webservice's interface continuosly if thwy
want to add new method in the wenservice, They are also changing the
existng methods, Becuse of that we have to change everything in
our .net client.
How can we write our code so we have to not cahnge code every where
and have to change it in one place?

They are not being nice !

You really can't do anything.

If the change an existing method from taking one int arg
to take 2 string args, then no magic can resolve that.

Make a job that retrieves the WSDL and compares with the
existing one. If it is different, then you need to release
new software.

Arne
 
Back
Top