2017-06-04 363 views
0

我正在使用SOAP接口作为处理遗留系统上的数据的一种方式。我需要验证使用此系统中的信息的用户。我发现了以下作为Laravel的部分(5,4)安装使用SOAP进行laravel身份验证

应用\设置\ auth.php

| All authentication drivers have a user provider. This defines how the 
| users are actually retrieved out of your database or other storage 
| mechanisms used by this application to persist your user's data. 

我制成SOAP的在Laravel工作演示(所以它从所需的表中获取数据)。我使用了这个:https://github.com/artisaninweb/laravel-soap它似乎工作到目前为止......

对于身份验证系统,我需要在Laravel中进行哪些更改,以便它能够识别从SOAP检索的行而不是从DB中获取的行? TIA

回答