Forum Discussion
You are gving hope to continue with this. Thanking you.
Yes. Authuntication paramerters has some other Webservices and other method below is the code:
Dim TypeFactory1
'Get the type factory for the web service
Set TypeFactory1 =
WebServices.LoginService.TypeFactory
Set UserVO = TypeFactory1.UserVO
UserVO.userName="Admin"
UserVO.password="password"
UserVO.ipAddress="10.10.10.10"
UserVO.portalId=1
But how i can add this Object(UserVO) to the below Service/method
Dim TypeFactory
'Get the type factory for the web service
Set TypeFactory =
WebServices.FleetManagementService.TypeFactory
Set HomeGprsIpVO = TypeFactory.HomeGprsIpVO
HomeGprsIpVO.gprsId=null
HomeGprsIpVO.ipAddress="192.168.1.1"
HomeGprsIpVO.lastUpdated=""
HomeGprsIpVO.name="Praveen"
HomeGprsIpVO.port="5005"
HomeGprsIpVO.status=1
HomeGprsIpVO.updatedBy=null
res=
WebServices.FleetManagementService.createHomeGPRSIP(HomeGprsIpVO)
Now i have UserVO, HomeGprsIpVO two objects.
I can't pass UserVO to the above service , because it can't support.
Please advise.
Related Content
Recent Discussions
- 3 years ago
- 3 years ago
- 4 years ago