掲示板

Accessing Web Service

9年前 に jaya lakshmi によって更新されました。

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
9年前 に Miroslav Ligas によって更新されました。

RE: Accessing Web Service

Regular Member 投稿: 152 参加年月日: 14/07/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.
9年前 に jaya lakshmi によって更新されました。

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
9年前 に Miroslav Ligas によって更新されました。

RE: Accessing Web Service

Regular Member 投稿: 152 参加年月日: 14/07/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).
9年前 に jaya lakshmi によって更新されました。

RE: Accessing Web Service

New Member 投稿: 4 参加年月日: 14/10/10 最新の投稿
Thanks Mr.Miroslav Ligas

I will check and update the status.

Regards,
Jayalakshmi A.
9年前 に jaya lakshmi によって更新されました。

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
9年前 に David H Nebinger によって更新されました。

RE: Accessing Web Service

Liferay Legend 投稿: 14916 参加年月日: 06/09/02 最新の投稿
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.