Skip to main content
Solved

Can't read SOAP

  • September 11, 2019
  • 4 replies
  • 32 views

zzupljanin
Contributor
Forum|alt.badge.img+4

Hi,

 

I'm having difficulties understanding SOAP in FME. I followed through https://knowledge.safe.com/articles/45314/working-with-soap-services.html but I always get 500 Internal Server Error.

 

Using SOAP UI everything goes smoothly (see pictures bellow) but in FME I just can't get it running correct.

 

 

It uses this SOAP schema: https://oss.uredjenazemlja.hr/OssWebServices/services/AuthenticationService.wsdl

 

Can you please show my what I'm doing wrong.

 

Cheers,

Zelimir

 

 

 

Best answer by daveatsafe

Hi @zzupljanin,

Your upload SOAP request looks correct. The only problem I can see is the URL in the HTTPCaller, which is:

https://oss.uredjenazemlja.hr/OssWebServices/services/AuthenticationService.wsdl

instead of:

https://oss.uredjenazemlja.hr/OssWebServices/services/

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

4 replies

itay
Supporter
Forum|alt.badge.img+18
  • Supporter
  • September 11, 2019

Hi @zzupljanin,

I am currently also getting a error from the service

Are the credentials in the workspace correct? otherwise the authentication step reject the user credentials.


zzupljanin
Contributor
Forum|alt.badge.img+4
  • Author
  • Contributor
  • September 11, 2019

Hi @zzupljanin,

I am currently also getting a error from the service

Are the credentials in the workspace correct? otherwise the authentication step reject the user credentials.

Unfortunately,

 

I took the liberty to not provide it.

You'll have to trust my word.

I'd be grateful for any tips & tricks for understanding SOAP schema to provide correct request in FME.


daveatsafe
Safer
Forum|alt.badge.img+19
  • Safer
  • Best Answer
  • September 11, 2019

Hi @zzupljanin,

Your upload SOAP request looks correct. The only problem I can see is the URL in the HTTPCaller, which is:

https://oss.uredjenazemlja.hr/OssWebServices/services/AuthenticationService.wsdl

instead of:

https://oss.uredjenazemlja.hr/OssWebServices/services/


zzupljanin
Contributor
Forum|alt.badge.img+4
  • Author
  • Contributor
  • September 12, 2019

Hi @zzupljanin,

Your upload SOAP request looks correct. The only problem I can see is the URL in the HTTPCaller, which is:

https://oss.uredjenazemlja.hr/OssWebServices/services/AuthenticationService.wsdl

instead of:

https://oss.uredjenazemlja.hr/OssWebServices/services/

Solved it

 

You're right about request url.

 

Other thing I had to do is to use Text (text/plain) in HTTPCaller instead of SOAP XML (application/soap+xml).

 

Thank you