ASA 5580 with EtherChannel 20Gbs, Does the Failover link must match the same Speed?

Hello,
I have an ASA 5580, I am plannning on setting two EtherChannels (inside and outside), each channel will include two TenGigabit interfaces.
My questions is that if the links that I am gonig to use for the failover and link, should also be 20Gbs each, or it is ok to use 10Gbs for each link?
According to the Configuration guide 8.4
Use the following failover interface speed guidelines for the ASAs:
• Cisco ASA 5510
– Stateful link speed can be 100 Mbps, even though the data interface can operate at 1 Gigabit due
to the CPU speed limitation.
• Cisco ASA 5520/5540/5550
– Stateful link speed should match the fastest data link.
• Cisco ASA 5580/5585
– Use only non-management 1 Gigabit ports for the stateful link because management ports have
lower performance and cannot meet the performance requirement for Stateful Failover.
Thanks in advance

Hi,
I have 2x ASA5580-20 with 8x1GE interfaces and additional 2x 10GE interfaces each. Software version running is v8.4.4.1.
I am planning to use them in multiple context (active/active) transparent mode. Taking into account the FW performance of 5Gbps real-world traffic per ASA5580-20, which on the following interface configurations would make the most sense?
Option 1:
2x10GE = 20GE Etherchannel for Data
1x1GE LAN Failover
1x1GE STATE Failover
Option 2:
1x 10GE Data
1x 10GE LAN & STATE Failover
Option 3:
2x10GE = 20GE Etherchannel for Data
4x1GE = 4GE Etherchannel for LAN/STATE Failover (possibly up to 8x1GE)
(etherchannel for LAN/STATE Failover actually does not make much sense, since only one interface wll be used anyway)
Option 4:
1x10GE LAN & STATE Failover
8x1GE = 8 GE Etherchannel for Data
I have read several guides (e.g. link1, link2, link3). Some state that 1GE Failover interfaces would suffice for the ASA5580, others recommend a link as fast as the data link. Almost none of them account for higher bandwidth etherchannels.
What is recommended in this case? Both Firewalls will be connected to one VSS Switch Pair, so it would make sense to cross-connect with at least 2 links on each VSS member.
The ASA does not support connecting an EtherChannel to a switch stack. If the ASA EtherChannel is connected cross stack, and if the Master switch is powered down, then the EtherChannel connected to the remaining switch will not come up. (http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/interface_start.html)
Thanks in advance for your feedback!

Similar Messages

  • There are fewer columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.

    I have been looking at my code for hours now and cant figure out what is wrong. The error has kept popping up even when i thought i had fixed everything. maybe a second set of eyes could help me out here. If you could help me out it would be much appreciated.
    USE [ConorsSetKits]
    GO
    CREATE TABLE Customers (
    CustomerID Int NOT NULL IDENTITY(1000,1),
    LastName NChar(30) NOT NULL,
    FirstName NChar(30) NOT NULL,
    Address NChar(50) NOT NULL,
    City NChar(30) NOT NULL,
    State NChar(2) NOT NULL,
    Zip Numeric(5) NOT NULL,
    Email NVarChar(50) NOT NULL,
    DateOfBirth Numeric (4) NOT NULL,
    CONSTRAINT CustomersPK PRIMARY KEY(CustomerID),
    CONSTRAINT ValidZip
    CHECK ( [Zip] LIKE '[0-9][0-9][0-9][0-9][0-9]' ),
    CONSTRAINT ValidState
    CHECK( LEN([State]) = 2),
    CONSTRAINT DateOfBirth
    CHECK ([DateOfBirth] BETWEEN '1920-01-01' AND getdate() - 5844));
    CREATE TABLE Sets (
    SetID Int NOT NULL IDENTITY(1000,1) Primary Key,
    SetName NChar(20) NOT NULL,
    SetType NChar (20) NOT NULL,
    Price Numeric (20) NOT NULL,
    Quantity Numeric (50) NOT NULL,
    CONSTRAINT SetTypeCheck
    CHECK (SetType IN ('Planes','Tanks','Robots','Cars','Helicopters','Boats','Trains','Motorcycles','Jets')),
    CONSTRAINT ValidQuantity 
    CHECK (Quantity >= 0)
    CREATE TABLE Orders (
    OrderID Int NOT NULL IDENTITY(1000,1),
    CustomerID Int NOT NULL,
    OrderDate Date NOT NULL,
    CONSTRAINT CAIntPK PRIMARY KEY(OrderID, CustomerID),
    SET IDENTITY_INSERT dbo.CUSTOMER OFF
    SET IDENTITY_INSERT dbo.Sets OFF
    SET IDENTITY_INSERT dbo.Orders OFF
    SET IDENTITY_INSERT dbo.CUSTOMER ON
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1000, 'Janes', 'Jeffrey', '123 W. Elm St', 'Renton', 'WA', '98055',
    '[email protected]',1985);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1001, 'Smith', 'David', '813 Tumbleweed Lane', 'Loveland', 'CO', '81201', 
    '[email protected]',1992);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1015, 'Twilight', 'Tiffany', '88 1st Avenue', 'Langley', 'WA', '98260',
    '[email protected]',1972);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1033, 'Smathers', 'Fred', '10899 88th Ave', 'Bainbridge Island', 'WA', '98110',
    '[email protected]',1980);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1034, 'Frederickson', 'Mary Beth', '25 South Lafayette', 'Denver', 'CO', '80201',
    '[email protected]',1970);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1036, 'Warning', 'Selma', '205 Burnaby', 'Vancouver', 'BC', '80201',
    '[email protected]',1981);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1037, 'Wu', 'Susan', '105 Locust Ave', 'Atlanta', 'GA', '30322',
    '404', '653-3465', '[email protected]',1971);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1040, 'Gray', 'Donald','55 Bodega Ave', 'Bodega Bay', 'CA', '94923',
    '[email protected]',1985);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1041, 'Johnson', 'Lynda', '117 C Street', 'Washington', 'DC', '20003',
    '[email protected]',1969);
    INSERT INTO Customers
    (CustomerID, LastName, FirstName, Address, City, State, Zip,
    Email, DateOfBirth)
    VALUES (
    1051, 'Wilkens', 'Chris', '87 Highland Drive', 'Olympia', 'WA', '98508',
    '[email protected]',1994); 
    SET IDENTITY_INSERT dbo.CUSTOMER OFF
    SET IDENTITY_INSERT dbo.Sets ON
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1000, 'MysterySet1','Planes',$29.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1001, 'MysterySet2','Planes',$19.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1002, 'MysterySet4','Tanks',$39.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1003, 'MysterySet3','Robots',$19.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1004, 'MysterySet5','Cars',$29.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1005, 'MysterySet6','Boats',$29.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1006, 'MysterySet7','Trains',$39.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1007, 'MysterySet8','Motorcycles',$9.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1008, 'MysterySet9','Helicopters',$29.99,10);
    INSERT INTO Sets
    (SetID, SetName, SetType, Price, Quanity)
    VALUES (
    1009, 'MysterySet10','Jets',$29.99,10);
    SET IDENTITY_INSERT dbo.Sets OFF
    SET IDENTITY_INSERT dbo.Orders ON
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1000, '2012-12-12');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1000, '2013-12-30');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1005, '2013-08-30');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1004, '2013-12-30');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1004, '2013-08-31');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1004, '2014-03-25');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1002, '2012-11-14');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1001, '2012-11-14');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1001, '2013-01-05');
    INSERT INTO Orders 
    (OrderID, OrderDate)
    VALUES 
    (1006, '2012-06-22');
    SET IDENTITY_INSERT dbo.Orders OFF

    Price Numeric (20) NOT NULL,
    I do not think you understand this datatype?  Go look at the values you are attempting to insert into this column.  For example, "$29.99".  After the insert, what value is actually stored in that column? 
    DateOfBirth Numeric (4) NOT NULL,
    No. Just No.  Either change the column name to faithfully represent what values you intend to store (and apply the appropriate constraints) or change the datatype and the values that you intend to store to match the column name.  And the constraint
    that you do have:
     CONSTRAINT DateOfBirth
     CHECK ([DateOfBirth] BETWEEN '1920-01-01' AND getdate() - 5844));
    is both logically suspect and syntactically wrong. First, the upper boundary will be computed as 1999-04-29 15:50:21.670.  But, of course, your column is a whole number of no more than 4 digits.  The same issue applies to your lower boundary. 
    A simple select statement will show you those errors
    select cast('1920-01-01' as numeric(4)), getdate() - 5844, cast(getdate() - 5844 as numeric(4));
    An insert statement fails with the same error.  Because, of course, your boundary values must actually be converted to numeric(4) in order to compare them against the value contained in the column.   Generally, you can convert from
    string to numeric - IF the content of the string actually contains a value that is numeric and can be converted into the specific type needed.  Not so in this case.  Is this 16 year period (5844 days) significant for some reason?  You should
    document it here in your DDL with a comment, because it is unlikely to be documented (and kept current) anywhere else. 
    And lastly, your script has:
    SET IDENTITY_INSERT dbo.CUSTOMER OFF
    That is not the name of your table, and therefore that statement also fails.  The table name you used is plural. 

  • I synced my iTunes with my iPhone 5. Some of the titles don't match the songs. When I checked the iTunes database, yes it is the latest version, the titles and songs matched correctly. so how do I fix this on my phone?

    I synced my iTunes with my iPhone 5. some of the titles on't match the songs. I checked my iTunes database, it is the latest version, and the titles and songs all match. So how do I fix this on my iPhone?

    Sounds like you may need to re-download the entire albums from iTunes. See this KB article for how to download past purchases: http://support.apple.com/kb/HT2519.
    I'd suggest doing it one album at a time. Delete one, download it from your purchase histor, then the next, etc.

  • If I am viewing a page with the words date or match, the words are hyperlinks to a dating website. This is not so if I view the same pages in IE and has not been picked up by Norton, Spybot or malware bytes etc. Is this a Firefox bug?

    If I am viewing a page with the words date or match, the words are hyperlinks to a dating website. This is not so if I view the same pages in IE and has not been picked up by Norton, Spybot or malware bytes etc. Is this a Firefox bug?

    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    * "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Does Authenticated SMTP Ensure that the Sender Email Address Matches the Username/password Entered?

    Does Authenticated SMTP ensure that the sender email address
    matches the username/password entered?
    <P>
    Not by default. However, in netscape.mail.conf, you can set
    RewriteFromUsingAuth and/or RewriteSenderUsingAuth to "Yes"
    which will rewrite the header "From:" and/or "Sender:" to be
    the authenticated sender of the message.
    <P>
    On NT, the keys are in the registry under
    HKEY_LOCAL_MACHINE\Software\Netscape\Messaging Server\3.0\Dispatch\Config

    I found the answer.
    Apple has turned on an app-specific password for iPhoto and other Apple apps. It's located in the Apple ID management section under Passwords and Security.
    As soon as I entered that new generated password in iPhoto I was able to send a pic with my iCloud.com email address.
    Now I know where to go. Thanks for your help.

  • I have been having a issue with getting the colors on my monitor to match the colors fro my print lab. I now have the monitor calibrated to match the prints but when I open elements it doesn't use the same colors. If i have it use the calibrated profile b

    I have been having a issue with getting the colors on my monitor to match the colors fro my print lab. I now have the monitor calibrated to match the prints but when I open elements it doesn't use the same colors. If i have it use the calibrated profile by changing the color management settings, the color picker no longer shows true white or black. How do I get elements 12 to honor the new calibrated settings?

    Ok so I've done what you said and this is what it's come back ....
    I don't know that these are the errors , but they're the things which don't look right ...
    Throughout the shut down there is a recurring line ;
    It says ;
    Com.apple.launchd 1 0x100600e70.anonymous.unmount 301 PID still valid
    Then there are 2 more which I think are related ;
    Com.apple.securityd 29 PID job has I overstayed its welcome , forcing removal.
    Then the same with fseventd 48 and diskarbitrationd 13
    Oh and on Launchd1 : System : stray anonymous job at shut down : PID 301 PPID13 PGID 13 unmount...
    Then the last process says "about to call: reboot (RB_AUTOBOOT).
    Continuing...
    And stops ...
    Hope this means something to you ... Thanks again for your help so far :-)

  • HT5576 E-mail to Kdnci Alveamcunnina change their security questions with Apple Can I change the email link Barsaalh change the email to the main email with Apple

      E-mail to Kdnci Alveamcunnina change their security questions with Apple Can I change the email link Barsaalh change the email to the main email with Apple

    Contact Apple and ask the account security team for assistance: http://support.apple.com/kb/HT5699.

  • 11.1.1.4:Could not find the item selected to match the value of type Number

    Hi,
    I have a taskflow with an input parameter.
    The input parameter value is to be assigned to a list item as the default selected value.
    I have mapped the pageFlow scope parameter to set value to the list item using input page parameters defined in task flow.
    but When i Run the task flow the value does not get assigned to the drop down list and jdevloper console screen shows up the following message
    "Could not find the item selected to match the value 2 by type: oracle.jbo.domain.Number in LOV."
    But If I click the Lov to check the values it shows that value is present in the list.
    The same configurations works if the list of values is for a column with type as java.lang.String.
    Is it somethng different that is to be done for a Number field to assign value from a taskflow parameter?
    Edited by: user3067156 on Jun 25, 2011 3:34 PM

    Hi Jobinesh,
    I am assigning the default value in the task flow using input page parameters ...
    <view id="VIEW1">
    <page>/title.jsff</page>
    <input-page-parameter>
    <from-value>#{pageFlowScope.pInputTyp_Id}</from-value>
    <to-value>#{bindings.pTyp_Id1.attributeValue}</to-value>
    </input-page-parameter>
    </view id>
    It does not assign the value, if Bind variable(pTyp_Id1) NDtype and task flow input parameter(pInputTyp) class type, both are set to use type oracle.jbo.domain.Number.
    If I change both to use java.lang.String and additionally also change the VO defination the accept the bind variable of type string, it assigns the value correctly.
    Usecase:
    I have a a task flow for which has its first page a search page.
    The Search page is created using operation execute with params and dragging the query parameters on the page.
    The Query parameters are to be filled using a select one choice option and the list is bound to the master values.
    This task flow can be used inside a standalone page as a region to provide a search page
    The same task flow can be called from within another taskflow which will provide the default values for the drop down lists ..
    Since the search page is a jsff fragment i dont have a page on load handler to provide default values..
    So assiging the values using input page parameters defined in task flow view tag.
    For testing I am passing the taskflow input parameters by calling the task flow from a jspx page a region . When I configure this task flow a region in a page its asks for providing the values for the parameters
    And the same gets configured in my testpage def as
    <executables>
    <variableIterator id="variables"/>
    <taskFlow id="Flow1" taskFlowId="/WEB-INF/Flow1.xml#Flow1"
    activation="deferred"
    xmlns="http://xmlns.oracle.com/adf/controller/binding">
    <parameters>
    <parameter id="pTyp_Id" value="1207"/>
    </parameters>
    </taskFlow>
    </executables>
    Edited by: user3067156 on Jun 27, 2011 1:50 PM

  • 3201: The publisher display name FooBar, specified in the package doesn't match the publisher name, FooBar

    I've updated a WP 8.0 application to WP 8.1 Silverlight. When I try to deploy a demo application I get the following error;
    3201: The publisher display name, FooBar, specified in the package doesn’t match the publisher name,
    FooBar, that’s associated with the developer account.
    I've seen several cases with people encounter this issue and then solved by modifying WPAppManifest or the Packages file. My problem is that the
    display name and publisher name is exactly the same. Both in the application xml files and in the error message displayed by windows phone store. 
    Any suggestions?

    There is no requirement that source code files are in the correct directory structure. If you want javac to be able to automatically compile dependent files, then the source code must be in an appropriate structure and find-able from the classpath.
    Also, when you use the -d option, javac will create an appropriate directory relative to the directory specified in the -d option. That's how it is supposed to work.
    So it is working as designed and specified.

  • How do I hide the Mobile Link section in the adroid app?

    I do not use nor intend to use the Mobile Link for adobe cloud.  I use it only to view PDF files sent via email or the 2 cloud services I do use, which sync to device storage from which adobe reads.  Why can I not remove the mobile link banner, which uses a lot of space?

    Hi,
    Thanks for your feedback. We would like to know more about the issue that you are facing in using the application. Are you referring to the Mobile Link banner(like the figure below)
    or the Mobile Link status bar(like the one below).
    If the issue is with the former, are you unable to dismiss it by tapping on the 'cross' button on the top right of the banner marked in the first image?
    Awaiting your response.
    Thanks,
    Adobe Reader Team

  • Errors (-50) occured when i was using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in my iTunes application on my computer.

    errors (-50) occured when i was using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in my iTunes application on my computer.
    what is it?

    Quoted from the link I provided you with, in your other post.
    These alerts occur due to timeouts or conflicts trying to write a file during download.
    If you encounter this issue while accessing iTunes Store:
    See iTunes 9: "One Moment Please" or "Error (-50)" message when accessing iTunes Store
    If you encounter this issue while while downloading something from the iTunes Store:
    Delete your iTunes Downloads folder, located in:
    Mac OS X:
  ~/Music/iTunes/iTunes Media/Downloads   Note: "iTunes Media" may appear as "iTunes Music. Also, the tilde (~) refers to your Home directory.
    Windows Vista:
  \Users\username\Music\iTunes\iTunes Media\Downloads\
    Windows 7:
  \Users\username\My Music\iTunes\iTunes Media\Downloads\
    Windows XP:
  \Documents and Settings\username\My Documents\My Music\iTunes\iTunes Media\Downloads\
    After locating your iTunes Downloads folder:
    Quit iTunes.
    Delete the Downloads folder on your computer.
    Open iTunes.
    Choose Store > Check for Available Downloads.
    Enter your account name and password.
    If you encounter this issue while while downloading Digital Copies using Windows:
    Use MSCONFIG (directions for Windows XP and Windows Vista/Windows 7) to disable conflicting software.
    If using MSCONFIG steps resolves the issue, you may want to use the System Configuration Utility to turn on the third-party System Services and Startup Items one at a time (restarting your computer after turning on the item or items) to identify which System Service or Startup Item is causing the conflict.
    You can turn all of them back on by selecting the Normal Startup option under the General tab of the System Configuration Utility window, but please note that this may cause the issue to reoccur.
    If you are able to isolate the issue to a particular third-party software, you may wish to contact them to let them know of the conflict.

  • AXIS - The arguments do not match the signature

    I have developed a web service and deployed it, everything looks fine, but it doesn't work. When I try to call the method I get an exception:
    Tried to invoke method public static dk.decon.dsi.midtier.dto.DsiTO dk.decon.dsi.facade.DataFacade.getJournal(int) throws dk.decon.dsi.midtier.exceptions.DaoException with arguments null. The arguments do not match the signature.; nested exception is: java.lang.IllegalArgumentException
    I think that the problem is that I'm calling a method that returns a complex object, apparently AXIS is having problems with those?
    The wsdl looks like:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <wsdl:definitions targetNamespace="urn:DataFacadeWS" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="urn:DataFacadeWS" xmlns:intf="urn:DataFacadeWS" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://dto.midtier.dsi.decon.dk" xmlns:tns2="http://exceptions.midtier.dsi.decon.dk" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <!--
    WSDL created by Apache Axis version: 1.3
    Built on Oct 05, 2005 (05:23:37 EDT)
    -->
    - <wsdl:types>
    - <schema targetNamespace="http://dto.midtier.dsi.decon.dk" xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://exceptions.midtier.dsi.decon.dk" />
    <import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
    - <complexType name="Address">
    - <sequence>
    <element name="addressNumber" type="xsd:int" />
    <element name="addressType" nillable="true" type="xsd:base64Binary" />
    <element name="city" nillable="true" type="soapenc:string" />
    <element name="country" type="xsd:int" />
    <element name="faxNumber" nillable="true" type="soapenc:string" />
    <element name="journalNumber" type="xsd:int" />
    <element name="poboxnumber" nillable="true" type="soapenc:string" />
    <element name="postalCode" nillable="true" type="soapenc:string" />
    <element name="streetName" nillable="true" type="soapenc:string" />
    <element name="streetNumber" nillable="true" type="soapenc:string" />
    <element name="telephoneNumber" nillable="true" type="soapenc:string" />
    </sequence>
    </complexType>
    - <complexType name="Detachment">
    - <sequence>
    <element name="accept" type="xsd:short" />
    <element name="companyID" type="xsd:int" />
    <element name="contactPerson" nillable="true" type="soapenc:string" />
    <element name="contractDate" nillable="true" type="xsd:dateTime" />
    <element name="contractSuspended" type="xsd:short" />
    <element name="country" type="xsd:int" />
    <element name="definedByCompanyID" type="xsd:short" />
    <element name="department" nillable="true" type="soapenc:string" />
    <element name="description" nillable="true" type="soapenc:string" />
    <element name="detachEmployer" type="xsd:short" />
    <element name="detachmentID" type="xsd:int" />
    <element name="employerAgencyID" type="xsd:short" />
    <element name="endDate" nillable="true" type="xsd:dateTime" />
    <element name="fullTime" type="xsd:short" />
    <element name="function" nillable="true" type="soapenc:string" />
    <element name="hireFireByCompanyID" type="xsd:short" />
    <element name="homeEmployer" type="xsd:short" />
    <element name="initiativeCompanyID" type="xsd:short" />
    <element name="journalNumber" type="xsd:int" />
    <element name="layOffPaymentByCompanyID" type="xsd:short" />
    <element name="lineOfBusiness" nillable="true" type="soapenc:string" />
    <element name="nativeStatus" type="xsd:short" />
    <element name="occupation" nillable="true" type="soapenc:string" />
    <element name="occupationContent" nillable="true" type="soapenc:string" />
    <element name="otherCompany" type="xsd:short" />
    <element name="personID" type="xsd:int" />
    <element name="salaryByCompanyID" type="xsd:short" />
    <element name="salaryRaiseByCompanyID" type="xsd:short" />
    <element name="socialSecurityByCompanyID" type="xsd:short" />
    <element name="startDate" nillable="true" type="xsd:dateTime" />
    <element name="workstationID" type="xsd:int" />
    <element name="workstationIDNull" type="xsd:boolean" />
    </sequence>
    </complexType>
    - <complexType name="Homeaddressconnect">
    - <sequence>
    <element name="addressNumber" type="xsd:int" />
    <element name="addressType" nillable="true" type="soapenc:string" />
    <element name="fromDate" nillable="true" type="xsd:dateTime" />
    <element name="personId" type="xsd:int" />
    <element name="toDate" nillable="true" type="xsd:dateTime" />
    </sequence>
    </complexType>
    - <complexType name="Journal">
    - <sequence>
    <element name="journalNumber" type="xsd:int" />
    </sequence>
    </complexType>
    - <complexType name="Person">
    - <sequence>
    <element name="birthDate" nillable="true" type="xsd:dateTime" />
    <element name="birthName" nillable="true" type="soapenc:string" />
    <element name="cellPhoneNumber" nillable="true" type="soapenc:string" />
    <element name="country" type="xsd:int" />
    <element name="familyName" nillable="true" type="soapenc:string" />
    <element name="firstNames" nillable="true" type="soapenc:string" />
    <element name="homeAddressNumber" type="xsd:int" />
    <element name="journalNumber" type="xsd:int" />
    <element name="occupationStatus" nillable="true" type="xsd:base64Binary" />
    <element name="personID" type="xsd:int" />
    <element name="personalEmail" nillable="true" type="soapenc:string" />
    <element name="professionalEmail" nillable="true" type="soapenc:string" />
    <element name="socialSecurityDate" nillable="true" type="xsd:dateTime" />
    <element name="socialSecurityNumber" nillable="true" type="soapenc:string" />
    </sequence>
    </complexType>
    - <complexType name="EmployeeTO">
    - <sequence>
    <element name="address" nillable="true" type="tns1:Address" />
    <element name="detachment" nillable="true" type="tns1:Detachment" />
    <element name="homeaddressconnect" nillable="true" type="tns1:Homeaddressconnect" />
    <element name="journal" nillable="true" type="tns1:Journal" />
    <element name="person" nillable="true" type="tns1:Person" />
    </sequence>
    </complexType>
    - <complexType name="Company">
    - <sequence>
    <element name="companyAddressNumber" nillable="true" type="soapenc:string" />
    <element name="companyID" type="xsd:int" />
    <element name="companyName" nillable="true" type="soapenc:string" />
    <element name="companyRegistrationNumber" nillable="true" type="soapenc:string" />
    <element name="country" type="xsd:int" />
    <element name="journalNumber" type="xsd:int" />
    </sequence>
    </complexType>
    - <complexType name="Homeemployment">
    - <sequence>
    <element name="companyID" type="xsd:int" />
    <element name="contract" type="xsd:short" />
    <element name="contractDate" nillable="true" type="xsd:dateTime" />
    <element name="country" type="xsd:int" />
    <element name="detachmentLetter" type="xsd:short" />
    <element name="endDate" nillable="true" type="xsd:dateTime" />
    <element name="homeEmploymentID" type="xsd:int" />
    <element name="personID" type="xsd:int" />
    <element name="startDate" nillable="true" type="xsd:dateTime" />
    </sequence>
    </complexType>
    - <complexType name="EmployerTO">
    - <sequence>
    <element name="address" nillable="true" type="tns1:Address" />
    <element name="company" nillable="true" type="tns1:Company" />
    <element name="detachment" nillable="true" type="tns1:Detachment" />
    <element name="homeemployment" nillable="true" type="tns1:Homeemployment" />
    <element name="person" nillable="true" type="tns1:Person" />
    </sequence>
    </complexType>
    - <complexType name="HistoryTO">
    - <sequence>
    <element name="detachment" nillable="true" type="tns1:Detachment" />
    </sequence>
    </complexType>
    - <complexType name="OccupationTO">
    - <sequence>
    <element maxOccurs="unbounded" name="address" nillable="true" type="tns1:Address" />
    <element name="company" nillable="true" type="tns1:Company" />
    <element name="detachment" nillable="true" type="tns1:Detachment" />
    </sequence>
    </complexType>
    - <complexType name="QuestionsTO">
    - <sequence>
    <element name="address" nillable="true" type="tns1:Address" />
    <element name="company" nillable="true" type="tns1:Company" />
    <element name="detachment" nillable="true" type="tns1:Detachment" />
    <element name="person" nillable="true" type="tns1:Person" />
    </sequence>
    </complexType>
    - <complexType name="WorkplaceInfoTO">
    - <sequence>
    <element name="address" nillable="true" type="tns1:Address" />
    <element name="company" nillable="true" type="tns1:Company" />
    <element name="detachment" nillable="true" type="tns1:Detachment" />
    </sequence>
    </complexType>
    - <complexType name="DsiTO">
    - <sequence>
    <element name="employeeTO" nillable="true" type="tns1:EmployeeTO" />
    <element name="employerTO" nillable="true" type="tns1:EmployerTO" />
    <element name="historyTO" nillable="true" type="tns1:HistoryTO" />
    <element name="journalNo" type="xsd:int" />
    <element name="occupationTO" nillable="true" type="tns1:OccupationTO" />
    <element name="questionsTO" nillable="true" type="tns1:QuestionsTO" />
    <element name="workplaceInfoTO" nillable="true" type="tns1:WorkplaceInfoTO" />
    </sequence>
    </complexType>
    </schema>
    - <schema targetNamespace="http://exceptions.midtier.dsi.decon.dk" xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://dto.midtier.dsi.decon.dk" />
    <import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
    - <complexType name="DaoException">
    - <sequence>
    <element name="cause" nillable="true" type="xsd:anyType" />
    </sequence>
    </complexType>
    </schema>
    </wsdl:types>
    - <wsdl:message name="saveRequest">
    <wsdl:part name="dsiTO" type="tns1:DsiTO" />
    </wsdl:message>
    - <wsdl:message name="getJournalResponse">
    <wsdl:part name="getJournalReturn" type="tns1:DsiTO" />
    </wsdl:message>
    - <wsdl:message name="saveResponse">
    <wsdl:part name="saveReturn" type="tns1:DsiTO" />
    </wsdl:message>
    - <wsdl:message name="getJournalRequest">
    <wsdl:part name="journalNo" type="xsd:int" />
    </wsdl:message>
    - <wsdl:message name="DaoException">
    <wsdl:part name="fault" type="tns2:DaoException" />
    </wsdl:message>
    - <wsdl:portType name="DataFacade">
    - <wsdl:operation name="getJournal" parameterOrder="journalNo">
    <wsdl:input message="impl:getJournalRequest" name="getJournalRequest" />
    <wsdl:output message="impl:getJournalResponse" name="getJournalResponse" />
    <wsdl:fault message="impl:DaoException" name="DaoException" />
    </wsdl:operation>
    - <wsdl:operation name="save" parameterOrder="dsiTO">
    <wsdl:input message="impl:saveRequest" name="saveRequest" />
    <wsdl:output message="impl:saveResponse" name="saveResponse" />
    <wsdl:fault message="impl:DaoException" name="DaoException" />
    </wsdl:operation>
    </wsdl:portType>
    - <wsdl:binding name="DataFacadeSoapBinding" type="impl:DataFacade">
    <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    - <wsdl:operation name="getJournal">
    <wsdlsoap:operation soapAction="" />
    - <wsdl:input name="getJournalRequest">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:DataFacadeWS" use="encoded" />
    </wsdl:input>
    - <wsdl:output name="getJournalResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:DataFacadeWS" use="encoded" />
    </wsdl:output>
    - <wsdl:fault name="DaoException">
    <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="DaoException" namespace="urn:DataFacadeWS" use="encoded" />
    </wsdl:fault>
    </wsdl:operation>
    - <wsdl:operation name="save">
    <wsdlsoap:operation soapAction="" />
    + <wsdl:input name="saveRequest">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:DataFacadeWS" use="encoded" />
    </wsdl:input>
    - <wsdl:output name="saveResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:DataFacadeWS" use="encoded" />
    </wsdl:output>
    - <wsdl:fault name="DaoException">
    <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="DaoException" namespace="urn:DataFacadeWS" use="encoded" />
    </wsdl:fault>
    </wsdl:operation>
    </wsdl:binding>
    - <wsdl:service name="DataFacadeService">
    - <wsdl:port binding="impl:DataFacadeSoapBinding" name="DataFacade">
    <wsdlsoap:address location="http://localhost:8080/axis/services/DataFacade" />
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    Any help will be greatly appreciated....

    Hi,
    That sounds interesting.
    I tried a small example which calls a Sequence which passes two paramaters, one number and one string. I then linked these two locals except I specified them as one string and one number.  I changed the load setting of the SequenceCall Step to Preload when sequencefile opened. I saved and closed the file.
    When I opened the file, no warning or error was flagged. When the Sequence was run it errored on the call to the step with "Type of argument expression 'Locals.arg1' is incompatible with parameter 'Arg1'. Expected Number, found String".
    It would be quite envolved to a find all the sequences in a file, get it's arguments, get the Expression, check if its not a constant and if not get the type of the variable in the expression and check it against argument parmater type. Repeat this for all parameter arguments. Repeat this for all sequences.
    Then how do you report an errors. How do you handle SequenceCalls that call sequences contained in different sequencefiles.
    You can find the arguments in the Step.TS.SData.ActualArgs.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • The API Library version must match the MDM Server version

    hi friends,
    The API Library version must match the MDM Server version
    is it compulsory.
    if so please let me know the compatible matching versions between them....

    Hi Ram,
    Yes the JAR file Version should be compatible with the version of MDM Server.
    Supposedly you have MDM Version of SP05 the Jar files should also be of SP05 version , if you use JAR files of older version it wouldnt contain  new classes and methods of the newer APIs and would also contain some old classes which arent present in latest version.
    Thanks
    Namrata

  • HT201210 i want to make restore and update to my phone(3gs) and don't do it never because write "restore can't be finished because the  i-phone device don't found" !!!!?????i can't open my phone because it has at screen the icon (who must connect the devi

    i want to make restore and update to my phone(3gs) and don't do it never because write "restore can't be finished because the  i-phone device don't found" !!!!?????i can't open my phone because it has at screen the icon (who must connect the device withpc

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • Is there a way to check what I had purchased from the itune store to match the charges on my credit card, because there is a charge that I do not recognize

    Is there a way to check what I had purchased from the itune store to match the charges on my credit card, because there is a charge that I do not recognize

    http://support.apple.com/kb/HT2727
    Regards.

Maybe you are looking for

  • Conditional Display Based on a Field Value

    I'm a newbie ... I developed an application that shows payment information. Record type one is a cheque Record type two is a payment stub Rec Type Account Amount PDFFile 1 888888 1234.00 summary.pdf 2 888888 10.00 2 888888 400.00 2 888888 800.00 2 88

  • Can we change the Currency in the PO after GR and  invoice posting

    Hi Can we change the currency in the PO , Once after posting of the GR and Invoice. If posssible please suggest me the steps. Best Regards, Sairam

  • Application Object - ApplicationData

    Hello All: I am trying to set retreive an Application-wide variable from the Application object from within a P.E.I. using the ApplicationData object. I see the GetApplication() that returns a com.plumtree.uiinfrastructure.web.IApplication object but

  • Creating Classification view for material through Standard Function

    hi, I have created the material code through BAPI_MATERIAL_SAVEDATA. For quality inspection i have used BAPI_MATINSPCTRL_SAVEREPLICA. i have to create classification view for that material code. Can anyone suggest me which standard function helps me

  • Aac audio doesn't seem to work in AIR at all

    I was looking at sample code from David Hassoun about how to play AAC sound files in Flash. His code in Flash works great. But the same code more or less, moved to an AIR Desktop project, fails completely, without any error message. A baffling situat