SlideShare uma empresa Scribd logo
1 de 20
Baixar para ler offline
ACE 2011 International




 Role‐Based Clients




Copyright © 2011 Aras   All Rights Reserved.                     aras.com
Session Goals

     Define Role‐Based and Application Specific Clients

     Discuss When can and Why should they be used

     Tutorial of two simple Clients with architecture and 
     code samples
     code samples




 Copyright © 2011 Aras   All Rights Reserved.   Slide 2      aras.com
Definitions
Role‐Based Client or Application Specific Client
  A PLM User Interface that has been:
          De‐featured to remove un‐necessary menus and functions
          Created to consolidate all information (mash‐up) for the specific 
          task at hand
          Localized (time zone and language)
              li d ( i           dl        )
          Designed ergonomically for the environment of the user
              •   Barcode interface instead of a mouse
                  Barcode interface instead of a mouse
              •   Touch‐typist interface instead of a mouse
              •   Mouse driven data entry instead of a keyboard
              •   Touch screen
              •   Mobile device
 Copyright © 2011 Aras   All Rights Reserved.   Slide 3                aras.com
Why Do We Discuss
Role‐Based Clients?
       #1 success factor for any PLM deployment is the
       end user adoption.
       end‐user adoption.
       PLM (and CRM and ERP) are all highly dependent on 
       accurate and timely data.   If then end‐users won t use 
       accurate and timely data If then end users won’t use
       the PLM clients,  the enterprise data and processes will 
       continue to be managed in Excel and on Post It Notes. 
       continue to be managed in Excel and on Post‐It Notes.
       Willingness to adapt to end‐user requests is important 
       for reaching the stubborn users.  It becomes  their
       for reaching the stubborn users It becomes “their” 
       system instead of an IT mandate.
       Best way to increase the efficiency of the casual or 
       B t      t i         th ffi i        f th       l
       infrequent users.  Decreases training requirements.
 Copyright © 2011 Aras   All Rights Reserved.   Slide 4        aras.com
Why Don’t We use Role‐Based 
Clients All the Time then?
    The overall trend in enterprise business software has 
    been to use standard out‐of‐the‐box clients
    been to use standard out of the box clients
         Cost of development and support with legacy 
         application technologies has driven IT costs 
         application technologies has driven IT costs
         Every data model or process model change results in 
         changes to client code, and re‐deployment of clients
         changes to client code and re deployment of clients
         BUT some of these decision criteria are dated and no 
         longer relevant.   For example; Even at Aras customers 
         longer relevant For example; Even at Aras customers
         we see too much use of the standard client
    We need a fresh approach – technology allows flexibility,  
    We need a fresh approach technology allows flexibility
    so let’s use it to engage the end‐users
 Copyright © 2011 Aras   All Rights Reserved.   Slide 5      aras.com
PLM Clients
1st Step: Allow Multiple Platforms


                                                MOBILE
                                 OFFICE                     CAD




                                                Web Services Connections
                                                Web Services Connections

                   BROWSER




                                                 Database     File Vault
 Copyright © 2011 Aras   All Rights Reserved.     Slide 6                  aras.com
PLM Clients
2nd Step:  Implement Task‐Specific UI’s




                                                             MOBILE


                                                          Web Services Connections

                                                BROWSER



                                                           Database     File Vault

 Copyright © 2011 Aras   All Rights Reserved.                                        aras.com
Examples

    Incoming inspection (bar code)

    Supplier portal

    Shop floor drawing viewer

    Customer portal 

    Web‐site catalog
    W b i        l

    … 

 Copyright © 2011 Aras   All Rights Reserved.   Slide 8   aras.com
Aras Recommended Approach

    Where‐ever possible ‐ drive client layout design 
    from the Form meta‐model to eliminate Client 
    from the Form meta model to eliminate Client
    changes when the PLM data model changes

    Use the standard Aras web services to simplify 
    authentication and authorization management
    authentication and authorization management




 Copyright © 2011 Aras   All Rights Reserved.   Slide 9   aras.com
Sample Project #1
Simple Portal in standard HTML
   p
     High performance for remote clients
     Highly secure,  all data is Aras Corp confidential (CRM)
     Highly secure all data is Aras Corp confidential (CRM)
     Browser independent
     No .NET Issues
     Very good for un‐structured
     Data in lists, files, etc.

* A simple 2 hour project for 
   securely bringing PLM 
   data to the web site for 
   d t t th       b it f
   authenticated users
  Copyright © 2011 Aras   All Rights Reserved.   Slide 10   aras.com
Sample Project #1
Login Screen
  g
                                                           Using native PLM authentication by
                                                           prompting the end-user for
                                                           username/password,
                                                           username/password and then using
                                                           these values in the web services
                                                           connection.

                                                           The HTML (ASPX) page becomes a
                                                           true client to the Aras Innovator
                                                           server.


Standard ASPX page using an ASP Login object
              p g      g          g     j

<asp:Login ID="login" runat="server" onauthenticate="upwd_Authenticate"  >

Code behind implements the  upwd_Authenticate
Code behind implements the upwd Authenticate method


 Copyright © 2011 Aras   All Rights Reserved.   Slide 11                                 aras.com
Sample Project #1
Login – Code Behind
  g
Sample in VB ‐ note Aras IOM.DLL is used for Aras Innovator connection
Could have used an XMLHTTP Object to send the XML/SOAP request as well
Protected Sub upwd_Authenticate(ByVal sender As Object, ByVal e As AuthenticateEventArgs)
    Dim username As String = login.UserName
    Dim password As String = login.Password

    Dim connection As HttpServerConnection = Aras.IOM.IomFactory.CreateHttpServerConnection
    Dim connection As HttpServerConnection = Aras IOM IomFactory CreateHttpServerConnection
           ( “http://My‐Server/Innovator”, “My‐database”, username, password)

    Dim log_result As Item = connection.Login()
    If log_result.isError() Then
       status.Text = "ERROR: " + log_result.getErrorString()
       Return
    End If                                                                         Adding the Innovator
    Session("MyInnovatorPartner") = New Innovator(connection)                      Connection to the
                                                                                   Session Object
    Dim ReturnTo As String = Request.QueryString("ReturnTo")
    If ReturnTo = "" Then
         Response.Redirect("http://www.aras.com/partnerPortal/MessageList.aspx")
    Else
         Response.Redirect(ReturnTo)
         R         R di t(R t T )
    End If

  End Sub
    Copyright © 2011 Aras   All Rights Reserved.   Slide 12                                         aras.com
Sample Project #1
Data List Page Example
            g      p
                                                             Need to ensure that regardless of
                                                             how this page is reached, directly
                                                             or th
                                                                through the Login page, that an
                                                                      h th L i           th t
                                                             authenticated session is enforced.

                                                             The “Page Load” ASPX method is
                                                                    Page_Load
                                                             used to test whether this IIS session
                                                             has a valid Innovator connection, if
                                                             not, the user is redirected to the
                                                             LoginPage



Standard ASPX page with declared code‐behind

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="default.aspx.vb“
<%@ Page Lang age " b" A toE entWire p "false" CodeBehind "defa lt asp b“
       Inherits="PartnerPortal._Default" %>

   Copyright © 2011 Aras   All Rights Reserved.   Slide 13                                    aras.com
Sample Project #1
Data Page– Code Behind
       g
Sample in VB   using the Aras IOM.DLL

Public ArticlesXML As System.Xml.XmlDocument

Protected Sub Page_Load (ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

    If Session("MyInnovatorPartner") Is Nothing Then
       Dim url As String = Request.Url.AbsoluteUri
       Response.Redirect("http://www.aras.com/PartnerPortal/Login.aspx?ReturnTo=" & url)
    End If

   Dim MyInnovator As Innovator = Session("MyInnovatorPartner")

   Dim AML As String =  "<AML><Item type=Article' action=get' /></AML>“
   Dim Result As Item = MyInnovator.applyAML(AML)
                                                                          Note: loading an XML
   ArticlesXML.LoadXml(Result.dom.OuterXml)                               Document with the
                                                                          result from Aras
End Sub

Very simple test. Is there a named Aras session object in IIS for this user’s session?
If not, re-direct to the Login Page, otherwise run the query to populate the HTML page
   Copyright © 2011 Aras   All Rights Reserved.   Slide 14                                      aras.com
Sample Project #1
One last hint…
AML = "<AML><Item type=Article' action=get' /></AML>“
Dim Result As Item = MyInnovator.applyAML(AML)
Dim Result As Item = MyInnovator applyAML(AML)


or  


AML=“<AM><Item type=‘Article’ action=’My Query Method’ /></AML>”
Dim Result As Item = MyInnovator applyAML(AML)
                     MyInnovator.applyAML(AML)



We often move the actual query into a Method
       •   Allows division of responsibility between developers
       •   Allows Post‐processing of data
       •   Merging of Federated Items

   Copyright © 2011 Aras   All Rights Reserved.   Slide 15         aras.com
Sample Project #2
Rich UI Portal in MS‐Silverlight
                             g
    Wanted a very graphical, snappy user interface
    Had to handle structured data – i.e. BOM s and other 
    Had to handle structured data i e BOM’s and other
    Relationships (too complicated for HTML)
    IE, FireFox and Chrome
    IE FireFox and Chrome
    No .NET 
    100% Secure
    HTML5 not ready yet
    so we used Silverlight
            Web CRM
            Timesheets 
            Ti   h

 Copyright © 2011 Aras   All Rights Reserved.   Slide 16   aras.com
Sample Project #2
Login Screen
  g
                                                           Using native PLM authentication
                                                           by prompting the end-user for
                                                                            end user
                                                           username/password, and then
                                                           using these values in the web
                                                           services connection.

                                                           The Silverlight control becomes a
                                                           true client to the Aras Innovator
                                                           server.



NOTE:             the Aras IOM.DLL is not used in a Silverlight Project

The event model in Silverlight is asynchronous (UI stays active while Web
                           g        y          (       y
Services requests are pending), so all access to the Innovator Server was made
using HttpWebRequest objects.
 Copyright © 2011 Aras   All Rights Reserved.   Slide 17                                aras.com
Sample Project #2
Login – Code Behind
  g
Sample in C#

public void CallAction(CallContext cc)
   {
      // Create the request object  
      System.Uri myUrl = new System.Uri(Server.Text + "/Server/InnovatorServer.aspx");
      HttpWebRequest request = WebRequest.Create(myUrl) as HttpWebRequest;

       request.Method = "POST";                                            HttpWebRequest with
       request.Headers["SOAPAction"] = cc.Action;                          authenticated SOAP
       request.ContentType = "text/xml";
       request.Headers["AUTHUSER"] = Login_Name.Text;                      headers
       request.Headers["AUTHPASSWORD"] = ConvertPasswordToMD5(Password.Password);
       request.Headers["DATABASE"] = Database.Text;

       cc.request = request;

       // need to make a asynch call to get the output stream
       IAsyncResult asyncResult = request.BeginGetRequestStream(new AsyncCallback(RequestStreamCallback), cc);
   }

The simple pattern is (1) create an AML request as XML string, (2) create the HttpWebRequest
Th i l         tt   i (1)      t    AML        t XML t i (2)            t th Htt W bR        t
and get access to the Stream  (3)  send the AML and then  (4) handle the result (which is XML) 
in a callback method .     LINQ and Data Binding are used to load data into the UI.
   Copyright © 2011 Aras   All Rights Reserved.   Slide 18                                                  aras.com
My next project
    Silverlight used for a new Collaboration Solution
       Discussion threads  (forums), Wiki, Chat
    Using Aras Innovator as the collaboration server, and all 
    collaboration is persisted in the Aras PLM data model
    Allow PLM objects to be embedded (with access rights)

    Runs:
     In PLM
     In a Web page
     I W b


     Securely

 Copyright © 2011 Aras   All Rights Reserved.   Slide 19   aras.com
Where to find more resources
    Aras documentation on web site www.aras.com
    Community projects 
    C     i      j
    Forums



    Email me for the projects (Visual Studio 2010) 
    that were used to build the 2 samples


 Copyright © 2011 Aras   All Rights Reserved.   Slide 20   aras.com

Mais conteúdo relacionado

Mais procurados

Guidelines for moving from Oracle Forms to Oracle ADF and SOA
Guidelines for moving from Oracle Forms to Oracle ADF and SOAGuidelines for moving from Oracle Forms to Oracle ADF and SOA
Guidelines for moving from Oracle Forms to Oracle ADF and SOASteven Davelaar
 
Top 10 Reasons to Choose Oracle ERP Cloud Financials
Top 10 Reasons to Choose Oracle ERP Cloud FinancialsTop 10 Reasons to Choose Oracle ERP Cloud Financials
Top 10 Reasons to Choose Oracle ERP Cloud FinancialsLiz Kensicki
 
Placement of BPM runtime components in an SOA environment
Placement of BPM runtime components in an SOA environmentPlacement of BPM runtime components in an SOA environment
Placement of BPM runtime components in an SOA environmentKim Clark
 
Oracle OpenWorld 2009 AIA Best Practices
Oracle OpenWorld 2009 AIA Best PracticesOracle OpenWorld 2009 AIA Best Practices
Oracle OpenWorld 2009 AIA Best PracticesRajesh Raheja
 
OOW09 Integration Architecture EBS R12
OOW09 Integration Architecture  EBS R12OOW09 Integration Architecture  EBS R12
OOW09 Integration Architecture EBS R12jucaab
 
Interactive Forms Review - SDN Day 2008 - Las Vegas
Interactive Forms Review - SDN Day 2008 - Las VegasInteractive Forms Review - SDN Day 2008 - Las Vegas
Interactive Forms Review - SDN Day 2008 - Las Vegasdr.j
 
MuCon 2015 - Microservices in Integration Architecture
MuCon 2015 - Microservices in Integration ArchitectureMuCon 2015 - Microservices in Integration Architecture
MuCon 2015 - Microservices in Integration ArchitectureKim Clark
 
Introduction to SOA EAI ETL BPM
Introduction to SOA EAI ETL BPMIntroduction to SOA EAI ETL BPM
Introduction to SOA EAI ETL BPMThanh Nguyen
 
Oracle ADF Overview
Oracle ADF OverviewOracle ADF Overview
Oracle ADF OverviewBahaa Farouk
 
Oracle Enterprise 2.0 & Business Applications
Oracle Enterprise 2.0 &  Business ApplicationsOracle Enterprise 2.0 &  Business Applications
Oracle Enterprise 2.0 & Business ApplicationsJaime Cid
 
oracle ebs free web service integration tools
oracle ebs free web service integration toolsoracle ebs free web service integration tools
oracle ebs free web service integration toolsSmartDog Services
 
15 Ace 2010 Share Point Plm
15 Ace 2010 Share Point Plm15 Ace 2010 Share Point Plm
15 Ace 2010 Share Point PlmProdeos
 
Software is eating the world and MDD should be in the driving seat
Software is eating the world and MDD should be in the driving seatSoftware is eating the world and MDD should be in the driving seat
Software is eating the world and MDD should be in the driving seatJohan den Haan
 
Oaug collaborate sadia_tahseen
Oaug collaborate sadia_tahseenOaug collaborate sadia_tahseen
Oaug collaborate sadia_tahseenSadz Ta
 
Competitive Analysis w SWOT Matrix
Competitive Analysis w SWOT MatrixCompetitive Analysis w SWOT Matrix
Competitive Analysis w SWOT MatrixDavid Castro
 
Aras PLM Viewing Markup and Secure Social
Aras PLM Viewing Markup and Secure SocialAras PLM Viewing Markup and Secure Social
Aras PLM Viewing Markup and Secure SocialAras
 
What's New in Aras Innovator PLM Software
What's New in Aras Innovator PLM SoftwareWhat's New in Aras Innovator PLM Software
What's New in Aras Innovator PLM SoftwareAras
 
2012 ukdc shared services value prop growth day newbury
2012 ukdc shared services value prop growth day newbury2012 ukdc shared services value prop growth day newbury
2012 ukdc shared services value prop growth day newburybara2cls
 
Oracle - Programatica2010
Oracle - Programatica2010Oracle - Programatica2010
Oracle - Programatica2010Agora Group
 

Mais procurados (20)

Guidelines for moving from Oracle Forms to Oracle ADF and SOA
Guidelines for moving from Oracle Forms to Oracle ADF and SOAGuidelines for moving from Oracle Forms to Oracle ADF and SOA
Guidelines for moving from Oracle Forms to Oracle ADF and SOA
 
Top 10 Reasons to Choose Oracle ERP Cloud Financials
Top 10 Reasons to Choose Oracle ERP Cloud FinancialsTop 10 Reasons to Choose Oracle ERP Cloud Financials
Top 10 Reasons to Choose Oracle ERP Cloud Financials
 
Placement of BPM runtime components in an SOA environment
Placement of BPM runtime components in an SOA environmentPlacement of BPM runtime components in an SOA environment
Placement of BPM runtime components in an SOA environment
 
Oracle OpenWorld 2009 AIA Best Practices
Oracle OpenWorld 2009 AIA Best PracticesOracle OpenWorld 2009 AIA Best Practices
Oracle OpenWorld 2009 AIA Best Practices
 
OOW09 Integration Architecture EBS R12
OOW09 Integration Architecture  EBS R12OOW09 Integration Architecture  EBS R12
OOW09 Integration Architecture EBS R12
 
Interactive Forms Review - SDN Day 2008 - Las Vegas
Interactive Forms Review - SDN Day 2008 - Las VegasInteractive Forms Review - SDN Day 2008 - Las Vegas
Interactive Forms Review - SDN Day 2008 - Las Vegas
 
MuCon 2015 - Microservices in Integration Architecture
MuCon 2015 - Microservices in Integration ArchitectureMuCon 2015 - Microservices in Integration Architecture
MuCon 2015 - Microservices in Integration Architecture
 
Introduction to SOA EAI ETL BPM
Introduction to SOA EAI ETL BPMIntroduction to SOA EAI ETL BPM
Introduction to SOA EAI ETL BPM
 
Oracle ADF Overview
Oracle ADF OverviewOracle ADF Overview
Oracle ADF Overview
 
Oracle Enterprise 2.0 & Business Applications
Oracle Enterprise 2.0 &  Business ApplicationsOracle Enterprise 2.0 &  Business Applications
Oracle Enterprise 2.0 & Business Applications
 
oracle ebs free web service integration tools
oracle ebs free web service integration toolsoracle ebs free web service integration tools
oracle ebs free web service integration tools
 
15 Ace 2010 Share Point Plm
15 Ace 2010 Share Point Plm15 Ace 2010 Share Point Plm
15 Ace 2010 Share Point Plm
 
Software is eating the world and MDD should be in the driving seat
Software is eating the world and MDD should be in the driving seatSoftware is eating the world and MDD should be in the driving seat
Software is eating the world and MDD should be in the driving seat
 
Blaze Ds Slides
Blaze Ds SlidesBlaze Ds Slides
Blaze Ds Slides
 
Oaug collaborate sadia_tahseen
Oaug collaborate sadia_tahseenOaug collaborate sadia_tahseen
Oaug collaborate sadia_tahseen
 
Competitive Analysis w SWOT Matrix
Competitive Analysis w SWOT MatrixCompetitive Analysis w SWOT Matrix
Competitive Analysis w SWOT Matrix
 
Aras PLM Viewing Markup and Secure Social
Aras PLM Viewing Markup and Secure SocialAras PLM Viewing Markup and Secure Social
Aras PLM Viewing Markup and Secure Social
 
What's New in Aras Innovator PLM Software
What's New in Aras Innovator PLM SoftwareWhat's New in Aras Innovator PLM Software
What's New in Aras Innovator PLM Software
 
2012 ukdc shared services value prop growth day newbury
2012 ukdc shared services value prop growth day newbury2012 ukdc shared services value prop growth day newbury
2012 ukdc shared services value prop growth day newbury
 
Oracle - Programatica2010
Oracle - Programatica2010Oracle - Programatica2010
Oracle - Programatica2010
 

Semelhante a Special Purpose Role-Based Clients for PLM using Aras

Pervasive PLM
Pervasive PLMPervasive PLM
Pervasive PLMAras
 
Driving Innovation with Serverless Applications (GPSBUS212) - AWS re:Invent 2018
Driving Innovation with Serverless Applications (GPSBUS212) - AWS re:Invent 2018Driving Innovation with Serverless Applications (GPSBUS212) - AWS re:Invent 2018
Driving Innovation with Serverless Applications (GPSBUS212) - AWS re:Invent 2018Amazon Web Services
 
Progetta, crea e gestisci Modern Application per web e mobile su AWS
Progetta, crea e gestisci Modern Application per web e mobile su AWSProgetta, crea e gestisci Modern Application per web e mobile su AWS
Progetta, crea e gestisci Modern Application per web e mobile su AWSAmazon Web Services
 
A great api is hard to find
A great api is hard to findA great api is hard to find
A great api is hard to findDan Diephouse
 
AD303: Building Composite Applications for IBM Workplace Collaboration Servic...
AD303: Building Composite Applications for IBM Workplace Collaboration Servic...AD303: Building Composite Applications for IBM Workplace Collaboration Servic...
AD303: Building Composite Applications for IBM Workplace Collaboration Servic...Brian O'Gorman
 
Castle in the Clouds: SaaS Enabling JavaServer™ Faces Applications (JavaOne 2...
Castle in the Clouds: SaaS Enabling JavaServer™ Faces Applications (JavaOne 2...Castle in the Clouds: SaaS Enabling JavaServer™ Faces Applications (JavaOne 2...
Castle in the Clouds: SaaS Enabling JavaServer™ Faces Applications (JavaOne 2...Lucas Jellema
 
Public v1 real world example of azure functions serverless conf london 2016
Public v1 real world example of azure functions serverless conf london 2016 Public v1 real world example of azure functions serverless conf london 2016
Public v1 real world example of azure functions serverless conf london 2016 Yochay Kiriaty
 
Building cross platform mobile web apps
Building cross platform mobile web appsBuilding cross platform mobile web apps
Building cross platform mobile web appsJames Pearce
 
Adobe PDF and LiveCycle ES Security
Adobe PDF and LiveCycle ES SecurityAdobe PDF and LiveCycle ES Security
Adobe PDF and LiveCycle ES Securityguest2a5a03
 
Building Cross Platform Mobile Web Apps
Building Cross Platform Mobile Web AppsBuilding Cross Platform Mobile Web Apps
Building Cross Platform Mobile Web AppsJames Pearce
 
Serverless Developer Experience I AWS Dev Day 2018
Serverless Developer Experience I AWS Dev Day 2018Serverless Developer Experience I AWS Dev Day 2018
Serverless Developer Experience I AWS Dev Day 2018AWS Germany
 
Client Object Model - SharePoint Extreme 2012
Client Object Model - SharePoint Extreme 2012Client Object Model - SharePoint Extreme 2012
Client Object Model - SharePoint Extreme 2012daniel plocker
 
F1_Design Mission Critical Enterprise Applications with Power Automate and Do...
F1_Design Mission Critical Enterprise Applications with Power Automate and Do...F1_Design Mission Critical Enterprise Applications with Power Automate and Do...
F1_Design Mission Critical Enterprise Applications with Power Automate and Do...serge luca
 
Building API-Driven Microservices with Amazon API Gateway - AWS Online Tech T...
Building API-Driven Microservices with Amazon API Gateway - AWS Online Tech T...Building API-Driven Microservices with Amazon API Gateway - AWS Online Tech T...
Building API-Driven Microservices with Amazon API Gateway - AWS Online Tech T...Amazon Web Services
 
Aws serverless multi-tier_architectures
Aws serverless multi-tier_architecturesAws serverless multi-tier_architectures
Aws serverless multi-tier_architecturesDevthilina Abayaratne
 

Semelhante a Special Purpose Role-Based Clients for PLM using Aras (20)

Pervasive PLM
Pervasive PLMPervasive PLM
Pervasive PLM
 
Driving Innovation with Serverless Applications (GPSBUS212) - AWS re:Invent 2018
Driving Innovation with Serverless Applications (GPSBUS212) - AWS re:Invent 2018Driving Innovation with Serverless Applications (GPSBUS212) - AWS re:Invent 2018
Driving Innovation with Serverless Applications (GPSBUS212) - AWS re:Invent 2018
 
Progetta, crea e gestisci Modern Application per web e mobile su AWS
Progetta, crea e gestisci Modern Application per web e mobile su AWSProgetta, crea e gestisci Modern Application per web e mobile su AWS
Progetta, crea e gestisci Modern Application per web e mobile su AWS
 
A great api is hard to find
A great api is hard to findA great api is hard to find
A great api is hard to find
 
AD303: Building Composite Applications for IBM Workplace Collaboration Servic...
AD303: Building Composite Applications for IBM Workplace Collaboration Servic...AD303: Building Composite Applications for IBM Workplace Collaboration Servic...
AD303: Building Composite Applications for IBM Workplace Collaboration Servic...
 
Architecting RIAs
Architecting RIAsArchitecting RIAs
Architecting RIAs
 
soa1.ppt
soa1.pptsoa1.ppt
soa1.ppt
 
IBM WebSphere Portal
IBM WebSphere PortalIBM WebSphere Portal
IBM WebSphere Portal
 
Castle in the Clouds: SaaS Enabling JavaServer™ Faces Applications (JavaOne 2...
Castle in the Clouds: SaaS Enabling JavaServer™ Faces Applications (JavaOne 2...Castle in the Clouds: SaaS Enabling JavaServer™ Faces Applications (JavaOne 2...
Castle in the Clouds: SaaS Enabling JavaServer™ Faces Applications (JavaOne 2...
 
Public v1 real world example of azure functions serverless conf london 2016
Public v1 real world example of azure functions serverless conf london 2016 Public v1 real world example of azure functions serverless conf london 2016
Public v1 real world example of azure functions serverless conf london 2016
 
Building cross platform mobile web apps
Building cross platform mobile web appsBuilding cross platform mobile web apps
Building cross platform mobile web apps
 
Adobe PDF and LiveCycle ES Security
Adobe PDF and LiveCycle ES SecurityAdobe PDF and LiveCycle ES Security
Adobe PDF and LiveCycle ES Security
 
Building Cross Platform Mobile Web Apps
Building Cross Platform Mobile Web AppsBuilding Cross Platform Mobile Web Apps
Building Cross Platform Mobile Web Apps
 
Nuno Godinho
Nuno GodinhoNuno Godinho
Nuno Godinho
 
Serverless Developer Experience I AWS Dev Day 2018
Serverless Developer Experience I AWS Dev Day 2018Serverless Developer Experience I AWS Dev Day 2018
Serverless Developer Experience I AWS Dev Day 2018
 
Client Object Model - SharePoint Extreme 2012
Client Object Model - SharePoint Extreme 2012Client Object Model - SharePoint Extreme 2012
Client Object Model - SharePoint Extreme 2012
 
F1_Design Mission Critical Enterprise Applications with Power Automate and Do...
F1_Design Mission Critical Enterprise Applications with Power Automate and Do...F1_Design Mission Critical Enterprise Applications with Power Automate and Do...
F1_Design Mission Critical Enterprise Applications with Power Automate and Do...
 
icv
icvicv
icv
 
Building API-Driven Microservices with Amazon API Gateway - AWS Online Tech T...
Building API-Driven Microservices with Amazon API Gateway - AWS Online Tech T...Building API-Driven Microservices with Amazon API Gateway - AWS Online Tech T...
Building API-Driven Microservices with Amazon API Gateway - AWS Online Tech T...
 
Aws serverless multi-tier_architectures
Aws serverless multi-tier_architecturesAws serverless multi-tier_architectures
Aws serverless multi-tier_architectures
 

Mais de Aras

Implementing PLM in the Fast-Paced, Innovation Driven Prepared Foods Industry
Implementing PLM in the Fast-Paced, Innovation Driven Prepared Foods IndustryImplementing PLM in the Fast-Paced, Innovation Driven Prepared Foods Industry
Implementing PLM in the Fast-Paced, Innovation Driven Prepared Foods IndustryAras
 
Strategic BOM Management
Strategic BOM ManagementStrategic BOM Management
Strategic BOM ManagementAras
 
Client Technology Directions
Client Technology DirectionsClient Technology Directions
Client Technology DirectionsAras
 
Aras Vision and Roadmap 2016
Aras Vision and Roadmap 2016Aras Vision and Roadmap 2016
Aras Vision and Roadmap 2016Aras
 
Aras Community Update 2016
Aras Community Update 2016Aras Community Update 2016
Aras Community Update 2016Aras
 
MBSE and the Business of Engineering
MBSE and the Business of EngineeringMBSE and the Business of Engineering
MBSE and the Business of EngineeringAras
 
Beyond ECAD Connectors
Beyond ECAD ConnectorsBeyond ECAD Connectors
Beyond ECAD ConnectorsAras
 
The PLM Journey of Justifying Change with Strategic Vision
The PLM Journey of Justifying Change with Strategic VisionThe PLM Journey of Justifying Change with Strategic Vision
The PLM Journey of Justifying Change with Strategic VisionAras
 
The Impact of IoT on Product Design
The Impact of IoT on Product DesignThe Impact of IoT on Product Design
The Impact of IoT on Product DesignAras
 
Enterprise Agile Deployment
Enterprise Agile DeploymentEnterprise Agile Deployment
Enterprise Agile DeploymentAras
 
Taking Manufacturing Process Planning to the Next Level
Taking Manufacturing Process Planning to the Next LevelTaking Manufacturing Process Planning to the Next Level
Taking Manufacturing Process Planning to the Next LevelAras
 
Quality Systems
Quality SystemsQuality Systems
Quality SystemsAras
 
Variant Management
Variant ManagementVariant Management
Variant ManagementAras
 
The Power of Self Service Reporting
The Power of Self Service ReportingThe Power of Self Service Reporting
The Power of Self Service ReportingAras
 
Making users More Productive with Enterprise Search
Making users More Productive with Enterprise SearchMaking users More Productive with Enterprise Search
Making users More Productive with Enterprise SearchAras
 
Understanding the New Content Modeling Framework
Understanding the New Content Modeling FrameworkUnderstanding the New Content Modeling Framework
Understanding the New Content Modeling FrameworkAras
 
Technical Documentation for Technical Publications
Technical Documentation for Technical PublicationsTechnical Documentation for Technical Publications
Technical Documentation for Technical PublicationsAras
 
Supplier Exchange Portal
Supplier Exchange PortalSupplier Exchange Portal
Supplier Exchange PortalAras
 
Quality Planning for Product Risk Management
Quality Planning for Product Risk ManagementQuality Planning for Product Risk Management
Quality Planning for Product Risk ManagementAras
 
How to Configure Tech Docs
How to Configure Tech DocsHow to Configure Tech Docs
How to Configure Tech DocsAras
 

Mais de Aras (20)

Implementing PLM in the Fast-Paced, Innovation Driven Prepared Foods Industry
Implementing PLM in the Fast-Paced, Innovation Driven Prepared Foods IndustryImplementing PLM in the Fast-Paced, Innovation Driven Prepared Foods Industry
Implementing PLM in the Fast-Paced, Innovation Driven Prepared Foods Industry
 
Strategic BOM Management
Strategic BOM ManagementStrategic BOM Management
Strategic BOM Management
 
Client Technology Directions
Client Technology DirectionsClient Technology Directions
Client Technology Directions
 
Aras Vision and Roadmap 2016
Aras Vision and Roadmap 2016Aras Vision and Roadmap 2016
Aras Vision and Roadmap 2016
 
Aras Community Update 2016
Aras Community Update 2016Aras Community Update 2016
Aras Community Update 2016
 
MBSE and the Business of Engineering
MBSE and the Business of EngineeringMBSE and the Business of Engineering
MBSE and the Business of Engineering
 
Beyond ECAD Connectors
Beyond ECAD ConnectorsBeyond ECAD Connectors
Beyond ECAD Connectors
 
The PLM Journey of Justifying Change with Strategic Vision
The PLM Journey of Justifying Change with Strategic VisionThe PLM Journey of Justifying Change with Strategic Vision
The PLM Journey of Justifying Change with Strategic Vision
 
The Impact of IoT on Product Design
The Impact of IoT on Product DesignThe Impact of IoT on Product Design
The Impact of IoT on Product Design
 
Enterprise Agile Deployment
Enterprise Agile DeploymentEnterprise Agile Deployment
Enterprise Agile Deployment
 
Taking Manufacturing Process Planning to the Next Level
Taking Manufacturing Process Planning to the Next LevelTaking Manufacturing Process Planning to the Next Level
Taking Manufacturing Process Planning to the Next Level
 
Quality Systems
Quality SystemsQuality Systems
Quality Systems
 
Variant Management
Variant ManagementVariant Management
Variant Management
 
The Power of Self Service Reporting
The Power of Self Service ReportingThe Power of Self Service Reporting
The Power of Self Service Reporting
 
Making users More Productive with Enterprise Search
Making users More Productive with Enterprise SearchMaking users More Productive with Enterprise Search
Making users More Productive with Enterprise Search
 
Understanding the New Content Modeling Framework
Understanding the New Content Modeling FrameworkUnderstanding the New Content Modeling Framework
Understanding the New Content Modeling Framework
 
Technical Documentation for Technical Publications
Technical Documentation for Technical PublicationsTechnical Documentation for Technical Publications
Technical Documentation for Technical Publications
 
Supplier Exchange Portal
Supplier Exchange PortalSupplier Exchange Portal
Supplier Exchange Portal
 
Quality Planning for Product Risk Management
Quality Planning for Product Risk ManagementQuality Planning for Product Risk Management
Quality Planning for Product Risk Management
 
How to Configure Tech Docs
How to Configure Tech DocsHow to Configure Tech Docs
How to Configure Tech Docs
 

Último

ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024The Digital Insurer
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Principled Technologies
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 

Último (20)

ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 

Special Purpose Role-Based Clients for PLM using Aras

  • 1. ACE 2011 International Role‐Based Clients Copyright © 2011 Aras All Rights Reserved. aras.com
  • 2. Session Goals Define Role‐Based and Application Specific Clients Discuss When can and Why should they be used Tutorial of two simple Clients with architecture and  code samples code samples Copyright © 2011 Aras All Rights Reserved. Slide 2 aras.com
  • 3. Definitions Role‐Based Client or Application Specific Client A PLM User Interface that has been: De‐featured to remove un‐necessary menus and functions Created to consolidate all information (mash‐up) for the specific  task at hand Localized (time zone and language) li d ( i dl ) Designed ergonomically for the environment of the user • Barcode interface instead of a mouse Barcode interface instead of a mouse • Touch‐typist interface instead of a mouse • Mouse driven data entry instead of a keyboard • Touch screen • Mobile device Copyright © 2011 Aras All Rights Reserved. Slide 3 aras.com
  • 4. Why Do We Discuss Role‐Based Clients? #1 success factor for any PLM deployment is the end user adoption. end‐user adoption. PLM (and CRM and ERP) are all highly dependent on  accurate and timely data.   If then end‐users won t use  accurate and timely data If then end users won’t use the PLM clients,  the enterprise data and processes will  continue to be managed in Excel and on Post It Notes.  continue to be managed in Excel and on Post‐It Notes. Willingness to adapt to end‐user requests is important  for reaching the stubborn users.  It becomes  their for reaching the stubborn users It becomes “their”  system instead of an IT mandate. Best way to increase the efficiency of the casual or  B t t i th ffi i f th l infrequent users.  Decreases training requirements. Copyright © 2011 Aras All Rights Reserved. Slide 4 aras.com
  • 5. Why Don’t We use Role‐Based  Clients All the Time then? The overall trend in enterprise business software has  been to use standard out‐of‐the‐box clients been to use standard out of the box clients Cost of development and support with legacy  application technologies has driven IT costs  application technologies has driven IT costs Every data model or process model change results in  changes to client code, and re‐deployment of clients changes to client code and re deployment of clients BUT some of these decision criteria are dated and no  longer relevant.   For example; Even at Aras customers  longer relevant For example; Even at Aras customers we see too much use of the standard client We need a fresh approach – technology allows flexibility,   We need a fresh approach technology allows flexibility so let’s use it to engage the end‐users Copyright © 2011 Aras All Rights Reserved. Slide 5 aras.com
  • 6. PLM Clients 1st Step: Allow Multiple Platforms MOBILE OFFICE CAD Web Services Connections Web Services Connections BROWSER Database File Vault Copyright © 2011 Aras All Rights Reserved. Slide 6 aras.com
  • 7. PLM Clients 2nd Step:  Implement Task‐Specific UI’s MOBILE Web Services Connections BROWSER Database File Vault Copyright © 2011 Aras All Rights Reserved. aras.com
  • 8. Examples Incoming inspection (bar code) Supplier portal Shop floor drawing viewer Customer portal  Web‐site catalog W b i l …  Copyright © 2011 Aras All Rights Reserved. Slide 8 aras.com
  • 9. Aras Recommended Approach Where‐ever possible ‐ drive client layout design  from the Form meta‐model to eliminate Client  from the Form meta model to eliminate Client changes when the PLM data model changes Use the standard Aras web services to simplify  authentication and authorization management authentication and authorization management Copyright © 2011 Aras All Rights Reserved. Slide 9 aras.com
  • 10. Sample Project #1 Simple Portal in standard HTML p High performance for remote clients Highly secure,  all data is Aras Corp confidential (CRM) Highly secure all data is Aras Corp confidential (CRM) Browser independent No .NET Issues Very good for un‐structured Data in lists, files, etc. * A simple 2 hour project for  securely bringing PLM  data to the web site for  d t t th b it f authenticated users Copyright © 2011 Aras All Rights Reserved. Slide 10 aras.com
  • 11. Sample Project #1 Login Screen g Using native PLM authentication by prompting the end-user for username/password, username/password and then using these values in the web services connection. The HTML (ASPX) page becomes a true client to the Aras Innovator server. Standard ASPX page using an ASP Login object p g g g j <asp:Login ID="login" runat="server" onauthenticate="upwd_Authenticate"  > Code behind implements the  upwd_Authenticate Code behind implements the upwd Authenticate method Copyright © 2011 Aras All Rights Reserved. Slide 11 aras.com
  • 12. Sample Project #1 Login – Code Behind g Sample in VB ‐ note Aras IOM.DLL is used for Aras Innovator connection Could have used an XMLHTTP Object to send the XML/SOAP request as well Protected Sub upwd_Authenticate(ByVal sender As Object, ByVal e As AuthenticateEventArgs) Dim username As String = login.UserName Dim password As String = login.Password Dim connection As HttpServerConnection = Aras.IOM.IomFactory.CreateHttpServerConnection Dim connection As HttpServerConnection = Aras IOM IomFactory CreateHttpServerConnection ( “http://My‐Server/Innovator”, “My‐database”, username, password) Dim log_result As Item = connection.Login() If log_result.isError() Then status.Text = "ERROR: " + log_result.getErrorString() Return End If Adding the Innovator Session("MyInnovatorPartner") = New Innovator(connection) Connection to the Session Object Dim ReturnTo As String = Request.QueryString("ReturnTo") If ReturnTo = "" Then Response.Redirect("http://www.aras.com/partnerPortal/MessageList.aspx") Else Response.Redirect(ReturnTo) R R di t(R t T ) End If End Sub Copyright © 2011 Aras All Rights Reserved. Slide 12 aras.com
  • 13. Sample Project #1 Data List Page Example g p Need to ensure that regardless of how this page is reached, directly or th through the Login page, that an h th L i th t authenticated session is enforced. The “Page Load” ASPX method is Page_Load used to test whether this IIS session has a valid Innovator connection, if not, the user is redirected to the LoginPage Standard ASPX page with declared code‐behind <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="default.aspx.vb“ <%@ Page Lang age " b" A toE entWire p "false" CodeBehind "defa lt asp b“ Inherits="PartnerPortal._Default" %> Copyright © 2011 Aras All Rights Reserved. Slide 13 aras.com
  • 14. Sample Project #1 Data Page– Code Behind g Sample in VB   using the Aras IOM.DLL Public ArticlesXML As System.Xml.XmlDocument Protected Sub Page_Load (ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Session("MyInnovatorPartner") Is Nothing Then Dim url As String = Request.Url.AbsoluteUri Response.Redirect("http://www.aras.com/PartnerPortal/Login.aspx?ReturnTo=" & url) End If Dim MyInnovator As Innovator = Session("MyInnovatorPartner") Dim AML As String =  "<AML><Item type=Article' action=get' /></AML>“ Dim Result As Item = MyInnovator.applyAML(AML) Note: loading an XML ArticlesXML.LoadXml(Result.dom.OuterXml) Document with the result from Aras End Sub Very simple test. Is there a named Aras session object in IIS for this user’s session? If not, re-direct to the Login Page, otherwise run the query to populate the HTML page Copyright © 2011 Aras All Rights Reserved. Slide 14 aras.com
  • 15. Sample Project #1 One last hint… AML = "<AML><Item type=Article' action=get' /></AML>“ Dim Result As Item = MyInnovator.applyAML(AML) Dim Result As Item = MyInnovator applyAML(AML) or   AML=“<AM><Item type=‘Article’ action=’My Query Method’ /></AML>” Dim Result As Item = MyInnovator applyAML(AML) MyInnovator.applyAML(AML) We often move the actual query into a Method • Allows division of responsibility between developers • Allows Post‐processing of data • Merging of Federated Items Copyright © 2011 Aras All Rights Reserved. Slide 15 aras.com
  • 16. Sample Project #2 Rich UI Portal in MS‐Silverlight g Wanted a very graphical, snappy user interface Had to handle structured data – i.e. BOM s and other  Had to handle structured data i e BOM’s and other Relationships (too complicated for HTML) IE, FireFox and Chrome IE FireFox and Chrome No .NET  100% Secure HTML5 not ready yet so we used Silverlight Web CRM Timesheets  Ti h Copyright © 2011 Aras All Rights Reserved. Slide 16 aras.com
  • 17. Sample Project #2 Login Screen g Using native PLM authentication by prompting the end-user for end user username/password, and then using these values in the web services connection. The Silverlight control becomes a true client to the Aras Innovator server. NOTE: the Aras IOM.DLL is not used in a Silverlight Project The event model in Silverlight is asynchronous (UI stays active while Web g y ( y Services requests are pending), so all access to the Innovator Server was made using HttpWebRequest objects. Copyright © 2011 Aras All Rights Reserved. Slide 17 aras.com
  • 18. Sample Project #2 Login – Code Behind g Sample in C# public void CallAction(CallContext cc) { // Create the request object   System.Uri myUrl = new System.Uri(Server.Text + "/Server/InnovatorServer.aspx"); HttpWebRequest request = WebRequest.Create(myUrl) as HttpWebRequest; request.Method = "POST"; HttpWebRequest with request.Headers["SOAPAction"] = cc.Action; authenticated SOAP request.ContentType = "text/xml"; request.Headers["AUTHUSER"] = Login_Name.Text; headers request.Headers["AUTHPASSWORD"] = ConvertPasswordToMD5(Password.Password); request.Headers["DATABASE"] = Database.Text; cc.request = request; // need to make a asynch call to get the output stream IAsyncResult asyncResult = request.BeginGetRequestStream(new AsyncCallback(RequestStreamCallback), cc); } The simple pattern is (1) create an AML request as XML string, (2) create the HttpWebRequest Th i l tt i (1) t AML t XML t i (2) t th Htt W bR t and get access to the Stream  (3)  send the AML and then  (4) handle the result (which is XML)  in a callback method .     LINQ and Data Binding are used to load data into the UI. Copyright © 2011 Aras All Rights Reserved. Slide 18 aras.com
  • 19. My next project Silverlight used for a new Collaboration Solution Discussion threads  (forums), Wiki, Chat Using Aras Innovator as the collaboration server, and all  collaboration is persisted in the Aras PLM data model Allow PLM objects to be embedded (with access rights) Runs: In PLM In a Web page I W b Securely Copyright © 2011 Aras All Rights Reserved. Slide 19 aras.com
  • 20. Where to find more resources Aras documentation on web site www.aras.com Community projects  C i j Forums Email me for the projects (Visual Studio 2010)  that were used to build the 2 samples Copyright © 2011 Aras All Rights Reserved. Slide 20 aras.com