1
vote
0answers
21 views

Getting value from SOAP response in php

I am getting a SOAP response for a SOAP call perfectly using SOAP ui but when I call the same in php, I am not able to traverse to the desired element(CreditId in this case), which I want. The ...
0
votes
1answer
41 views

SoapUI can't read WSDL

I'm trying to open this URL via SoapUI: https://mybilling.voipconsultants.biz/wsdl/CustomerResellerService.wsdl I've tried downloading 4.5.1, however it still complains. It simply says "There ...
1
vote
1answer
48 views

How to validate WSDL contract break?

I have a notion of what breaks a WSDL contract or not (What are considered non-breaking or backwards-compatible changes to a WSDL contract?) but every time we make a change to some of our WSDLs we ...
0
votes
1answer
41 views

How do I get the size of a response attachment in SoapUI?

I'm performing a series of file uploads and downloads through a WSDL defined interface in SoapUI (not Pro). The built-in assertions to verify these attachments are insufficient. I've found some ...
0
votes
1answer
99 views

How to make web service tell request that SOAP header is required?

I created a web service, written in Java and generated using Eclipse & Axis2. I created a ws-security policy in my services.xml file and created an authentication handler. I am completely new to ...
0
votes
1answer
119 views

Visual Studio 2008 Add Service Reference Error - WSDL - Metadata contains a reference that cannot be resolved

I have a web service running on a server on the local network. Using the program soapUI, I am able to connect to the service no problem. So when I create a new project using soapUI and type in my url ...
0
votes
0answers
15 views

SoapUI mockservice schemalocation

When I create a mockservice in soapUI and request the wsdl, the schemalocation of the referenced xsds is always relative, how do I make them absolute?
0
votes
0answers
98 views

How to ignore duplicate xsd elements while generating proxy class wsdl scheme in .NET

I need to generate .NET (C#) proxy classes from wsdl scheme http://hh.ru/services/VacancyService?wsdl but I receive an error: The global element ...
1
vote
0answers
195 views

Error importing a WSDL in SoapUI

I'm getting this message when attempting to create a new SoapUI project and import a WSDL for Web Service Simulation. The error message seems incomplete as it does not actually say what tag is not ...
1
vote
0answers
36 views

Change default extension for WSDL resources in SoapUI

We have an old web service which is defined to expose its WSDL via the URL pattern //service/getorderservice.wsdl, however when we try to use SoapUI to mock this service, it tries to use the following ...
0
votes
1answer
147 views

soapUI/Message Broker - Test flows based on SOAP

This one may be simple, but can't find it. I understand that flows with SOAP nodes (SOAP Input for example) are exposed as web services in Message Broker. How can I consume them with soapUI?
0
votes
2answers
306 views

soapUI - Use WSDL from Websphere Message Broker

I'm doing a project with WebSphere Message Broker which results in 2 BAR files. One the client and the other the server. Both are deployed in a broker in a remote location (a server upstairs). The ...
0
votes
1answer
307 views

How to customize soapUI library to generate request & response from WSDL?

I am developing a module which will take a wsdl & generates request & response documents. For this I am using soapui library as mentioned in this code Post package com.bbog.soap; import ...
0
votes
1answer
103 views

How to add WS-Security Header in GreenHat Tester?

Am trying to send a SOAP SONAR request using GreenHat Tester, but end up with the error below: <faultstring>WSDoAllReceiver: Incoming message does not contain required Security ...
0
votes
1answer
379 views

Magento API not working with wsdl.exe but works with Soap UI

I'm trying to integrate Magento 1.7 with a C# application. When I tried to use the "Add Service Reference" function in Visual Studio, it finds the service and all the operations but when I click OK, ...
1
vote
1answer
604 views

How to access xsd file from a http wsdl url?

I have wsdl URL. But testing it by code is a big ask. So found SoapUI and thought it could mock up data for calling it easily and find the right set of parameters. I saved the wsdl url output from ...
-1
votes
2answers
362 views

Determining endpoint from a WSDL file [closed]

I'm new to web services and have been tasked with trying to write some packages in PL/SQL that make requests to an external web service to allow customers to view their current support tickets and the ...
1
vote
2answers
193 views

Empty request tags in SOAPUI

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <soapenv:Header/> <soapenv:Body> ...
2
votes
1answer
281 views

SoapUI testing with Android and byte arrays

I am trying to do some SOAP testing and I can't find out how to pass a byte[]. I use SoapUI for the tests. I pasted the WSDL and I was able to see the available requests in the list. The WSDL link ...
0
votes
1answer
431 views

How to generate requests and responses for all operations of a WSDL in soapUI using a groovy script?

I have a WSDL which has multiple operations. For each op i want a template .xml with its response and request. I know how to do this manually in soapUI but I would like to generate them using a ...
0
votes
0answers
140 views

reportservice2005.asmx?wsdl soapui

I am trying to use web services to present some data from reporting services to users. I can browse to http://servername/reportserver/ReportService2005.asmx?wsdl In IE and see the wsdl as ...
1
vote
2answers
363 views

Soap IU. How to validate request before sending it?

I'm testing some web services and i need to validate request (xml message) against wsdl before sending it. In Pro version of Soap UI using GUI i can do it (alt-v), but i can't do it automatically. i ...
0
votes
1answer
939 views

SoapUI Setting a cookie session

I am using SoapUI to test my Soap requests and responses. The problem is that I was given 2 WSDL urls, so I had to create two separate projects, and the second project relies on cookies from the first ...
0
votes
0answers
724 views

SOAP UI Call to MS CRM 4.0 Webservice

We are trying to call the MS CRM 2011 Webservice from a non .NET environment. Since calling the 2011 Webservice end-point seems extremely complicated from Java, we are trying to call the 2007 ...
0
votes
1answer
118 views

Concerns with SoapUI Pro when Updating Web Services

This may unfortunately be a very open-ended question, but a coworker of mine has shared concerns about using SoapUI Pro as our automated regression testing tool primarily on the basis that seemingly ...
-1
votes
1answer
274 views

Namespace prefix getting changed from request to response

I developed one service using websphere application server and Rational application developer(RAD) . I am using SOAP UI to unit test my service. The service is well deployed and getting the accurate ...
4
votes
1answer
495 views

generic soap client tool

I have created a soap service which I want to test.But I dont want to create a soap client for testing it.I am looking for some tool which can parse wsdl and give list of parameters which can be ...
1
vote
0answers
280 views

Getting “Error: Generic Error. Could not generate specified XSD file!” while trying to get dependent xsd of a wsdl file

I have an EJB Session bean exposed as a webservice: @Stateless @WebServiceProvider( targetNamespace = "http://WSCreateAccountMovementListRequest.ws.mybank.ru", ...
0
votes
0answers
292 views

soap ui tests automation

I've developed a web service and corresponding test suit using soap ui 4.5.0 (NOT pro version). Now I'd like to run tests from the command line using Ant. Here is the ant script that was generated by ...
0
votes
1answer
270 views

maven-soapui-pro-plugin: parameterize WSDl location

I am trying to start an embbeded soapui mock webservice using the maven-soapui-pro-plugin plugin. This works perfectly on my local machine but will obviously crash on the continuous integration ...
1
vote
2answers
1k views

How to define key store in SOAPUI

How to define key store in SoapUI it is giving error invalid keystore format. Which file i to define for that.
1
vote
3answers
9k views

soapUI failed to load url error when loading wsdl

I am new to SoapUI and I keep having some weird problems: The main one is that I keep getting the following error when trying to add a WSDL to a new project: Error loading [https://.../token?wsdl]: ...
0
votes
1answer
119 views

SOAP request multiple stock prices

I need to look up a list of stocks from the GetStockQuote WSDL and save all the fields into a database. Right now I'm just trying to write the SOAP message that will return the results for multiple ...
1
vote
0answers
145 views

CakePHP can't return value in array (soapUi)

I have some function in cakephp like this /** * Get one record * @param string $type * @return string[] */ function readType($type = NULL) { $arr[] = array( ...
0
votes
1answer
247 views

SOAP Operation with same Input and Output Messages Produces Odd Proxy Method Signature

I've imported a WSDL File (Checks out fine with SoapUI) and Most of the functions work as expected. The Problem I'm having is with a few Operations that have the SAME Input Type as Output Type. ...
-1
votes
1answer
500 views

Removing all namespaces in the xml and valid per wsdl

Again I am back with a question related to the same wsdl, this time wanted to remove all namespaces in the request, and conforming to the wsdl. The same wsdl tripservice wsdl from the link ,simply ...
1
vote
1answer
355 views

In a WSDL file, can the XPath of a response element be determined without invoking the service?

In a WSDL file, can the XPath of a response element be determined without invoking the service? I mean just by looking at the wsdl content is it possible? If so what tools are there which makes it ...
-1
votes
1answer
35 views

having issue with SOUPUI and WSDL in method response

I am getting error as "Function 'testMethod' doesn't exist" in SOAP UI method response. Method is there in php file as well as in WSDL
0
votes
1answer
535 views

Consuming a webservice and changing an endpoint with SOAPCLIENT

I am consuming a third-party webservice and I'm using soapUI to test it. I was advised to load the WSDL, leave it untouchted, then change the endpoint in SOAPUI before executing the calls to the ...
0
votes
1answer
922 views

Use XSLT to process WSDL and generate SOAP requests

Can I read WSDL and generate soapUI-like requests using XSLT? Could you provide a template?
0
votes
1answer
343 views

JDeveloper ABCS problem

So I have created an ABCS BPEL process in JDeveloper, it compiles without any errors. I'm trying to test it via soapUI but I am getting the following error: <env:Envelope ...
0
votes
1answer
3k views

soap ui add wsdl problem

I am using Websphere Message Broker to create web services. I have two services and two wsdl. One of them has no issues and I am able to add WSDL through soap ui. The other webservice's wsdl is ...
0
votes
1answer
434 views

How do I add a SOAP template from XSD in soapUI when XML extension is in place?

I need to make a large number of SOAP test cases to automate the testing process of an application. Currently, the architecture requires that a single "generic" SOAP method is invoked with an object ...
2
votes
3answers
3k views

Retrieving data from WSDL webservice in PHP

I'll start out by saying I have no idea what so ever about what I am trying to do. My PHP skills is -beginner- and my experience with webservices is NULL. I have a WSDL URL ...
0
votes
1answer
926 views

sending message through soapUI

I opened my wsdl file locally with soapUI(not using my localhost url but directly showing the wsdl from my harddisc, using localhost url can not find schemas..!) Anyway, it has loaded the wsdl, how ...
2
votes
1answer
1k views

Testing WSDL in Visual Studio

We have received a WSDL from our client that we use to communicate with their service. I have made a service reference to it in our project, and had developed the code to interact with it. I have ...
5
votes
4answers
13k views

WSDL/SOAP Test With soapui

I have tested my web services (wsdl/soap) with soapui. and i have the errors : http/log : error 400 BAD REQUEST. What can be the error please with my wsdl ? error/log : un Jun 05 14:10:37 CEST ...
1
vote
1answer
576 views

how to get the functionality of SoapUI in to an Android project

i am developing a project where i need to read a wsdl and convert it to a soap request. using SoapUI i can achieve what i need and also there is another eclipse plugin but they all are tools kind of ...
0
votes
1answer
1k views

What's missing in my WSDL?

Hi I created a web service, and I've been testing it with SoapUI successfully. But whenever I try to generate the client in Rational Application Developer, Visual Studio or even in SoapUI I keep ...
0
votes
1answer
655 views

Oracle's jDeveloper seems to ignore declarations in a WSDL when calling an external web service?

Oracle's jDeveloper seems to ignore ignore declarations in a WSDL when calling an external web service and I'm not sure why...? We are trying to consume a third party web service found using this ...

1 2