I'm trying to use Talend Open Studio to sync contacts from a variety of input sources into an Exchange 2007 server.

I know Talend can talk SOAP, and EWS has a WSDL, but having bumped into all sorts of problems trying to marry the two together (since Exchange's WSDL is lacking elements which Talend needs) I don't know if that's the best plan of attack, or if I should be looking at building a more Exchange-specific plugin for Talend using the EWS Java API from MS.

Alternatively, if these are both known to not be possible, I'd appreciate a pointer to an explanation as to why - all the buzzwords seem to line up on each side, after all.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I work at Talend and would be happy to try and help you out a bit, but I myself am not familiar with the Exchange WSDL. I would assume that a SOAP interface from an established vendor like Microsoft is going to be WS-I Basic Profile compatible and should be easily invoked directly just like any regular WS. Would you mind trying the following:

  1. What particular elements are missing from the MS WSDL, or is it trying to use some non-standard feature? CXF is fully JAX-WS compliant, and it is certified WS-I BP compliant, so I have to assume something odd is going on.
  2. post the WSDL from exchange that you are trying to invoke from Talend.
  3. create a proxy client for that WSDL using CXF.
  4. Give it a try and send the error message.
  5. Generate a mock service provider based on that wsdl using CXF and run the CXF mock and try against that with the CXF wsdl client. This will give you added confidence that the client and wsdl have no problems.
  6. you can also try generating a simple test case with just SOAP UI or similar tooling against the Exchange WS.

ps: CXF is apache based open source. It is easy to use and has tight integration with Talend via the ASF suite. But you can also just use it by itself for diagnostic purposes.

Ed

link|improve this answer
It's missing the wsdl:service element. There are also problems with unrecognised types in messages.xsd and types.xsd, which I don't know how to deal with. I'm going to give CXF a try on its own; if that works (Axis2 didn't, so I'm not hugely optimistic) then I'll stick up a pastie for you to see the WSDL. – regularfry Jan 11 '11 at 16:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.