留言板

Accessing Web Service

jaya lakshmi,修改在9 年前。

Accessing Web Service

New Member 帖子: 4 加入日期: 14-10-10 最近的帖子
Hai Have a nice day to all,
I have wsdl which one from client but i dont know how to access these methods and how to check this methods communicating or traversing data and get response from one server to another server.

Can you please anyone help me.


Regards,
Jayalakshmi A.
thumbnail
Miroslav Ligas,修改在9 年前。

RE: Accessing Web Service

Regular Member 帖子: 152 加入日期: 14-7-29 最近的帖子
This may help you to understand the concepts. https://www.liferay.com/documentation/liferay-portal/6.1/development/-/ai/soap-web-services

Liferay also provides a portal-client.jar that makes use of SOAP a little bit easier.
jaya lakshmi,修改在9 年前。

Accessing Web Service

New Member 帖子: 4 加入日期: 14-10-10 最近的帖子
Thanks Mr.Miroslav Ligas
I saw the concepts but i need step by step process to check the web service is working or not.
Could you help me.


Regards,
Jayalakshmi A.
thumbnail
Miroslav Ligas,修改在9 年前。

RE: Accessing Web Service

Regular Member 帖子: 152 加入日期: 14-7-29 最近的帖子
I think this blog post sums it up https://www.liferay.com/web/antonio.junior/blog/-/blogs/consuming-liferay-web-services. It's a little bit older but it is still applicable to 6.2.

If you need steps to use 3th party WS in liferay portlets the google for any WSDL 101 tutorial (e.g. http://www.itk.ilstu.edu/faculty/bllim/itk353/web_services_101_VWP.htm).
jaya lakshmi,修改在9 年前。

RE: Accessing Web Service

New Member 帖子: 4 加入日期: 14-10-10 最近的帖子
Thanks Mr.Miroslav Ligas

I will check and update the status.

Regards,
Jayalakshmi A.
jaya lakshmi,修改在9 年前。

Accessing Web Service

New Member 帖子: 4 加入日期: 14-10-10 最近的帖子
Now i get data from server by using web service methods, but i used web service methods cant able to push data to that server.
If i am checking it will shows updated or changed but that changes not push and store into server.
The communication between client and server is not good only get data not able to push the data from here to there.
Anyone pls help me.


Regards,
Jayalakshmi A.
thumbnail
David H Nebinger,修改在9 年前。

RE: Accessing Web Service

Liferay Legend 帖子: 14919 加入日期: 06-9-2 最近的帖子
While the standard Liferay SOAP methods sometimes suffice, I usually prefer to build my own web service layer using SB. You get to move the business logic to the server side and bundle calls together rather than trying to invoke separate individual calls using the client tier. It also allows you to expose some functionality (i.e. add logic) that may not be visible through the standard API.

As far as pushing data goes, if you're looking at this like some sort of batch data transfer mechanism, you're going to be sorely disappointed. The overhead involved with invoking all of the web service layer to populate data makes it a poor-performing batch update mechanism.