CAA Web Services Home |
|
Consuming the ENOVWSLCMgmtCpp CAA Web ServiceUsing the ENOVWSLCMgmtCpp CAA Web service for lifecycle management |
Use Case |
AbstractThis article discusses the CAAENOVWSDotNet1_1Client use case. It describes how to use the C# client binding that can be generated using the wsdl.exe utility in order to consume the ENOVWSLCMgmtCpp CAA Web service. It provides a sample usage scenario that demonstrates how to handle lifecycle management. |
This use case demonstrates how to write a client application that consumes the ENOVWSProdStructCpp CAA Web service. It helps you to:
[Top]
CAAENOVWSDotNet1_1Client is a use case of the CAAENOVWS.edu framework that illustrates the ENOVWSLCMgmtCpp CAA Web service capabilities.
[Top]
The sample usage scenario delivered with this use case contains the following steps:
The ENOVWSLCMgmtCpp CAA Web service is used in support of the primary objective of this use case, which is to get and apply transitions using the ENOVWSLCMgmtCpp CAA Web service.
[Top]
The CAAENOVWSDotNet1_1Client use case is made of several classes located in both CAAENOVWSDotNet1_1Client.m and CAAENOVWSDotNet1_1ClientBase.m modules of the CAAENOVWS.edu framework:
<Install>\CAAENOVWS.edu\CAAENOVWSDotNet1_1Client.m\src <Install>\CAAENOVWS.edu\CAAENOVWSDotNet1_1ClientBase.m\src
|
<Install>
: the root directory where the CAA CD-ROM is installed.
The CAAENOVWSDotNet1_1ClientBase.m module (library) contains the following resources:
<Source>\CAAENOVWSLCMgmtCppProxy.cs |
<Source>
:
<Install>\CAAENOVWS.edu\CAAENOVWSDotNet1_1ClientBase.m\src
.
The CAAENOVWSLCMgmtCppProxy.cs file contains the C# client binding generated using the wsdl.exe utility. A C# client binding consists of a proxy and several types definitions. The CAAENOVWSLCMgmtCppWrapper.cs file contains a class that describes how to configure the generated proxy and how to invoke its methods.
The CAAENOVWSDotNet1_1Client.m module (executable) contains the following resources:
<Source>\CAAENOVWSDotNet1_1Client.cs
|
<Source>
:
<Install>\CAAENOVWS.edu\CAAENOVWSDotNet1_1Client.m\src
.
The CAAENOVWSDotNet1_1Client.cs file contains the main program. It parses the command line inputs and starts up the use case. The CAAENOVWSLCMgmtCppUseCase.cs file contains the sample use case scenario.
[Top]
To run the CAAENOVWSDotNet1_1Client use case, you will need to build both CAAENOVWSDotNet1_1ClientBase.m and CAAENOVWSDotNet1_1Client.m modules. The use case code can be built using either the CAA V5 buildtime environment, or Visual Studio .NET 2003 as explained in [1].
You can then execute the command described below:
CAAENOVWSDotNet1_1Client -w <URI> -e <ENOVIA username> -u <Basic
Authentication username> -p <Basic Authentication password> -t
ENOVWSLCMgmtCpp
|
<URI>
: is the root URI of the Web application where the ENOVWSLCMgmtCpp CAA Web
service is deployed,
<ENOVIA username>
: is a valid username declared in the ENOVIA P&O database,
<Basic Authentication Username> and <Basic Authentication Password>
:
are a valid set of credentials for authentication on the remote Web server.
Here follows a sample command, to be updated with your own environment configuration:
CAAENOVWSDotNet1_1Client -w http://stophe1dsy.dsy.ds:9080/B17 -e cjk -u wpsadmin -p wpsadmin -t
ENOVWSLCMgmtCpp
|
The same executable is used to launch all of the available ENOVIA CAA Web services use cases. The -t
option is used to choose the target use case to run.
When building the modules with the CAA V5 buildtime environment, the CAAENOVWSDotNet1_1Client executable can be launched from the following location:
<Install>\CAAENOVWS.edu\intel_a\code\clr
|
<Install>
: the root directory where the CAA CD-ROM is installed.
[Top]
The following section first explains how to generate the C# client binding for the ENOVWSLCMgmtCpp CAA Web service demonstrated. The remaining sections describe how to configure the generated proxy and how to consume the Web service:
[Top]
Please refer to [2] for details on how to generate the C# client binding using the wsdl.exe utility.
Here follows a sample command in order to generate the C# client binding for the ENOVWSLCMgmtCpp CAA Web service:
wsdl /namespace:com.dassault_systemes.caaenovws.caaenovwsdotnet1_1clientgen.enovwslcmgmtcpp
/username:wpsadmin /password:wpsadmin /out:CAAENOVWSLCMgmtCppProxy.cs
http://stophe1dsy.dsy.ds:9080/B17/wsdl?service=urn:com:dassault_systemes:ENOVWSLCMgmtImpl:ENOVWSLCMgmtImpl:ENOVWSLCMgmtCpp
|
The server name, port, and context root URI information must be updated to match the server where the
ENOVWSLCMgmtCpp CAA Web service has been deployed. The /username
and /username
options
are required to authenticate on the Web server hosting the Web service.
[Top]
In order to consume an implementation of the ENOVWSLCMgmtCpp CAA Web service deployed on a target Web server, you first need to instantiate the proxy generated using the wsdl.exe utility. This proxy must then be configured in order to manage authentication on the remote Web server, timeout, and session management. Maintaining the HTTP session state is mandatory when consuming ENOVIA LCA V5 CAA Web services.
The generated proxy class is used in order to marshall method calls and objects to SOAP requests, and to unmarshall SOAP responses to objects. The following code describes how to instantiate and configure it:
public class CAAENOVWSLCMgmtCppWrapper {
|
(1): in order to maintain the HTTP session state between successive calls performed using either
the same or multiple proxy instances, the CookieContainer
property must be set on the proxy. This is
mandatory in the context of ENOVIA LCA V5 CAA Web services,
(2): when security is enabled on the remote Web server, it is mandatory to set the
Credentials
property on the proxy. The values specified must match a valid set of credentials for
the Basic Authentication mechanism,
(3): the default timeout value can be increased in order to avoid potential issues at runtime,
such as losing the HTTP connection before receiving the SOAP responses. The value specified in the code is in
milliseconds.
[Top]
To get a list of lifecycle transition names, you can use the following method available through the generated proxy interface:
public Status
GetTransitions(Identifier iObjectId, ref string[] oTransitionNames)
|
This method accepts the following parameters:
[in] iObjectId
|
The identifier of the target object |
[in/out] oTransitionNames
|
The list of transition names which are available to apply |
The following code demonstrates the use of the GetTransitions
method:
public class CAAENOVWSLCMgmtCppWrapper {
|
The CAAENOVWSUtils.ConvertFromHexToBinary
method can be found at:
<Source>\CAAENOVWSUtils.cs
|
<Source>
:
<Install>\CAAENOVWS.edu\CAAENOVWSDotNet1_1ClientBase.m\src
,
<Install>
: the root directory where the CAA CD-ROM is installed.
[Top]
To apply a lifecycle transition, you can use the following method available through the generated proxy interface:
public Status
ApplyTransition(Identifier iObjectId, string iTransitionName)
|
This method accepts the following parameters:
[in] iObjectId
|
The identifier of the target object |
[in] iTransitionName
|
The name of the transition to apply |
The following code demonstrates the use of the ApplyTransition
method:
public class CAAENOVWSLCMgmtCppWrapper {
|
[Top]
The following code depends on:
It demonstrates a sample usage scenario for the ENOVWSLCMgmtCpp CAA Web service:
public class CAAENOVWSLCMgmtCppUseCase {
|
[Top]
This use case explains how to use the C# client binding generated using the wsdl.exe utility in order to consume the ENOVWSLCMgmtCpp CAA Web service. It also gives an overview of the available methods:
GetTransitions
: get available transitions on a given object,
ApplyTransition
: apply a transition on a given object.
[Top]
Version: 1 [Jan 2006] | Document created |
[Top] |
Copyright © 2006, Dassault Systèmes. All rights reserved.