![]() |
![]() |
![]() |
![]() |
![]() |
•
• A wrapper assembly: libwsclient.dllThis Microsoft .NET Framework .dll assembly wraps Tuxedo ATMI and FML functions for developing Tuxedo .NET workstation clients.
• These executable utilities help to develop C# code using Tuxedo VIEW/VIEW32 and FML/FML32 typed buffer and compile C# code to Tuxedo .NET Workstation Client executable assemblies. For more information, see viewcs, viewcs32(1), mkfldcs, mkfldcs32(1), buildnetclient(1).These three samples explain how to create Tuxedo .NET Workstation Client application using C#. See Tuxedo .NET Workstation Client Samples.
• The MBSTRING data type is not supported; the FLD_MBSTRING type is not supported in FML or VIEW buffers.
• New ATMI functions introduced in Tuxedo 11gR1 and later are not included in the Tuxedo .NET Workstation Client package (for example, tpxmltofml32(3) and tpfmltoxml32(3)).
• Tx Transaction interfaces (for example: tx_open(), tx_close(), and tx_begin()), are not supported by Tuxedo .NET Workstation Client. Only Tuxedo TP transaction functions can be used.
• Tuxedo .NET workstation Client implementation requires ATMI client functionality. During the Tuxedo installation, the Full Install Set and .NET Client Install Set automatically include the ATMI Client Install Set.For more Tuxedo .NET Client installation and Tuxedo install set information, see Installing the Oracle Tuxedo System.The Tuxedo .NET Workstation Client works as an intermediate layer or wrapper between your .NET applications and underlying Tuxedo workstation shared libraries (libwsc.dll, libengine.dll, and libfml.dll). Figure 1 illustrates how the Tuxedo .NET Workstation client works.The . NET assembly libwscdnet.dll contains the wrapper API classes for Tuxedo .NET Workstation Client and implements a set of object-oriented-styled interfaces that wrap around Tuxedo ATMI functions and FML functions.buildnetclient references libwscdnet.dll in order to build Tuxedo workstation clients written in . NET programming languages. It targets the Common Language Runtime (CLR) environment, and is invoked by the assemblies (for example, client executables, libraries) depending on it at runtime.The win32 shared library, libwdi.dll, implements platform specific functions that libwscdnet.dll uses.
Note: libwdi.dll is only required by libwscdnet.dll at runtime and is not necessary when buildnetclient builds the application source files into .NET executables.The Tuxedo .NET Workstation Client requires Microsoft .NET Framework 4.0, 4.5 or 4.8 SDK installation on your system. The Oracle Tuxedo installer program automatically checks to see if .NET Framework is installed or not. If installed, libwscdnet.dll is automatically registered in the .NET Framework global assembly cache.If .NET Framework is not installed, you must install it. You can download the .NET Framework from Microsoft’s .NET Developer Center. After you have installed .NET Framework, manually registering libwscdnet.dll in the global assembly cache is highly recommended.You can register/un-register libwscdnet.dll from the command line.
• For VS2010(.NET 4.0): %ProgramFiles(x86)%/Microsoft SDKs/Windows/v7.0A/bin/NETFX 4.0 Tools/gacutil.exe /i %TUXDIR%\bin\libwscdnet.dll
• For VS2012(.NET 4.5): %ProgramFiles(x86)%/Microsoft SDKs/Windows/v8.0A/bin/NETFX 4.0 Tools/gacutil.exe /i %TUXDIR%\bin\libwscdnet.dll
• For VS2017(.NET 4.8): %ProgramFiles(x86)%/Microsoft SDKs/Windows/v10.0A/bin/NETFX 4.8 Tools/gacutil.exe /i %TUXDIR%\bin\libwscdnet.dll
• For VS2010(.NET 4.0): %ProgramFiles(x86)%/Microsoft SDKs/Windows/v7.0A/bin/NETFX 4.0 Tools/gacutil.exe /u libwscdnet
• For VS2012(.NET 4.5): %ProgramFiles(x86)%/Microsoft SDKs/Windows/v8.0A/bin/NETFX 4.0 Tools/gacutil.exe /u libwscdnet
• For VS2017(.NET 4.8): %ProgramFiles(x86)%/Microsoft SDKs/Windows/v10.0A/bin/NETFX 4.8 Tools/gacutil.exe /u libwscdnetThe Tuxedo .NET Workstation Client provides development utilities that can aid programmers using Tuxedo FML/VIEW typed buffer and building .NET executable files. See Using FML/FML32 Typed Buffers and Using VIEW/VIEW32 Typed Buffers.
• Class AppContext is used to organize almost all ATMI C functions.
• A Tuxedo transaction is encapsulated as a class. All transaction related functions are defined as methods of Class Transaction, (for example, tpbegin(), tpcommit(), and so on).
• Tuxedo typed buffer encapsulation is handled using class TypedBuffer and its derived classes. See Using Typed Buffers.Tuxedo .NET Workstation Client namespaces are divided into two categories. The first category includes two namespaces, Bea.Tuxedo.ATMI and Bea.Tuxedo.FML that bundles ATMI and FML wrapper classes.The second category uses the Bea.Tuxedo.Autogen namespace to bundle all auto-generated .NET classes using .NET Client utilities.These namespaces include all the classes and structures related to the functions listed in the Tuxedo .NET Workstation Client API Reference.The AppContext class is a key class used to perform Tuxedo service access functions. AppContext leverages the OO programming style in a multi-contexted client application.
Note: For more multi-context information, see Programming a Multithreaded and Multicontexted ATMI Application in Programming an Oracle Tuxedo ATMI Application Using C.Most Tuxedo ATMI C functions (for example, tpcall(), and tpnotify()), are defined as AppContext class methods. Creating an AppContext class instance is a key component in connecting to a Tuxedo domain and call services provided by that Tuxedo domain.In a multi-contexted application written in C or COBOL, programmers typically have to switch between different Tuxedo context using two ATMI functions, tpgetctxt() and tpsetctxt(). This is not required using the Tuxedo .NET Workstation Client. Creating a class AppContext instance also creates specific Tuxedo context instance.Operations on a particular AppContext will not impact other AppContext instances. You can develop multi-context applications and easily switch between them.To create a Tuxedo context instance you need to invoke the static class method, AppContext.tpinit(TPINIT), instead of the class constructor.
Note: Tuxedo context instances are not destroyed automatically. You must invoke AppContext.tpterm() before a Tuxedo context instance is destroyed, otherwise you may encounter the following:
• The garbage collector (gc) may destroy AppContext class instances without terminating the Tuxedo context session.The following sample shows how to connect to a single context Tuxedo domain.The following sample shows how to connect to a multi-context Tuxedo domain .The Tuxedo .NET Workstation Client supports the following built-in Oracle Tuxedo buffer types: FML, FML32, VIEW, VIEW32, CARRAY, and STRING.Figure 2 provides an illustration of the Tuxedo .NET Workstation Client typed buffer class hierarchy.The Tuxedo .NET Workstation Client class TypedBuffer is the base class of all concrete Tuxedo buffer types and provides some low level functions to all derived classes. Class TypedBuffer is an abstract class and cannot be used to create instances.The Tuxedo .NET Workstation Client uses class TypedString to define STRING typed buffer characters. TypedString instances can be used directly to communicate with AppContext methods such as tpcall(). See the following example.The Tuxedo .NET Workstation Client uses class TypedFML/TypedFML32 to define most FML C functions. You should do the following steps to develop Tuxedo .NET applications using FML typed buffers:Compile field table files into C# source files using the mkfldcs Tuxedo .NET Workstation Client utility. The generated C# files contain public classes including definitions of every FML field ID defined in the field table files. See also mkfldcs(1)Use TypeFML class methods to create and access FML data.For more FML typed buffer programming information, see Programming a Tuxedo ATMI Application Using FML.
Note: .NET Workstation Client supports the FLD_MBSTRING field in FML32 buffer. For more information, refer to Fmbpack32() and Fmbunpack32().Listing 5 Using TypedFML Class (C# code example)The Tuxedo .NET Workstation Client uses class TypedVIEW to create and access VIEW/VIEW32 data. You should do the following steps to develop Tuxedo .NET Workstation Client applications using VIEW/VIEW32 typed buffers:
2. Use the Tuxedo .NET Workstation Client viewcs utility to compile the VIEW definition file into a VIEW binary file (.VV). For more information, see viewc(1), viewcs(1).
3. Use the Tuxedo .NET Workstation Client viewcs utility to generate class TypedVIEW derived definition C# code and corresponding .dll library (if necessary) from the View binary file.
4. Use class TypedVIEW to write your .NET application.Using class TypedVIEW provides you with two options:This is the most common usage of TypedVIEW.Use the viewcs utility to generate derived class TypedVIEW definition C# code from the xxx.VV file, then compile the C# code into an .exe file. No additional environment variables are required.You can use the viewcs utility along with .NET assembly environment variables to generate .dll libraries. The .NET assembly environment variables ASSFILES, ASSDIR (ASSFILES32, ASSDIR32 for view32) must be set accordingly in order to view viewcs-generated .dll libraries.
Note: TypedView must link to .dll libraries instead of C# code in the .NET environment. This is because it compiles the class type into .dll libraries or .exe files. If the definition is compiled into both .dll libraries and .exe files, the output binaries for these two files are not the same.Using these environment variables, .dll libraries can be generated automatically or manually:This method may be used when many xxx.VV files exist. To simplify management of TypedVIEW C# code, these xxx.VV files can be compiled into a .dll library.Use the viewcs utility to generate derived class TypedVIEW definition C# code and corresponding .dll library from the xxx.VV files. Manually register the libwscdnet.dll assembly, and then compile your client application using the .dll library.In certain integrated programming environments (for example, VB .NET, and ASP.NET). the framework provides the executing environment. Client applications are integrated as .dll files. In this case it is best to manually generate .dll libraries.Use the viewcs utility to generate derived class TypedVIEW definition C# code from the xxx.VV file, then compile the C# code into an application .dll.The .NET assembly environment variables ASSFILES, ASSDIR (ASSFILES32, ASSDIR32 for view32) must be set to application .dll libraries and directories that have TypedVIEW defined.The Typed Buffer Samples file (included in the Tuxedo . NET Workstation Client package) demonstrates how to use FML and VIEW typed buffers.One benefit of the .NET Framework environment is language integration. Once a .NET assembly is generated, you can use any .NET supported language to develop applications using that assembly. Accordingly, you can also use J#, VB, C++ or other .NET supported languages to develop Tuxedo .NET Workstation Client applications.Listing 6 Visual Basic .NET Code ExampleSub Main()
Dim sndstr, rcvstr As TypedString
Dim ac As AppContext
Dim info As TypedTPINIT
info = New TypedTPINIT()
info.cltname = "vb client"
Try
ac = AppContext.tpinit(info)
sndstr = New TypedString("hello world")
rcvstr = new TypedString(1000)
ac.tpcall("TOUPPER", sndstr, rcvstr, 0)
Console.WriteLine("rcvstr = {0}"
...rcvstr.GetString(0,1000))
ac.tpterm()
Catch e as ApplicationException
Console.WriteLine("Got Exception = {0}", e)
End TryThe buildnetclient utility is provided to help compile C# source files into a .NET executable files. See also buildnetclient(1).
Note: Link editing must be done by running the buildnetclient utility.The following is a buildnetclient syntax example:The error code return mechanism used with Tuxedo ATMI C and FML C functions is replaced with an exception mechanism in the Tuxedo .NET Workstation Client. You can use the try statement to handle errors using the Tuxedo .NET Workstation Client. Errors are defined into two categories: TPException and FException.Listing 7 Exception Handling (C# Code Example)
1. Read the readme.nt file in each sample application directory.
2. Run setenv.cmd to set Tuxedo environment variable.
3. Run nmake -f xxx.nt to build the Tuxedo .NET Workstation Client application, Tuxedo server program and Tuxedo TUXCONFIG file.
4. Run tmboot -y to start Tuxedo application.