Browse by Tags

All Tags » XML and Webservices (RSS)

RAD7 - java.io.IOException: FATAL ERRORS encountered by WSDL2Java tool.

I was encountering the error below everytime I tried to invoke a WS client in RAD7. I was calling the WS through a console application using a generated client stub. Deployment error: java.io.IOException: FATAL ERRORS encountered by WSDL2Java tool. at...
Posted by lamia | with no comments

My observation on how a JAX-WS Webservice is deployed to Tomcat when creating a Webservice End-Point in Netbeans

I was playing with Netbeans today and wanted to see how I would be able to deploy a Webservice. I started by importing all the required Jar file. I used a wizard(Library Manager) so all the required Jars were already placed on my behalf. If you want to...
Posted by lamia | 2 comment(s)

Web service = WSDL + SOAP + UDDI

And so it was said on the Mastering Enterprise Java Beans 3.0 , chapter 5. I didn't understand the relationship of UDDI with Web services. If I understand it right, UDDI is some sort of directory lookup if a a webservice is availbale on a given end...
Posted by lamia | with no comments
Filed under:

WSDL Hell

The usual way of making a webservice client in Java is by feeding Axis's WSDL2JAR tool or Using the Eclipse/Netbeans IDE with a URL that looks something like http://someurl.com/webservice.aspx?wsdl . Alternatively, you could use a WSDL file. I thought...
Posted by lamia | with no comments

You just need to annotate - Creating webservices with Java

I have to admit... I can write a webservice(server) in .Net(with attributes) but not in Java. Why? Because writing one seems so hard... Ah ah ah! That was before! Because of this anxiety I tried to key in google for "webservice annotation" and...
Posted by lamia | 11 comment(s)

Accessing a .Net webservice from a Java client

Hmmm... Where is the code selector Keith? Anyway, I'm here to show how a .Net webservice and a Java client(in this case, a method in my JSF project) can inter-operate. Ok, I'm no C# coder. So the code I will be posting here will be a code made...
Posted by lamia | 2 comment(s)

Fun with Java Webservices with Apache Axis part I

I've been doing an internal project for my company. I had this idea of just connecting to our existing HR system to retrieve some employee records instead of creating another database table. Well, far so good. Thanks for Cruizer and Keithrull's...
Posted by lamia | with no comments