문제

I'd like to use a custom service in a Web Service Listener source, but I can't figure out how to do this.

Do I need to write a custom class or interface? Does that class need to extend or implement anything specific?

After implementing the custom class does the wsdl change or does it use the same wsdl either way?

I'm using Mirth Connect 2.0.1.5164.

Thanks!

도움이 되었습니까?

해결책

You need to write a custom class based off of the com.mirth.connect.connectors.ws.DefaultAcceptMessage class.

The easiest way is to download the source code, get Mirth to compile from source, and create a new class from the associated java files needed for this class, eg.

com.somecompany.mirth.connect.connectors.ws.MyAcceptMessage (or something simpler if needed)

You can then customize this class and change the parameters it accepts.

The WSDL will reflect the updated interface.

Frans

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top