xml to soap
I need to take a SQL defined Xml that looks like this... <optiondata> <system.admission_data> <AdmissionDate>2020-06-15</AdmissionDate> <AdmissionTime>07:15 PM </AdmissionTime> <ClientName>Doe, John</ClientName> <EpisodeNumber>1</EpisodeNumber> <Program>3958</Program> <sex>M</sex> <TypeOfAdmission>01</TypeOfAdmission> </system.admission_data> <ClientID>123456</ClientID> <Episode>1</Episode> </optiondata> and change it to this... <tem:UpdateAdmission> <tem:SystemCode>Code</tem:SystemCode> <tem:UserName>Username</tem:UserName> <tem:Password>Password</tem:Password> <tem:ClientAdmissionInfo> <tem:AdmissionDate>2020-06-15</tem:AdmissionDate> <tem:AdmissionTime>07:15 PM</tem:AdmissionTime> <tem:ClientName>Doe,JOHN</tem:ClientName> <tem:EpisodeNumber>1</tem:EpisodeNumber> <tem:Program> 3958</tem:Program> <tem:Sex>M</tem:Sex> <tem:TypeOfAdmission>01</tem:TypeOfAdmission> </tem:ClientAdmissionInfo> <tem:ClientID>123456</tem:ClientID> <tem:Episode>1</tem:Episode> </tem:UpdateAdmission>13Views0likes2CommentsIssues with SoapUI 5.5.0 on Gaming Desktop: Need Help!
Hey everyone, I'm having some issues with SoapUI 5.5.0 on my gaming desktop [https://www.lenovo.com/ca/en/d/gaming-desktops/] and I'm wondering if anyone else has experienced similar problems. Here's a bit more context: I recently installed SoapUI 5.5.0 on my gaming desktop to test some web services, but I'm having trouble getting it to work properly. Specifically, the application is crashing every time I try to launch it, and I'm not sure what the problem might be. I've tried troubleshooting this issue by checking my system requirements and ensuring that I have the latest version of Java installed, but the issue persists. I'm wondering if there might be some compatibility issues between SoapUI 5.5.0 and gaming desktops. Has anyone else experienced similar issues with SoapUI 5.5.0 on a gaming desktop? And if so, do you have any suggestions for resolving this issue? I'd appreciate any advice or insights into this topic. Thank you in advance for your help!526Views0likes2CommentsCertificate X509 WCF Svc Windows
Hello, I'm using SoapUI 5.7.1 We have this .net wcf application : url: https://bla/bla/bla/aaaaa.svc In .net for a client config file I have this cert entry. <endpointBehaviors> <behavior name="FSPInternalEndpointClientBehavior"> <clientCredentials> <clientCertificate findValue="*someCert.com" x509FindType="FindBySubjectName" storeLocation="LocalMachine" storeName="My"/> <serviceCertificate> <defaultCertificate findValue="*someCert.com"" storeLocation="LocalMachine" storeName="TrustedPeople" x509FindType="FindBySubjectName"/> <authentication certificateValidationMode="PeerTrust"/> </serviceCertificate> </clientCredentials> </behavior> </endpointBehaviors> I have this cert (*.somecert.com) in my Microsoft Computer certs, and I have the matching pfx file. For that pfx file, I have a password. My .net client can call the WCF service with no issues. How do I configure SOAP UI to be able to call the WCF svc. I followed: https://www.soapui.org/docs/soapui-projects/ws-security/ , and I have tried many ways. So many options, and so many drop down ... but I always get <s:Reason> <s:Text xml:lang="en-US">An error occurred when verifying security for the message.</s:Text> </s:Reason> any insight. Thanks4Views0likes0CommentsAfter update to Soap 7.5.0 is the raw view chown by default
Hi All, I just updated to 5.7.0 and have now an issue. After sending a Soap request the response is always shown in the Raw-Register. Before the update it was by default the XML-Register. This is very confusing for me. Is there a possibility to define the XML-Register as default after sending a soap request? I didn't found anything in the docu or net... Thanks RalphSolved19KViews5likes7CommentsHave anyone tried soapui 5.6.0 with xmlbeans 5.0.3
The soapui 5.6.0 is dependent on xmlbeans "3.1.1-sb-fixed" which appears a customized xmlbeans version. In a unique situation where our web application would also use another library that needs xmlbeans 5.0.3. But the problem is obvious and we can't have two versions of xmlbeans in the classpath or we have runtime issues finding the appropriate binaries. If we carefully modify the soapui src to use xmlbeans 5.0.3 would we be OK? Trying to see if someone else ventured this route. Thanks Kalyan396Views1like1CommentTesting REST API with SoapUI - Emmanuel Katto Uganda
Hello SmartBear community, I am Emmanuel Katto. I'm currently using SoapUI to test a RESTful API that requires authentication and authorization. I've successfully set up the SoapUI project and can make requests to the API, but I'm having trouble handling the authentication and authorization aspects. Specifically, I'm trying to implement OAuth 2.0 bearer token authentication, where the client app sends a request to the authorization server to obtain an access token, and then includes that token in the Authorization header of subsequent requests to the API. I've tried setting up the OAuth 2.0 configuration in SoapUI, but I'm not sure if I'm doing it correctly. Are there any best practices or examples that I can follow? Please let me know. Thanks in advance! EmmanuelSolvedSupport soapui-maven-plugin Java 17
Hi folks, i want to know if the soapui-maven-plugin support java 17. Currently we have some Soap Webservices and a lot of automatic Test are running with the plugin but i am not sure if plugin support Java 17 because the api goes to Jakarta and will be running under jakarta packagename. Thanks a lot for the Community.Solved952Views1like5CommentsSupport for java 17 using SoapUI-maven-plugin.
Hi! Can you please tell me how could it be possible to use SoapUI-maven-plugin with java 17? I would like to use it on Jenkins, and I cannot install java 16 in Jenkins... because it runs on AWS and all my other tests (Selenium) are running on Java 17. While I tried in maven to use maven-compiler-plugin with release version 16, it throws an error that a groovy script cannot be run because of unsupported class file major version 61. On my local SoapUI works as expected with java 17, but the soap plugin no.112Views0likes2Comments