Two attachment interfaces on the same form

I have a four page form. On page one is an attachment interface where users can click a button and add an attachment. the file name appears in a Listbox object "window". I added a second attachment interface on page four. Is it possible to connect these two interfaces so the user can view the same attachments regardless of which interface they are currently looking at? I tried binding as global but I can't see the attachments added to the other interface.
Here's my attachment interface code:
var d = new Date();
var myDoc = event.target;
var sFile = "myFile" + Math.floor(d/1000); 
myDoc.importDataObject({cName: sFile});
var myDataObject = myDoc.getDataObject(sFile);
var sFileName = myDataObject.path;
ListBox1.addItem(sFileName,sFile);
NoOfAttachments.rawValue = NoOfAttachments.rawValue + 1;

how does your server select the default gateway ?
If traffic comes in via the CSS goes out through the outher interface, directly to the pix, bypassing the CSS, then the CSS will reset the connection assuming this is a DOS attack.
So, 2 interfaces is usually a bad idea.
I would simply insert the CSS between the pix and the server. The CSS can still forward traffic directly to the server without the use of a Vip.
Regards,
Gilles.

Similar Messages

  • Problem importing two service interfaces using the same data types

    Hi,
    I've been playing around with BPM for a while. Now I wanted to add a custom service interface to my starting event. I created the interface in ESR of CE 7.11. After importing I get this error message and I can't use the interface:
    Cannot change XsdSimpleTypeDefinition AcademicTitleCodeContent by importing the document http://sap.com/xi/APPL/SE/Global::src/wsdl/TestInterface.wsdl, because it is already defined in the document http://sap.com/xi/APPL/SE/Global::src/wsdl/rootwsdl_CustomerERPByIDQueryResponse_InService.wsdl in this project. Importing into another project might be possible.
    Of course the problem is clear, but how can I achieve importing two service interfaces that use the same data type without changing the xsd source?
    Thanks in advance,
    Mane

    Sorry for the late answer, but I am really busy at the moment.
    Unfortunately I can't the Interface and data types are already changed.
    But this happened various times. Each time I already had imported a SAP Enterprise Service into NW BPM that contains a bunch of inline data types. While creating my own interface I referenced one of those data types that are stored in a SAP namespace. After import the error message appeared.
    In the wsdl of the created interface there is a import statement for the namespace where the referenced data types origin from. Additionally there is a namespace definition xmlns:p1="SAPnamespace". In the element the type is "p1:ReferencedType". Could this maybe cause the error, because one time it is with this leading p1 in my created wsdl and once without in the SAP Service wsdl?
    Thanks and I am looking forward to next EhP of NW BPM,
    Mane

  • EEM Tracking two tunnel interfaces at the same time

    Hi Everyone,
    luckly i just got introduced to EEM lately, and i was wondering how life saver this would be in alot of enviroments..
    I am trying to write an EEM to monitor two out of three tunnel interfaces if they went down i'd like to perform an action on the third interface.
    i went through online posts and saw there was "event track" under the EEM, but when i login to  any of my routers i can't see this, i dont get the option track.
    here is what i want to do..
    monitor tunnel 100 and tunnel 200 - if the line protocol went down or there are no routing information recieved on them action is to unshut tunnel 300 and tunnel 400
    thanks guys for help in advance

    Hi,
    Here is an example that does something similar:
    track 10 interface Ethernet0/0 line-protocol
    delay up 10
    track 11 interface Ethernet0/1 line-protocol
    delay up 10
    track 12 interface Ethernet0/2 line-protocol
    delay up 10
    track 13 interface Ethernet0/3 line-protocol
    delay up 10
    track 19 list threshold percentage
    object 10
    object 11
    object 12
    object 13
    threshold percentage down 51 up 100
    event manager applet DOWN
    event track 19 state down
    action 1.0 cli command "enable"
    action 1.1 cli command "conf t"
    action 2.0 cli command "int lo100"
    action 2.1 cli command "shut"
    action 9.0 syslog priority alerts msg "SWITCHOVER TRIGGER"
    event manager applet UP
    event track 19 state up
    action 1.0 cli command "enable"
    action 1.1 cli command "conf t"
    action 2.0 cli command "int lo100"
    action 2.1 cli command "no shut"
    action 9.0 syslog priority alerts msg "PREEMPT TRIGGER“

  • Prevent multiple users accessing the same form

    hi,
    i am working in forms
    i have a requirement like this
    if more than one user are using the same form and try to access the same record then the second user should not be able to do transaction
    he should be popped up with a msg saying that other user is working on it
    can any one suggest how to do this in my form
    thanks in advance
    selvaraj s

    That is pretty much exactly the way Forms works automatically.
    Two users can use the same form, and can even display the same data record. One of the users can make changes to the record -- Forms locks the row upon the FIRST keystroke in the first field the user begins to change.
    Once the row is locked, the second user is free to look at the record, and won't even know if another user has begun making changes. However, if second user tries to change even one field in the record, Forms pops up the message, "Could not reserve record (2 tries). Keep trying? Yes / No"
    There are also protections so if the first user actually changes the row and commits, then the second user tries to make a change. Forms will automatically detect whether changes were made, and if so, will undo the change and issue the message, "FRM-40654: Record has been updated by another user. Re-query to see change."
    The above automatic processing works very nicely. If it will not work for you, then what is it you need?

  • Two AM's with the same name but different forms causes Deployment problems

    Two Masters forms, DOC & PM are cloned except for the "where clause" in the View's query and the titles in their JSP's.
    DOC workspace has a BC project and a BC4JSP Project. The BC project comprises of the EO and VO named ComVsStaticValue. In the Edit prop-> query for the VO I have specified the "where clause" as VSSV_VS_CODE='DOCTOR'.
    In Java Webserver :-
    The JSP's are located in C:\source\Doctor\ .. and the *.xml and *.class files generated by the BC proj is in C:\source\Doctor\pol_ValueSet\..
    If I execute Doctor in JWS the records are getting filtered properly.
    PM workspace has a BC project and a BC4JSP Project. Again The BC project comprises of the EO and VO named ComVsStaticValue. In the Edit prop-> query for the VO I have specified the "where clause" as VSSV_VS_CODE='PAY_MODE'.
    In Java Webserver :-
    The JSP's are located in C:\source\PMode\ .. and the *.xml and *.class files generated by the BC proj is in C:\source\PMode\pol_ValueSet\..
    If I execute PM in JWS, the PM's JSP comes (the title is correct) but the records pertaining to DOC appears. I checked the View's xml file in C:\source\PMode\pol_ValueSet\ the "where clause" is correct. The xml & classes have the same name but their contents are different.
    I want to know whether this problem is because both have the same name for the AM and the BC4JSP's property file.
    Please clarify.

    Deploying two app modules with the same name will definitely cause problems.
    The JSPs use the information in the properties file to connect to the application module and get the data they need from the appropriate View Objects in those app modules. If you have two app modules with the same name, when a JSP tries to connect, it has no way of knowing which one of the app modules to connect to if they both have the same name.
    You could:
    1. Just use one application module that contains all the View Objects you need to access.
    or
    2. Rename one of the application modules or the package it is located in so the names are distinct. If you choose this method, you will also need to update the JSPs (specifically the 'registerApplicationFrompPopertyFile' method call), and your JSP project's appmodule property file.

  • How to do the same form element alignments on two different regions

    Hi,
    I have two different regions on the same page as the second one is underneath of the first one. Both the regions have some form elements like text field, select list etc. However the alignment of the elements on these two regions are not the same. In the individual regions, it just aligns the input fields based on the maximum length of the label within the region only, so it creates two different vertical alignments per region. How to have the same alignment for the input elements across the regions?
    (I wish to upload the screenshot of the page but there is no provision in this forum to do so).
    Thanks in advance.
    Natarajan

    The basic approach is to set the width of the item labels using a CSS embedded style sheet in the page HTML Header:
    <style type="text/css">
    label {
      display: block;
      width: 15em;
    </style>If you want to limit this to items in specific regions, then give these region(s) static region IDs (such as <tt>region-1</tt>) for use as CSS selectors:
    <style type="text/css">
    #region-1 label,
    #region-2 label {
      display: block;
      width: 15em;
    </style>

  • Use two interfaces on the same network

    Hello every one,
    I actually starting to work on a cisco project. I'm a beginner on networking and cisco technologie.
    For my project we use a router 2921.
    We got two network:
    - Network A: 192.198.0.X / 255.255.255.0 / Gateway 192.198.0.1
    - Network B: 162.168.0.X / 255.255.0.0 / Gateway 162.168.0.1
    Each network use switch, Switch A (connecting to network A) is connected to interface G0/0.
    And Switch B (connecting to network B) is connected to interface G0/1.
    Router well configured as:
    - G0/0: ip address 192.198.0.1 255.255.255.0 (network A)
    - G0/1: ip address 162.168.0.1 255.255.0.0 (network B)
    Every think working fine.
    The problem is with this one, we need to connect a computer on G0/2. This computer is configure as network A (192.198.0.10 / 255.255.255.0 and same gateway).
    I can't configure G0/2 as 192.198.0.1 255.255.255.0 (network A), cause G0/0 use this adresse.
    I can't put this computer on the switch A, my only physical possibilité is to connect him on G0/2.
    We just need to use interface G0/0 and G0/2 as a switch on the router with the same gateway (192.198.0.1)
    How can i connect this computeur? How can i configure two interfaces on the same network and same gateway?
    Thanks you

    I would just put the PC on a different network, but if you really want it to be in the same network, you could use IRB to connect two of the interfaces on the router at layer 2.
    Here is an example config for IRB:
    interface FastEthernet0/0
    bridge-group 1
    interface FastEthernet0/1
    bridge-group 1
    bridge irb
    interface BVI1
    ip address 192.168.0.1 255.255.255.0
    bridge 1 route ip
    Notice that the physical ports do not have IP addresses on them, the IP for the subnet is on the BVI interface.

  • How can multiple users manage the same forms?

    We are looking to purchase FormsCenral however after read this FAQ on teams we are confused:
    http://forums.adobe.com/docs/DOC-2903#Q3
    How do we manage forms if more than one user needs to make changes to the same forms?

    You would have a primary user/e-mail address attached to your FormsCentral account, and you can assign multiple co-authors to any of your forms. They would need to each have a free Adobe ID.
    I work in a Higher Education setting, and have co-workers and Graduate Assistants who are co-authors on forms I've produced, so they can each edit and/or view the submitted response tables.
    I hope that helps,
    Brian

  • Exporting two remote objects on the same port

    Hi,
    I would like to export two remote objects on the same host, same port and bind them with different service names.
    There is no problem when I do that from the same Java program.
    But when I export and bind an object from a Java program 1, I cannot do the same with the second (and similar) Java program 2. This is the stack trace of my Exception:
    java.rmi.server.ExportException: Port already in use: 50040; nested exception is:
         java.net.BindException: Address already in use: JVM_Bind
         at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:243)
         at sun.rmi.transport.tcp.TCPTransport.exportObject(TCPTransport.java:178)
         at sun.rmi.transport.tcp.TCPEndpoint.exportObject(TCPEndpoint.java:382)
         at sun.rmi.transport.LiveRef.exportObject(LiveRef.java:116)
         at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:145)
         at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:129)
         at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:275)
         at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:178)
         at java.rmi.server.UnicastRemoteObject.<init>(UnicastRemoteObject.java:75)Can some one help please

    It should work in any version of Java as long as the server socket factories are null or equal according to Object.equals() or its override in the SSF.equals() method if any. Which needs to be present and needs to take the form:
    public boolean equals(Object object)
      return object != null && object.getClass() == this.getClass();
    }with further tests if the server socket factories have additional state.

  • Open new window in the same form

    Hi
    I created a form with 6 records displayed. I have a check box for each record. I would like to select a record and make the check box checked. Once I check a checkbox I would like to automatically open a new window in the same form with further details of the checked record. Could you please help me how I could work on this.

    Dear you have to create relation between the blocks then you can achieve this like:
    1) Create two canvases in your form (canvas1 and canvas2).
    2) Create a window in your form with name Window2 now you have two windows (Window1 and Window2).
    3) now set the property 'Primary Canvas' of each window (Window1 = Canvas1, window2 = Canvas2)
    4) Now create database block of you main table with (CAT, NAME, DEPT) fields and select the Canvas1 in the layout wizard.
    5) Create another database block with same table but this time select only 3 fields (CAT,SAL, DATE) and at the time of creation mention relation between blocks in the Data block wizard (block1.cat = block2.cat) and select the Canvas2 in the layout wizard.
    6) Now create check box field name MASTER_CHBOX in first block and set Database Item property no of this check box item and set the Value When Checked property to Y and N for Value When unChecked.
    7) Create a trigger on CheckBox Item and paste below code in it.
    if :MASTER_CHBOX = 'Y' then
    show_window('WINDOW2');
    go_item('SAL');
    end if;
    Regards.
    Omer

  • How do I create two iTunes accounts under the same email address?

    I've got my account duplicated -and charged for apps I already own- by using my email address as login instead of apple ID, but I've been told it's my fault so…
    I'm trying to figure out
    *How do I do to create two iTunes accounts under the same email and having different IDs?*
    I mean, two accounts with different purchase history. It doesn't matter if billing address, or credit card are the same (or different) because none of them flag apps as "purchased"
    I tried today from iTunes, but it tells me the email is taken.
    Do you know any way a user can do it from our end? (website, iTunes, iPhone)
    If you've got charged by apps twice, please don't say it here. I don't want my post being deleted again. Thanks.

    Beavis2084:
    Expired .mac accounts HAVE NO EMAIL. You own the id (which iTunes requests to be spelled in form of an email)
    Also, FREE .mac accounts have no email either.
    What you see in the screenshots is what I'm saying:
    There's been a change in the way iTunes wants you to login. The iTunes reps see at their end what you see at the top of the window, which probably is the "migration" of the new login: Old login system, using ID (in form of email for iTunes)
    BELOW you clearly see where says "ID" and both have the email as login.
    (again, that .mac email doesn't exist and NEVER DID)
    That's the NEW login: your EMAIL.
    I'm sorry I didn't explain it better the first time. I wrote about this so many times to iTunes support reps to prevent them to "read" what their system says that I gave it for settled. (not to mention that my first post was removed because "it lacks of interest for others"
    I own an apple ID, given away with the purchase of a new computer (nothing small by the way) and when that happens (and never subscribe for a paid membership), you use ANOTHER email to be related to your account.
    Now that AGAIN apple asks you for using your EMAIL (non-apple in our case) instead of your ID (which you can't use or you will never get a notification again!) the system believes there are two accounts.
    It's like your credit card bank changing the address for sending the payments. You are STILL paying, but getting a higher rate because their CHANGED the address and the check never arrives.
    In this case, signing in with a different string, makes the system believe there are two accounts. And that probably is under the policy which probably states purchases are not charged twice for SAME ID, and SAME iPhone… and you used a different ID, so it must be fair (sarcasm). Who told you to do so? Bad boy!

  • Can you run Edirol / Focusrite firewire interfaces at the same time?

    Hey Guys,
    I have an Edirol FA-101 but i'm just about to get a Focusrite Saffire (or maybe a Motu 8pre...haven't decided yet) and was wondering if I can run the 2 interfaces at the same time for more inputs...i know i can chain 2 of the edirol ones but i'm not sure if it works with different makes.
    Thanks

    so I actually did get myself a focusrite saffire pro 26 and it's pretty cool (apart from the focusrite computer side interface that seems to have a few bugs when you control by hardware...)
    I'm probably gonna get myself an octopre or a twintrack pro to make use of at least some of the extra digital inputs but for now I have the semi redundant Edirol FA-101 in my rack, if I can get the two working together then that's great!
    I have tried what you said and it did pair them together however it made a really awful noise when trying to record, just intense digital distortion and i'm not really sure why. I'm running it all from a macbook pro with only one FW port (that has the Saffire / Edirol / FW Hard drive / Liquid Mix running from it in that order) do you think this order is more the problem?
    Dave

  • How to insert a UUID into multiple tables in the same form

    I am trying to insert a UUID into 2 different tables at the
    same time ie to let this be created in the form and then insert
    this ID into 2 linked tables in a database using Access.
    Does anybody have any suggestions on how to accomplish this?
    Thanks very much

    So you have one form that processes information for two
    tables, or do you
    have two forms (one for each table - except the UUID)?
    If it is one form just run two SQL insert statements. One for
    the primary
    table, then one for the related table.
    If it is two forms run the above two SQL statements then an
    update statement
    to finish filling the second table.
    Or am I completely misunderstanding the issue?
    Bryan Ashcraft (remove brain to reply)
    Web Application Developer
    Wright Medical Technology, Inc.
    Macromedia Certified Dreamweaver Developer
    Adobe Community Expert (DW) ::
    http://www.adobe.com/communities/experts/
    "weelco" <[email protected]> wrote in
    message
    news:esjtjj$qtc$[email protected]..
    > Thanks for your quick reply, and yes I do know how to do
    that however I
    > would
    > like to do this all in one form field so I would like to
    create the UUID
    > whith
    > the same form that also submits it to another table, is
    this possible or
    > do I
    > have to do that using multiple 'pages'?
    >

  • Connect two internet lines on the same cisco router 3945 series

    i have two internet lines from the same provider and i have one router i want to connect the two lines in the same router
    any ideas !!!!!!!!!!!!!

    Hi,
    No problem, similar treatment. Follow 
    1. Create IP SLA/Track for both internet link
    2. Break your LAN subnet into 2 smaller subnet
    3. Create route map, Match with 1 subnet & route the traffic towards 1st internet link
    route-map General_Internet_Traffic permit 10
    match ip address 115
    set ip next-hop verify-availability 10.1.1.1 track 1
    set ip next-hop verify-availability 11.1.1.1 track 2
    4. Create route map, Match with 2 subnet & route the traffic towards 2nd internet link
    5. Configure NATing/PATing over the interface, selecting by route-map 
    ip nat inside source route-map General_Internet_Traffic interface FastEthernet0/0 overload
    - Ashok

  • Two CAS Servers on the same domain but different AD Sites

    I have a customer that has 1 EXCH MB server & 1 EXCH server running the Hub Transport and Client Access roles. These two servers are in the same domain and reside in AD site A. Now he wants AD Site B (also in the same domain) to have 1 EXCH MB server
    & 1 EXCH server running the HUB/CAS role. The problem is the CAS role in site A is the only one that is public interfacing. The CAS server in site B has not certificates at all, and I want all the mail to re-route to the CAS server in Site A. Does anyone
    know how I can do that???

    The CAS in the internet facing site will proxy to the CAS in the non-internet facing site. And you do have a cert on that CAS in Site B. The default built-in one. However, if you have clients in Site B, you should replace that built-in cert with one that
    is trusted by clients such as Outlook and Lync etc...It doesnt have to be a 3rd party cert, it could be on that is trusted internally.
    http://technet.microsoft.com/en-us/library/bb310763(v=exchg.141).aspx
    Understanding Proxying and Redirection
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

Maybe you are looking for

  • JSC, mysql 4.0 data source and utf-8

    Hi all, I connected to mysql 4.0 database from JSC and bound some utf-8 encoded text data to a StaticText component in a JSP page. Data is shown improperly, as a bunch of wierd characters. MySQL 4.0 knows nothing about encodings other than iso8859-1,

  • 802.1x and Remote Agent

    AD 2000 Domain, ACS appliance (running 3.3.1), remote agent on the Certificate authority. setup PEAP per instructions. When i try to login with a user on a desktop, it errors out. This is the error message i see in the RemoteAgent logs CSWinAgent 02/

  • User management exception

    Dear All, I am getting the following exception when i click on the link locked users under user administration tab. User management exception An exception occured.inform your system administrator. suggested options Look at the log file for the cause

  • How to fill tables of VFBS transaction code?

    Hi all, we have modified standard status U of program SAPMV45B in order to have a new button to show an ALV. But when we press 'back' button of the ALV it doesn't work properly and it doesn't return to the corresponding transaction where we were (VA0

  • HT4061 do we have to wait for transfer from old I-phone to new from Apple?

    Do we have to wait for transfer from old I-phone to new from Apple?