0
votes
0answers
47 views

Received error response from long request web service

We have the following problem. There is an application with web services (client) on Apache CXF and under JBoss AS7. There are 3 scenarios: I am sending a request through our application with a ...
0
votes
0answers
29 views

Java API not getting SOAPHeader from SOAP Request

I have developed a webservice in java using Metro RI( Along with an AuthenticationHandler), But when I am sending a SOAP request to the webservice, I am not able to get the SOAPHeader in the ...
0
votes
1answer
19 views

Maven is unable to resolve class testlink.api.java.client.TestLinkAPIException

I am running a SOAP UI project through maven using the eviware maven-soapui-plugin and I am getting some unresolved class for TestLink. I believe that soapui is configured to update TestLink ...
0
votes
0answers
13 views

soapui HTTPMonitor blocking static resources?

I am creating a soapUI project that acts as a proxy for a java web application, so that I can monitor HTTP calls. However when I try to use the web front end ,I get the following error : ...
0
votes
0answers
17 views

MockService SoapUi Pro return response based on condition

I would like to add a condition to my mockservice in SoapUI Pro. At the moment there are two possible responses, returning either true or false. Based on the content of <TAG> ...
0
votes
0answers
55 views

add default request-response to TestSteps created with SOAPUI java api

I want to create a TestSuite programmatically using java api. My code is shown below. WsdlInterface service = ifaces.get("my service"); WsdlOperation operation = service.getOperationByName("my ...
1
vote
1answer
29 views

Terms of conditions for soapui-4.5.1.jar and xmlbeans-2.4.0

I'm going to use java libraries soapui.jar and xmlbeans.jar from maven repository http://www.soapui.org/repository/maven2/eviware What licence they are under? Can I add them to my web application if ...
0
votes
0answers
43 views

soapUi bad certificate

Trying to test an endpoint I got the certificates from client created a keystore and added the keystore to the project setting. Now I get Received fatal alert: bad_certificate please help.
0
votes
1answer
355 views

Downloading file via Web Service using Apache CXF

I try to develop Web Service which send file from server to client. I use Apache CXF for developing Web Serivce. Application is Spring based. First I tried to write simple test code: ...
0
votes
0answers
166 views

AxisFault SAXException Bad envelope tag: html when calling generated web client methods

I have generated client code for a 3rd party web service using the WSDL which they provided (I am unable to publish it here), using eclipse and Axis 1.4. This all seems to work ok (I have got services ...
3
votes
3answers
347 views

SoapUI vs Java Web Service Client

If a SOAP web service is working well via SoapUI (producing the correct SOAP responses), while building a web service client in Java using different APIs/frameworks to call this web service is facing ...
0
votes
0answers
74 views

WADL testing returning 404

I am trying to test a RESTful service using SOAP UI. The service is just a hello world code which accept the username at the end of the URL, invokes @GET method in the service and returns a String. I ...
1
vote
0answers
45 views

Web service discovery required Java

I am tasked with developing something like this: We have 3 or 4 web services which we host on JBoss, and would like to allow users to test the service. But SOAP UI is too technical for the users so ...
1
vote
1answer
133 views

Java wrong timezone

As can be seen below, system time and SoapUI's time value is different. SoapUI using JRE time and that's why it should be a bug of Java's itself because; also below code gives: Venezuela Time ...
0
votes
1answer
72 views

Hanging thread in SOAPUI Tests in Java app

I am trying to execute my SOAPUI test suites through a Java app rather than on the UI. However, when creating a WSDLProject a thread is starting that never gets killed, so when my code is executed and ...
0
votes
1answer
145 views

Load external request file in soapui java API

I'm usign SOAPUI API for java and this is a fraction of my code for (Operation operation : wsdlInterface1.getOperationList()) { operationString = WSDL + ":" + wsdlInterface1.getName() + ":" ...
4
votes
2answers
327 views

POST using SOAPUI works. Manual Java client using Apache HttpComponents HttpClient doesn't. Throwing server error. SSL related?

Please note that I've tested the following in SOAPUI and it appears to work as expected (i.e. returning a 200 status) using the same URL and Authorization credentials. The fact that it works OK in ...
0
votes
1answer
284 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
151 views

spring-ws get username & password

I've been learning spring-ws for little over a week and I've set up a simple web service. I'm testing it using soapui and specifying a username and password in the request properties. My web service ...
0
votes
2answers
396 views

Authentication in SOAP UI while testing web services

I am using SOAP UI for testing the web services. In the Authentication tab, I have entered the username and password and domain name. Sample: WSDL URL: http://localhost:8080/soap/helloTest?wsdl ...
0
votes
0answers
177 views

SOAP web service and Spring Security

I'm trying to secure a SOAP web service with Spring Security 3. This is my configuration: <jee:jndi-lookup id="dataSource" jndi-name="jdbc/myDB" expected-type="javax.sql.DataSource" ...
2
votes
3answers
180 views

Spring WS has trouble with namespace declaration for schema instance

This is my request Envelope, with the xsi:xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" declaration put in my myRequestMethod XML tag: <soapenv:Envelope ...
1
vote
1answer
144 views

SOAPUI Rest service error

I have a Jersey Rest service running on Glassfish. When I test my service from Firefox by simply typing the URL, I can GET the expected result as json on browser. I wanted to test the same method ...
1
vote
1answer
218 views

How to populate soap request parameters from a properties or an xml file?

I am building web service testing framework. I am doing integration testing using soap ui (not pro).I have an ant script which runs my test runner. This is how my test runner looks like : public ...
0
votes
0answers
139 views

consuming web services without having concrete classes for method parameters

I need to dynamically explore and consume any web service(call its methods) with given .wsdl location, service url, service name, method name and method parameters without having any concrete java ...
0
votes
0answers
91 views

script works in Eclipse but not in soapUI?

I'm currently trying to automate a test case using Selenium. It runs successfully when being run in Eclipse, but it fails upon a page load in soapUI. The click to trigger page navigation is ...
0
votes
0answers
124 views

Different output in java than SoapUI with same input

Hi I am using to see the response of the invoked web service in my java console using Xstream like XStream xstream = new XStream(); String xml = xstream.toXML(webServiceResponce); ...
3
votes
2answers
100 views

Cannot invoke any operation required authentication even after correct log-in

I use the XTRF API version 1.3 at URL http://[security]/translationManagementService/PartnerWSAPI and SOAP UI 4.5 for simulation of client actions. I'm able to successfully login (get no error ...
1
vote
1answer
214 views

soapui - warning - No grammar constraints (DTD or XML schema) detected for the document

In my soapui xml, following are the first 2 lines (with whitespace added for legibility). <?xml version="1.0" encoding="UTF-8"?> <con:soapui-project name="Project_sample" ...
0
votes
0answers
185 views

LoadUI SSLPeerUnverifiedException: peer not authenticated

I'm doing functional and load testing for my web services using soapUI and loadUI. Even though it's working fine in soapUI, running the soapUI test suite in loadUI gives me the error: ...
0
votes
3answers
2k views

Getting JVM error after SOAP UI installation

I am trying to install SOAPUI tool. After the installation, when executed, I amm getting this error: The JVM could not be started. The maximum heap size (-XMx) might be too large or anti virus ...
0
votes
1answer
774 views

SOAP - don't know what my endpoint URL is

I hope this problem is extremely simple and it's just me being an idiot. I am new to SOAP and am attempting to set up a SOAP WebService (using Java and Spring) and then using the tool SoapUI I attempt ...
0
votes
0answers
2k views

SOAP UI PRO 4.0.1

After importing new soapui project. .. I given project name and Initial WSDL .. After that I get the authentication page.. I entered the credentials. But its seemed to the following error... ...
1
vote
0answers
390 views

Mutual SSL working with soapUI but not standalone Java client

I am trying to get mutual SSL working from a Java client. My soapUI configuration works where I have specified keystore and truststore in WS-security configurations. When I do the same with a Java ...
0
votes
2answers
847 views

Unable to access webservice using SOAP UI for requests sent through a webserver which is protected by Siteminder

We have a webservice hosted on Tomcat app server which is fronted by a Apache webserver. This webserver is protected by sideminder . The webservice is implemented using JAX WS 2. When i try to access ...
0
votes
1answer
440 views

Using Java to connect to SOAP UI Mock Web Service

I have a mock web service running in soapUI 4.5.1 which looks up peoples names and addresses. I have a large dataset of names and addresses in a .txt file which I need to search for and verify with ...
0
votes
1answer
643 views

Null response object from Java Web Service

I tried running the Web Service as a java application by adding a main method in the service, i got all the model values getting populated perfectly. There are some DAO operations with Oracle 10g DB, ...
0
votes
1answer
450 views

Groovy script to get the request xml

I can get the response xml using Groovy script. I need to get the request XML since I need to add 'assertion script' to my soap ui testing. I am using the following code to get the response xml def ...
0
votes
2answers
499 views

Groovy syntax to parse data from XML

I need to get the value 3 from the below xml file using groovy script. I am testing from SOAPUI <ParamId>3</ParamId> Can anyone please share me the syntax to get the value? I tried the ...
0
votes
1answer
155 views

Selenium read testdata from file?

I'm launching some tests in the webservice test tool soapUI. Also I want to use Selenium for visual assertions. I can define a datasource for soapui, eg a textifle, xml, csv, excel etc. How can I ...
0
votes
0answers
153 views

WebServices:getting an error org.xml.sax.SAXParseException

When i try to invoke the webservices of passing parameter as certificate chain and signature which digitally signed and base64 encoded. Now i am getting error such as Error Message 4 ; nested ...
-1
votes
1answer
426 views

How to attach the Xml file in Soap-UI

I have plugged-in SoapUI in Eclipse. I need to Know how to attach the Xml Files in SOAPUI. Pls help me... Thnks in Advance Regards Michael-aes
0
votes
0answers
140 views

WebServices: how to convert a Zip file into a octet Stream

I am working on soap webservices .I have given a third party wsdl url in which i need to generate client code . My query is i need to pass zip file which contains bundle of xml which the passing ...
0
votes
1answer
481 views

Simple test setup with Selenium WebDriver fails

I'm just trying to execute a basic selenium test. Nothing special, just to make sure it works. BUT is throws an exception. What could I be doing wrong? Of course I started the server using: java -jar ...
0
votes
0answers
324 views

converting soapui to java code with header for android

i am having a problem with a SoapUI transfer to Android java to include some headers, at the moment i have this part and it's not working, is there something wrong? this is the request i wrote in ...
1
vote
1answer
119 views

VMWare API to get events

I need to fetch events from a virtual machine in Groovy. I found this java class that apparently lists events and allows me to filter them but it's getting too complex and I don't think this is what I ...
0
votes
1answer
852 views

Axis2 receive MTOM attachment no datahandler found error

For a project I'm implementing a SOAP service using Apache Axis2 1.6.2. I have a service which needs to receive a file using MTOM. But sadly I keep having issues with receiving a MTOM attached file. I ...
0
votes
1answer
269 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
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
138 views

Unauthorized Rovi TV Listings Service Soap 1.2

I am using soap UI to test the webservice by giving the credentials but its always displaying a message "unauthorized". Could any one please let me know why is this happening? I am trying to ...

1 2