java webservice and .net client Interoperability

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
 
A

Arne Vajhøj

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
 

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