Download presentation
Presentation is loading. Please wait.
Published byMerry Carson Modified over 9 years ago
1
iWay Service Manager 6.01 Product Update Chris Bevilacqua iWay Solutions Architect Copyright 2010, Information Builders. Slide 1
2
Agenda iWay 6.0.1 overview Detailed feature dive IWay Integration Tools
3
iWay 6.0.1: Generally Available Available September 30, 2009 Downloadable from techsupport.ibi.com All software, metadata, features and maintenance follow corporate download philosophy
4
Includes Application Adapters MySAP RDBMS adapter eBusiness Adapters EDI X12 SWIFT Trading Partner Manager iWay 6.0.1: Generally Available
5
Additional Adapters delivered as Multiplatform enhancements Application Adapters J. D. Edwards One World J. D. Edwards Enterprise One People Soft Siebel eBusiness Adapters Business Activity Monitor iWay 6.0.1: Additional Adapters
6
iWay 6.01: Maintenance Strategy Console Plug-in to display applied maintenance Third party jars First cut: save results to file Future: Post results directly to case (Hottrack)
7
iWay 6.0.1: Maintenance Strategy
8
iWay 6.01: Maintenance Strategy Multiplatform Enhancements Vehicle to deliver new features/adapters Includes one adapter feature per deliverable such as PeopleSoft or Siebel Adapters Multiplatform Patches Monthly cumulative patches Support patch rollback (remove) Smart Install Only install components that are already in your environment.
9
Includes Technology Adapters Log Event Adapters Informix Oracle SQL Server Application Adapters Previous JDE,JDEW,MySAP,Peoplesoft,Siebel New Salesforce.com iWay 6.0.1 Cumulative Patch 6: Generally Available
10
Includes eBusiness Business Activity Monitor EDI/X12 Metadata is downloaded separately Both Pipeline and Non Pipeline metadata available EDIFACT Select EDI/X12 Download EDIFACT metadata EDIFACT only has pipelined metadata. iWay 6.0.1: Cumulative Patch 6
11
Includes Extensions Recommend : telnet extension always be selected DQC 601 Coreq: iIT/DQC bundle downloadable from techsupport Real Time Data replication. Coreq iIT – Data Integration objet iWay 6.0.1: Cumulative Patch 6
12
iWay 6.0.X Roadmap
13
iWay 601 Feature Dive Copyright 2010, Information Builders. Slide 13
14
Focus of 6.0.x is standards Complete XPATH1 xpath1(sstmt [,map] [,object]): xpath(‘//x’,,sreg(‘oldtree’)) Full specification (via Xalan) http://www.w3.org/TR/1999/REC-xpath-19991116 http://www.w3.org/TR/1999/REC-xpath-19991116 Old XPATH now _iwxpath http://www.w3.org/TR/1999/REC-xpath-19991116, section 2.5, Abbreviated Syntax http://www.w3.org/TR/1999/REC-xpath-19991116 iWay 6.0.1: General Settings
15
To maintain backward compatability default XPATH is iWXPATH Can choose to use XPATH 1.0 iWay 6.0.1: General Settings
16
Transform Caching Performance impact Settings may vary Development Production iWay 6.0.1: General Settings
17
iWay 6.0.1: Providers Centralize resource controls Available to many component Reached through JNDI Used in 6.0.x Components nHTTP, nAS/2 SQLAgent, RDBMS Adapter, LDAP XALog, FTPServer
18
iWay 6.0.1: Providers Security Provider: Keystore SSL Certificate Stores Data Provider (JDBC pools) Directory Provider (LDAP) Namespace Map (for XPATH) Pooling (HTTP Client Connections) Authentication realm Data Quality
19
iWay 6.0.1: Providers Pools connections/statements system wide JNDI DataSource Server is the default context Rich options for pool management Size and timeout management Can validate connection on borrow/return Action on exhaustion Fail, block or grow Pflow can be a borrower -- transactionality
20
iWay 6.0.1: Providers Provider defined to a manage server
21
iWay 6.0.1: Providers Use with Adapters for example RDBMS Adapter
22
iWay 6.0.1: Providers Show Pools command Pools: JDBC Connection Providers mssql URL: jdbc:sqlserver://iwayntk4:1433;databaseName=CenturySales idle: 4, busy: 1, borrowed: 2, rtd: 1 Show Providers command Enter command:>providers consolerealm com.ibi.providers.XDConsolerealmProvider@cc5002 jdbc URL: jdbc:sqlserver://iwayntk4:1433;databaseName=CenturySales idle: 0, busy: 5, borrowed: 794, rtd: 789
23
iWay 6.0.1: Providers Services to be used in conjunction with Providers. Providers are in the server/not registry Can only test run against configuration Move providers from one system to another via packages Current components that use providers DQC RDTR Services: for example SQL Agent
24
iWay 6.0.1: Services Services to be used in conjuncction with Providers. SQL object (com.ibi.agents.XDSQLAgent) Use JNDI true JNDI Name JNDI Factory Important: do not use Pool Connections parameter Pooling of connections handled by provider
25
iWay 6.0.1: Services
26
Test run Against registry: ??? XD[FAIL] cause: 0 subcause: 0 message: SQLAgent cannot find the datasource jdbc/NTK4SQL in local JNDI service. Against configuration: NO_COLUMN_NAME 9 2010-04-19T00:34:13Z 0
27
iWay 6.0.1: Services Error handling Handle each error/retry situation individually
28
iWay 6.0.1: Services Error Handling process flows can be accomplished a number of different ways. Some of the possible methods are Explicitly checking for an error post agent execution by conditioning the edge with onError or onFailure or with a specific error code or status based on the agent. A outlet conditioned with _iserror() An XDCatchAgent can be put into the beginning of the channel. This channel has two edges on the output side that is used for processing. The first is the onCompletion edge. The second is the onCustom with the onError and onFailure cases selected.
29
iWay 6.0.1: Services XDCatchAgent concept of the XDCatchAgent is similar to that of a try- catch block in java two edges off of this agent: onCompletion (blue) “happy-path” thread of execution. The thread of execution passes down this edge during normal operation. The XDCatchAgent has no effect on the flow when the thread of execuition is going “forward” through the agent. Once past the XDCatchAgent the flow of execution operates in the normal manner onCustom (brown).
30
iWay 6.0.1: Services XDCatchAgent two edges off of this agent: onCompletion (blue) onCustom (brown). If an unhandled failure or error is detected in the flow, the thread of execution backs up to the nearest XDCatchAgent. The thread of execution then flows down the OnError or ofFailure edges coming from the XDCatchAgent that were configured on the onCustom edge wizard. A common use of a catch would be to run a compensating transaction or to generate an error receipt or notification
31
iWay 6.0.1: Services XDCatchAgent Multiple XDCatchAgent (s) can be put into a process flow. The error branch is taken off of the closest XDCatchAgent previous to where the error occurred. In this manner, multiple error conditions can be coded for a given flow if needed.
32
iWay 6.0.1: Services XDCommitAgent When operating in Local Transaction mode commit or roll back operation to take place immediately Once committed, the data cannot be rolled back regardless of the manner in which the flow actually ends. A common use: catch node. If catch traps an error, the error edge might issue a roll back and then proceed to take other action to record or recover from the error.
33
iWay 6.0.1: Services: XDSREGAGENT Type of SREGS USR HDR – SREG values placed in protocol hdrs e.g. MQ RFH2 etc.
34
iWay 6.0.1: Services: XDSREGAgent Add, Delete Scope of SREGS Thread only found on the line of the flow (think multiple branches Flow anywhere in the flow, also sreg values are passed to the subflows. Message SREG is on worker level – including emitters. Sreg value is reset when worker is recycled. Channel on master level. Lives on after worker recycled. Useful for maintaining counters on a channel Server across channels
35
iWay 6.0.1: iWay Functional Language functions to obtain values for configuration use. iWay Service Manager uses conditional expressions to select routes in a channel. A conditional expression is a string composed of any combination of the evaluation functions listed here that returns a boolean result. Literals are explicit numbers or text used in an expression Testing functions tool testfuncs Tool tesfuncs C:\iway\a123.xml
36
iWay 6.0.1: iWay Functional Language Help funcs Enter command:>help funcs _add _after _all _any _attcnt _atthdr _atthdric _base64 _before _cat _ceil _chaninfo _concat _cond _contain s _count _dadd _datediff _dateof _ddiv _decode64 _deentity _div _dmul _dsub Help func xxx Enter command:>help func jdbc _jdbc Return one column value from an SQL operation. 1 provider required Name of a preconfigured JDBC provider. 2 statement required An SQL select or call statement. 3 timeout optional Number of seconds to wait for response. Default is 2 seconds. 4 default optional Default to return if the named column has no val ue.
37
iWay 6.0.1: iWay Functional Language New IFL Log command _log() write message to iWay log Regex _regex() vs _replace regular expression vs character Set SREG _setreg()
38
iWay 6.0.1: iWay Functional Language Editor iWay Integration Tools File New iWay Integration expression
39
iWay Telnet extension Used to remotely access the iSM 6.0.1 A Telnet client session can connect to any iSM instance running either in the foreground or the background. Helpful when access to the command line console cannot be performed locally when the iSM instance is running in the background, for example, a Windows service. iWay Service Manager 6.0.1: Operation and Management Enhancements
40
iWay Telnet extension One telnet listener required per Server Not per configuration show configs Enter command:>show configs * base Server Uptime: 7 minutes telnet port=23 raw Server is down training Server Uptime: 9 hours, 29 minut remote training Enter command:>remote training remote to 'training' set iWay Service Manager 6.0.1: Operation and Management : Telnet extension
41
iWay Telnet extension Scripting for lights out operation set cmdstatus = on #!/bin/sh host=localhost port=9023 cmd="info" ( echo open ${host} ${port} sleep 1 echo "iway" sleep 1 echo "iway" sleep 1 echo ${cmd} sleep 1 echo quit ) | telnet > /home/jay/out.txt echo " " echo "* * * command output start * * *" cat /home/jay/out.txt echo "* * * command output end * * * *" echo " " iWay Service Manager 6.0.1: Operation and Management : Telnet extension
42
iWay Telnet extension command return codes SCMD0Command successful 1000General security not otherwise explained 2000General syntax error 3000Resource error - the component or item called upon returned an error 5000Specification error: Although the syntax was right the combination of information was not 6000IO: Some I/O error occurred 9999Error not categorized 6001Cannot remote the specified command. For example, cannot issue a 'remote' command in remote mode 1002Principal in effect did not allow the command to run 3009Cannot parse the external configuratikon file in a PULL command 5010Unknown configuration for PULLcommand 5011Provider class is not recognizedin the PULL command 3012Provider class not found in PULL cmmand 2002Name of an external tool is not specified in TOOL command 6101Unable to read dictionary in PULL command 5101Tool not found to execute 5007Tool specified is not a valid iWay server tool 3022Tool failed with reported exception 3023Tool failed with reported runtime exception 2021No remote setting offered 5021Remote configuration is not configured on this installation of the server 3023Remote configuration is not running. The configuration must be running to execute commands. 2023Unable to remote to own configuration. 2004The name of a master/channel is required and was not entered 5121Names master/channel was not valid 2005Master/channel name is required for comand and it is missing. 1031Register name is restricted. You cannot set a configuration or other restricted special register's value 2014Invalid value expression: needs a document. You cannot use iFL expresisons to set a register vlaue if the 2005RUN command requires a path to a command file 2006 in run script has a syntax error 2007 in run script has a, iFL syntax error 2700Syntax, a member of a list of values is not valid iWay Service Manager 6.0.1: Operation and Management : Telnet extension
43
Useful command Showlog view traces from telnet session Hidelog turn off log Spool filename set active [on|off] -m channelname Set debug on – m channelname -save iWay Service Manager 6.0.1: Operation and Management : Telnet extension
44
.NET Adapter Be able to call.NET assemblies via the adapter without having to recompile the original assembly. Be able to consume legacy COM servers via the adapter. Support for passing complex parameters and return types Be able to create schema for complex data types. When not available return xsd;any. Available with Cumulative Patch 6. iWay Service Manager 6.0.1: Adapter Updates
45
New iWay Integration Tools Combines: Explorer Transformer Designer Configuration Extensible via Eclipse Based on Eclipse 3.4 CFR: November iWay Integration Tools: Development Tools
46
Release CFR released on the 11/09. CFR first update release on 12/02. Going production soon Available via techsupport.ibi.com. Update site http://updates.ibi.com/iithttp://updates.ibi.com Will provide updates for the CFR into production. DQC integrated builds are also available iWay Integration Tools
47
Features IFL editor available. Data Integration Extension support through the Data Integration Object. iWay Integration Tools Getting Started Guide available now. iWay Integration Tools
48
Roadmap Short term: Object and property search in designer Test Result Editor in designer Variable support in transformer Long Term: Channel Editor. iWay Integration Tools
49
Customer Feedback: We love and need feedback!!! Hottrack cases for bugs. New Feature Requests/Usability enhancements Hottrack. Email to feedback@iwaysoftware.com. iWay Integration Tools
50
iWay Documentation enhancements Documentation Services customer feedback program Build a strong, focused connection between customers and the product development team Goal is to develop a pool of users across the product line Quick Start manuals for key products
51
iWay Documentation enhancements Infocenter : Eclipse plug-in for iWay 6.0.X documentation Searchable across the full document library http://ecl.informationbuilders.com/iway/index.jsp http://ecl.informationbuilders.com/iway/index.jsp
52
iWay Documentation enhancements
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.