SlideShare a Scribd company logo
1 of 20
Download to read 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

More Related Content

What's hot

Ajax World Oct2008 Jrd
Ajax World Oct2008 JrdAjax World Oct2008 Jrd
Ajax World Oct2008 Jrdrajivmordani
 
Egl Rui Ajax World
Egl Rui Ajax WorldEgl Rui Ajax World
Egl Rui Ajax Worldrajivmordani
 
2. FOMS _ FeedHenry_ Mícheál Ó Foghlú
2. FOMS _ FeedHenry_ Mícheál Ó Foghlú2. FOMS _ FeedHenry_ Mícheál Ó Foghlú
2. FOMS _ FeedHenry_ Mícheál Ó FoghlúFOMS011
 
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
 
E2.0 - Next Generation Portal and Content Management
E2.0 - Next Generation Portal and Content ManagementE2.0 - Next Generation Portal and Content Management
E2.0 - Next Generation Portal and Content Managementmuratc2a
 
ALM Integration in a Web 2.0 World
ALM Integration in a Web 2.0 WorldALM Integration in a Web 2.0 World
ALM Integration in a Web 2.0 Worldoslc
 
Google App Engine Update 2012
Google App Engine Update 2012Google App Engine Update 2012
Google App Engine Update 2012David Chandler
 
Oracel ADF Introduction
Oracel ADF IntroductionOracel ADF Introduction
Oracel ADF IntroductionHojjat Abedie
 
Introducing adf business components
Introducing adf business componentsIntroducing adf business components
Introducing adf business componentsPrabhat gangwar
 
Dharmes Mistry Tony De Bree S O A Business Persp V1b
Dharmes  Mistry    Tony De  Bree   S O A Business Persp V1bDharmes  Mistry    Tony De  Bree   S O A Business Persp V1b
Dharmes Mistry Tony De Bree S O A Business Persp V1bSOA Symposium
 
Understanding Oracle ADF and its role in Oracle Fusion Middleware
Understanding Oracle ADF and its role in Oracle Fusion MiddlewareUnderstanding Oracle ADF and its role in Oracle Fusion Middleware
Understanding Oracle ADF and its role in Oracle Fusion MiddlewareRefundation
 
Sharepoint2010applicationplatform 110203035048-phpapp01
Sharepoint2010applicationplatform 110203035048-phpapp01Sharepoint2010applicationplatform 110203035048-phpapp01
Sharepoint2010applicationplatform 110203035048-phpapp01microsoftasap
 
Share point 2010 application platform
Share point 2010 application platformShare point 2010 application platform
Share point 2010 application platformmicrosoftasap
 
CASE-6 Structured Content Authoring and Publishing through Alfresco and Compo...
CASE-6 Structured Content Authoring and Publishing through Alfresco and Compo...CASE-6 Structured Content Authoring and Publishing through Alfresco and Compo...
CASE-6 Structured Content Authoring and Publishing through Alfresco and Compo...Alfresco Software
 
Develop multi-screen applications with Flex
Develop multi-screen applications with Flex Develop multi-screen applications with Flex
Develop multi-screen applications with Flex Codemotion
 
Competitive Analysis w SWOT Matrix
Competitive Analysis w SWOT MatrixCompetitive Analysis w SWOT Matrix
Competitive Analysis w SWOT MatrixDavid Castro
 
Intrgrating sps-2010-and-windows-azure
Intrgrating sps-2010-and-windows-azureIntrgrating sps-2010-and-windows-azure
Intrgrating sps-2010-and-windows-azuremicrosoftasap
 

What's hot (20)

Cloud Computing2
Cloud Computing2Cloud Computing2
Cloud Computing2
 
Ajax World Oct2008 Jrd
Ajax World Oct2008 JrdAjax World Oct2008 Jrd
Ajax World Oct2008 Jrd
 
Egl Rui Ajax World
Egl Rui Ajax WorldEgl Rui Ajax World
Egl Rui Ajax World
 
Donny - EAI
Donny - EAIDonny - EAI
Donny - EAI
 
2. FOMS _ FeedHenry_ Mícheál Ó Foghlú
2. FOMS _ FeedHenry_ Mícheál Ó Foghlú2. FOMS _ FeedHenry_ Mícheál Ó Foghlú
2. FOMS _ FeedHenry_ Mícheál Ó Foghlú
 
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
 
E2.0 - Next Generation Portal and Content Management
E2.0 - Next Generation Portal and Content ManagementE2.0 - Next Generation Portal and Content Management
E2.0 - Next Generation Portal and Content Management
 
As 400
As 400As 400
As 400
 
ALM Integration in a Web 2.0 World
ALM Integration in a Web 2.0 WorldALM Integration in a Web 2.0 World
ALM Integration in a Web 2.0 World
 
Google App Engine Update 2012
Google App Engine Update 2012Google App Engine Update 2012
Google App Engine Update 2012
 
Oracel ADF Introduction
Oracel ADF IntroductionOracel ADF Introduction
Oracel ADF Introduction
 
Introducing adf business components
Introducing adf business componentsIntroducing adf business components
Introducing adf business components
 
Dharmes Mistry Tony De Bree S O A Business Persp V1b
Dharmes  Mistry    Tony De  Bree   S O A Business Persp V1bDharmes  Mistry    Tony De  Bree   S O A Business Persp V1b
Dharmes Mistry Tony De Bree S O A Business Persp V1b
 
Understanding Oracle ADF and its role in Oracle Fusion Middleware
Understanding Oracle ADF and its role in Oracle Fusion MiddlewareUnderstanding Oracle ADF and its role in Oracle Fusion Middleware
Understanding Oracle ADF and its role in Oracle Fusion Middleware
 
Sharepoint2010applicationplatform 110203035048-phpapp01
Sharepoint2010applicationplatform 110203035048-phpapp01Sharepoint2010applicationplatform 110203035048-phpapp01
Sharepoint2010applicationplatform 110203035048-phpapp01
 
Share point 2010 application platform
Share point 2010 application platformShare point 2010 application platform
Share point 2010 application platform
 
CASE-6 Structured Content Authoring and Publishing through Alfresco and Compo...
CASE-6 Structured Content Authoring and Publishing through Alfresco and Compo...CASE-6 Structured Content Authoring and Publishing through Alfresco and Compo...
CASE-6 Structured Content Authoring and Publishing through Alfresco and Compo...
 
Develop multi-screen applications with Flex
Develop multi-screen applications with Flex Develop multi-screen applications with Flex
Develop multi-screen applications with Flex
 
Competitive Analysis w SWOT Matrix
Competitive Analysis w SWOT MatrixCompetitive Analysis w SWOT Matrix
Competitive Analysis w SWOT Matrix
 
Intrgrating sps-2010-and-windows-azure
Intrgrating sps-2010-and-windows-azureIntrgrating sps-2010-and-windows-azure
Intrgrating sps-2010-and-windows-azure
 

Similar to Aras Role Based Clients

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
 

Similar to Aras Role Based Clients (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
 

More from Prodeos

Webinar #10 Document Management
Webinar   #10   Document ManagementWebinar   #10   Document Management
Webinar #10 Document ManagementProdeos
 
Webinar #9 Gestion Documentaire
Webinar   #9   Gestion DocumentaireWebinar   #9   Gestion Documentaire
Webinar #9 Gestion DocumentaireProdeos
 
Webinar #8 Datamodel And Flexibility For Plm
Webinar   #8   Datamodel And Flexibility For PlmWebinar   #8   Datamodel And Flexibility For Plm
Webinar #8 Datamodel And Flexibility For PlmProdeos
 
Webinar #6 DFMEA
Webinar   #6   DFMEAWebinar   #6   DFMEA
Webinar #6 DFMEAProdeos
 
Webinar #4 Express Eco.Pptx
Webinar   #4   Express Eco.PptxWebinar   #4   Express Eco.Pptx
Webinar #4 Express Eco.PptxProdeos
 
Slides Boeing Insitu Enterprise Plm Journey With Aras
Slides Boeing Insitu Enterprise Plm Journey With ArasSlides Boeing Insitu Enterprise Plm Journey With Aras
Slides Boeing Insitu Enterprise Plm Journey With ArasProdeos
 
Webinar #1 Amdec
Webinar   #1   AmdecWebinar   #1   Amdec
Webinar #1 AmdecProdeos
 
Aras How To Think About Aras Integrations
Aras How To Think About Aras IntegrationsAras How To Think About Aras Integrations
Aras How To Think About Aras IntegrationsProdeos
 
Aras Keynote Peter Schroer
Aras Keynote Peter SchroerAras Keynote Peter Schroer
Aras Keynote Peter SchroerProdeos
 
Aras Converter Framework Overview
Aras Converter Framework OverviewAras Converter Framework Overview
Aras Converter Framework OverviewProdeos
 
Prodeos Innovator Procurement
Prodeos Innovator ProcurementProdeos Innovator Procurement
Prodeos Innovator ProcurementProdeos
 
15 Ace 2010 Share Point Plm
15 Ace 2010 Share Point Plm15 Ace 2010 Share Point Plm
15 Ace 2010 Share Point PlmProdeos
 
14 Ace 2010 Replication Workshop
14 Ace 2010 Replication Workshop14 Ace 2010 Replication Workshop
14 Ace 2010 Replication WorkshopProdeos
 
13 Ace 2010 Business Intelligence And Product Analytics
13 Ace 2010 Business Intelligence And Product Analytics13 Ace 2010 Business Intelligence And Product Analytics
13 Ace 2010 Business Intelligence And Product AnalyticsProdeos
 
12 Ace 2010 Solution Packaging Workshop
12 Ace 2010 Solution Packaging Workshop12 Ace 2010 Solution Packaging Workshop
12 Ace 2010 Solution Packaging WorkshopProdeos
 
11 Ace 2010 Aras Configuration And Change Management
11 Ace 2010 Aras Configuration And Change Management11 Ace 2010 Aras Configuration And Change Management
11 Ace 2010 Aras Configuration And Change ManagementProdeos
 
08 Ace 2010 Aras Roadmap
08 Ace 2010 Aras Roadmap08 Ace 2010 Aras Roadmap
08 Ace 2010 Aras RoadmapProdeos
 
10 Ace 2010 Aras Federation Workshop
10 Ace 2010 Aras Federation Workshop10 Ace 2010 Aras Federation Workshop
10 Ace 2010 Aras Federation WorkshopProdeos
 
07 Ace 2010 Aras Innovator For Quality Systems
07 Ace 2010 Aras Innovator For Quality Systems07 Ace 2010 Aras Innovator For Quality Systems
07 Ace 2010 Aras Innovator For Quality SystemsProdeos
 
05 Ace 2010 Xerox Plm With Aras
05 Ace 2010 Xerox Plm With Aras05 Ace 2010 Xerox Plm With Aras
05 Ace 2010 Xerox Plm With ArasProdeos
 

More from Prodeos (20)

Webinar #10 Document Management
Webinar   #10   Document ManagementWebinar   #10   Document Management
Webinar #10 Document Management
 
Webinar #9 Gestion Documentaire
Webinar   #9   Gestion DocumentaireWebinar   #9   Gestion Documentaire
Webinar #9 Gestion Documentaire
 
Webinar #8 Datamodel And Flexibility For Plm
Webinar   #8   Datamodel And Flexibility For PlmWebinar   #8   Datamodel And Flexibility For Plm
Webinar #8 Datamodel And Flexibility For Plm
 
Webinar #6 DFMEA
Webinar   #6   DFMEAWebinar   #6   DFMEA
Webinar #6 DFMEA
 
Webinar #4 Express Eco.Pptx
Webinar   #4   Express Eco.PptxWebinar   #4   Express Eco.Pptx
Webinar #4 Express Eco.Pptx
 
Slides Boeing Insitu Enterprise Plm Journey With Aras
Slides Boeing Insitu Enterprise Plm Journey With ArasSlides Boeing Insitu Enterprise Plm Journey With Aras
Slides Boeing Insitu Enterprise Plm Journey With Aras
 
Webinar #1 Amdec
Webinar   #1   AmdecWebinar   #1   Amdec
Webinar #1 Amdec
 
Aras How To Think About Aras Integrations
Aras How To Think About Aras IntegrationsAras How To Think About Aras Integrations
Aras How To Think About Aras Integrations
 
Aras Keynote Peter Schroer
Aras Keynote Peter SchroerAras Keynote Peter Schroer
Aras Keynote Peter Schroer
 
Aras Converter Framework Overview
Aras Converter Framework OverviewAras Converter Framework Overview
Aras Converter Framework Overview
 
Prodeos Innovator Procurement
Prodeos Innovator ProcurementProdeos Innovator Procurement
Prodeos Innovator Procurement
 
15 Ace 2010 Share Point Plm
15 Ace 2010 Share Point Plm15 Ace 2010 Share Point Plm
15 Ace 2010 Share Point Plm
 
14 Ace 2010 Replication Workshop
14 Ace 2010 Replication Workshop14 Ace 2010 Replication Workshop
14 Ace 2010 Replication Workshop
 
13 Ace 2010 Business Intelligence And Product Analytics
13 Ace 2010 Business Intelligence And Product Analytics13 Ace 2010 Business Intelligence And Product Analytics
13 Ace 2010 Business Intelligence And Product Analytics
 
12 Ace 2010 Solution Packaging Workshop
12 Ace 2010 Solution Packaging Workshop12 Ace 2010 Solution Packaging Workshop
12 Ace 2010 Solution Packaging Workshop
 
11 Ace 2010 Aras Configuration And Change Management
11 Ace 2010 Aras Configuration And Change Management11 Ace 2010 Aras Configuration And Change Management
11 Ace 2010 Aras Configuration And Change Management
 
08 Ace 2010 Aras Roadmap
08 Ace 2010 Aras Roadmap08 Ace 2010 Aras Roadmap
08 Ace 2010 Aras Roadmap
 
10 Ace 2010 Aras Federation Workshop
10 Ace 2010 Aras Federation Workshop10 Ace 2010 Aras Federation Workshop
10 Ace 2010 Aras Federation Workshop
 
07 Ace 2010 Aras Innovator For Quality Systems
07 Ace 2010 Aras Innovator For Quality Systems07 Ace 2010 Aras Innovator For Quality Systems
07 Ace 2010 Aras Innovator For Quality Systems
 
05 Ace 2010 Xerox Plm With Aras
05 Ace 2010 Xerox Plm With Aras05 Ace 2010 Xerox Plm With Aras
05 Ace 2010 Xerox Plm With Aras
 

Recently uploaded

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 

Recently uploaded (20)

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 

Aras Role Based Clients

  • 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