Hello everyone,
I am migrating a PB2019 application that uses SOAP to PB2022. As SOAP has been deprecated in PB2022 can anyone suggest a strategy to replace the SOAP code with REST API?
Thanks in advance.
Hello everyone,
I am migrating a PB2019 application that uses SOAP to PB2022. As SOAP has been deprecated in PB2022 can anyone suggest a strategy to replace the SOAP code with REST API?
Thanks in advance.
Hi David,
This is a new area for me and I've been slowly trying to piece this together but did anyone ever provide a solution that worked for you? Could you share how you decided to handle this? I see windows authentication isn't supported by httpclient. Did you go with a 3rd party? Something like Visual Guard is far more than we need for this one thing and was wondering what worked for you? This is so specific and doesn't seem like a huge thing that should require more software.
Is it true that SOAP calls are deprecated in PB 2022? If we have interfaces with other vendor applications that still uses SOAP then how do we mitigate this issue?
Hi Chris, a follow up to this if you don't mind... I am a little new to SOAP, REST in PB.
HTTP Client can call SOAP API, is it possible to apply authentication on HTTP client call to SOAP API?
ie.
The existing EAS SOAP API below is using integrated windows authentication. is it possible to apply integrated windows authentication on HTTP client call to SOAP API?
conn = Create soapconnection
TRY
conn.Useintegratedwindowsauthentication( True)
CATCH (Throwable x)
ls_error = x.GetMessage()
MessageBox( "EAS", "Error initializing web service call to Universal Coder." )
RETURN -1
END TRY
Thank you. Much appreciated.
Much appreciated Chris,
Reading them over now. Thanks.
Hi David;
Here are a few relevant links FYI...
https://docs.appeon.com/pb2022r2/troubleshooting_guide/tr_050.html
https://docs.appeon.com/pb2022/troubleshooting_guide/tr_053.html
https://www.youtube.com/watch?v=Nw60RXpB4Ps
HTH
Regards ... Chris