Is it somehow possible to create mock service in soapUI without having wsdl file? All I have is sample request and responses.
I think that should be possible to generate WSDL from request and response examples with soapUI but I'm not able to find any tutorials about it.
...
My organisation is getting into the SOA world (a bit late, but that's what it's like here!) and we're looking into the ESB Toolkit 2.0 (we already have BizTalk Server 2009).
We're keen on implementing UDDI (specifically, the UDDI Services v3.0 that ships with BTS 2009), but we're low on actual UDDI experience. We want to manage the ever...
Hello.
I've a web-service that works fine when I access them from a J2SE (desktop) application. To access this service I do follow:
generate stub classes by wsdl link using java wsimport tool
then I create service using generated classes and run one of wsdl operations.It looks like this:
MyWebServiceService webService = new MyWebServ...
Hello,
I am programming a WebService in Java that create and call this class :
public class Manager{
private Connection aConnection;
public CacheManager(){
//We get a connection
aConnection = java.sql.DriverManager.getConnection("jdbc:mysql://localhost/mydb?user=root&password=";
...
I have a .NET web service that returns XML, and I'd like to compress this before it is sent.
There's a couple of ways that I can do this, but I'd rather not have to do it in code.
Can I set up IIS to gzip all content returned by my WebService? It's not being called from a browser.
The other question is if this web service is being co...
Hi,
I'm having extremely painful difficulties to have wsimport working to
generate my client classes, as per the following method:
1/ I open my endpoint/URL in a web browser,
2/ I copy-paste the contents of this page in a .wsdl file,
3/ and I try to yield the classes by running wsimport against the file
I've just created => it fails.
...
To create a client-server GAME applications in Flash, which would be more practical to use and faster in terms of client-server data exchange:
a. web services (flash / flex the client and PHP the server)
or
b. socket connection (flash / flex the client and C / C + + the server)
Any help is welcome.
Thanks.
...
Hi!
We wrote a quite complicated application using a JSF + Spring + Hibernate.
It has many business process. There are different kind of users (and roles).
Users have to fill many forms and when all the forms are validated the
"order" is sent to the server and it will be processed by another kind of user.
Now we have to write webservice...
I have a site in development with several web services (ASMX) that post important data to my database. When I navigate to the ASMX file in my browser, I can fill in the form with the parameters and post to the DB. If someone finds the URL to my WS, they can severely alter my database. I want to prevent people from being able to post to m...
I'm interested in learning more about contract-first web services, including how to put them together.
Can anyone recommend useful resources that explain the needed aspects/components and how to produce them?
Can anyone recommend frameworks in addition to or as an alternative to Spring's contract first web services?
Thanks.
...
Hi there, I'm running jboss-4.2.1.GA to generate WS requests.
I have created the WS client with the help of JWSDP-2.0/JAXRPC. I have deployed the client to Jboss and I am now trying to send requests.
When I try to initialise the client service: javax.xml.rpc.Service service = servicefactory.createService(new URL(wsdlURL), serviceQN), J...
I added a column to a sharepoint document library, is there any way using the SharePoint Webservices to retreive the value in that column for a particular item?
(I'm currently using the GetListItems() from the Lists web service, but see no sign of my column)
...
I use Java Persistence, and I want a web method to return a 'portion' of an Entity class. For example, I have a Customer class that represents a record in Customer table with many fields, but I want to return just few of them. Is it possible to use mapping to do that? Or the only way is to create a new class (maybe a superclass for Custo...
I am writing an application in Delphi 2007 which consumes a web service. I used the WSDL importer to generate the necessary code to communicate with the service, but I'm getting "unexpected subelement (elementname)" errors when trying to use the service.
Using Fiddler 2, I've found that the problem is that an xmlns is being added to an...
I have a web server which contains a list of "interesting locations". These are "hard coded" on the web server, and maintained from an administrator on the server-side. Users can't add or remove anything.
From within my app, I want to make a button "fetch locations", and the app should then contact the web server and ask for that "inter...
I am just teaching myself about web services right now and trying to run a helloWorld. I think that to setup all of the web service stuff I need to run apt.
I am running it like this:
apt HelloImpl.java -classpath /<path>/jsr181-api.jar
But I am getting a warning (see below). Do I need to specify an annotation processor too? I t...
Hello:
I am having a heck of a time getting my web service client talking to my web service which is protected by requiring client certificates. I am using JAX-WS 2.1 and the web service request first goes through IIS before being forwarded on to JBoss following authentication.
I am using a self-signed certificate for the client certi...
I feel the term "webserver communication" is not right when it comes to just accessing an server to retrieve information.
Example:
iPhone connects to http://foobar.foo/bar.php?foo=bar&bar=foo and receives an XML. XML is parsed on the iPhone.
iPhone connects to some server and sends some instructions + data to store some stuff ther...
I'm confused by the terms. When I make an PHP application that
1) can be called with an URL or HTTPRequest, with parameters (i.e. country id), and returns data (XML or anything else)
2) can be called in order to store data (i.e. user wants to store all his contacts online on the server)
Is that still ok to call this thing a "Web Servi...
I have a web server which returns an XML file. Lets say http://www.foo.bar/foo.php?wantXML=1
How would I fetch that file from the server and then parse it to access the data? I guess I would have to spawn a new thread and do the whole thing in the background to not block the UI? What classes must I look at?
...