Splitting 1:n and splitting to 2 interfaces

Hello guru's
I have the following scenario and requirements.
I receive one message with multiple records from Sender.
1)  All records must be sent separately to Receiver
(easy to do with the 1:n split)
2)  Depending on content of the record some records must be mapped differently and sent via a different interface.
So my example is this:
<message>
  <record>
    <ID> 1111 </ID>
    <indicator>NEW</indicator>
  </record>
  <record>
     <ID> 2222 </ID>
     <indicator>NEW</indicator>
  </record>
     <ID> 3333 </ID>
     <indicator>CHG</indicator>
  </record>
  <record>
    <ID> 4444 </ID>
    <indicator>CHG</indicator>
  </record>
</message>
So in this case it would be that all records where indicator has value NEW we must use mapping A and interface A and all records where value for indicator is CHG must be sent via mapping B to interface B.
But both interfaces still point to the same RECEIVER.
The last requirement would be that all records where indicator has value NEW be sent first.
Can this be done without BPM?
Is there a way to use a dummy receiver in PI system?
What would be the best way to create the required solution?
Regards
Robert

Hi,
It seems you have done multimapping, the message will split into multiple messages in adapter engine but in your case you used proxy which relies on Integration Engine. Please check this thread Message split in PI 7.1?
Adapter PLAINHTTP cannot process message packages
Multi-Mapping without BPM - Yes, it’s possible!
However you can use soap adapter with XI protocol for your requirement if you are using PI7.1. Please check this link http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70066f78-7794-2c10-2e8c-cb967cef407b?overridelayout=t…
XI Adapter vs SOAP Adapter (XI Protocol)
Regards,
Praveen

Similar Messages

  • Split Tunnel VPN and routing public ip traffic

    Hi Everyone,
        I have my split tunnel vpn working well but I need to make an adjustment. We have a few systems in the "cloud" and we only allow access from our corporate WAN IP to those servers. I need to be able to access those servers via VPN connection to the office. I added that public IP subnet to my interesting traffic and the vpn client is sending the traffic across the VPN as expected. The issue is that it somehow drops out inside the firewall it seems. Almost like it doesn't know how to route that request back out to the internet using it's own default gateway. Any thoughts as to what I may be missing, here is some of the relevant code
    same-security-traffic permit intra-interface
    ----Interesting Traffic------
    access-list vpnpool standard permit 10.1.1.0 255.255.255.0
    access-list vpnpool standard permit 10.31.26.0 255.255.255.0
    access-list vpnpool standard permit 10.31.61.0 255.255.255.0
    access-list vpnpool standard permit 10.31.3.128 255.255.255.192
    access-list vpnpool standard permit 10.31.40.128 255.255.255.240
    access-list vpnpool standard permit 10.31.40.64 255.255.255.192
    access-list vpnpool standard permit 50.57.0.0 255.255.0.0  -- Network of cloud servers
    ---Natting----------
    global (outside) 1 71.174.57.78
    global (dmz) 1 interface
    nat (inside) 0 access-list 101
    nat (inside) 1 10.1.1.0 255.255.255.0
    nat (qa) 1 200.200.200.0 255.255.255.0
    nat (dmz) 1 10.1.11.0 255.255.255.0
    nat (dmz2) 1 192.168.1.0 255.255.255.0
    ---Rules and Gateway-------
    access-group inbound in interface outside
    access-group dmz in interface dmz
    route outside 0.0.0.0 0.0.0.0 71.174.57.1 1
    ---VPN-----
    group-policy xxx-remote internal
    group-policy xxx-remote attributes
    wins-server value 10.1.1.5
    dns-server value 10.1.1.5 10.1.1.6
    vpn-idle-timeout 60
    vpn-tunnel-protocol IPSec l2tp-ipsec webvpn
    ipsec-udp enable
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value vpnpool
    default-domain value xxx.local
    split-dns value xxxx.local
    service-type remote-access
    tunnel-group xxx-vpn type remote-access
    tunnel-group xxx-vpn general-attributes
    address-pool vpnpool
    authentication-server-group (outside) RADIUS
    authentication-server-group (dmz) RADIUS
    default-group-policy xxx-remote
    tunnel-group xxx-vpn ipsec-attributes
    pre-shared-key xxxxx

    That was my mistake, I am mixing up code here. The fun of switching between new and old ASA code as well as routers
    Let's do it this way, this should fix the problem. Put the NAT command the way it was as follows:
    nat (Outside) 1 10.1.10.0 255.255.255.0
    Now we add a NAT0 for the Outside interface. You can reuse the ACL we made if you want or make a new one, your call since you have to administrate it.
    no access-list VPN-NAT
    access-list VPN-NAT0 permit ip 10.1.10.0 255.255.255.0 10.0.0.0 255.0.0.0
    nat (Outside) 0 access-list VPN-NAT0
    Now, this should properly NAT the traffic going to the Internet while excluding the traffic destined for your 10.0.0.0/8 subnet using the Nat 0.
    Sorry for the round about fix, but that should take care of it.

  • Split Panes, Frame and Resizing

    Hi,
    my user interface is made up of a message panel using the created class SplitPanes2 through the method createSplitPanes called from a class that extends Frame. (will post code if required: lengthy). When the frame is resized/maximized, the splitPanes remain at their preferred size. How can I work on it such that the SplitPanes will resize proportionally too? Please inform me if I have overlooked certain details.
    -cyndi
    public class AppLayout {
         Frame parent;
         public AppLayout() {
         public void createSplitPanes( Panel messagePanel, TextArea messageAreaOut, TextArea messageAreaIn, TextArea messageArea ) {
              Panel splitPane2 = new SplitPane2( messageAreaOut, messageAreaIn, messageArea );
              messagePanel.setLayout( new GridLayout(1, 1));
              messagePanel.add(splitPane2);
         public class SplitPane2 extends Panel {
              public SplitPane2( TextArea messageAreaIn, TextArea messageAreaOut, TextArea messageArea ) {
                   //Create an instance of splitPane
                   splitPane sPane2  = new splitPane( messageAreaOut, messageAreaIn );
                   JSplitPane left    = sPane2.getSplitPane();
                   //XXXX: Bug #4131528, borders on nested split panes accumulate.
                   //Workaround: Set the border on any split pane within
                   //another split pane to null. Components within nested split
                   //panes need to have their own border for this to work well.
                   left.setBorder( null );
                   //Create a split pane and put "left" (a split pane)
                   //and TextArea instance in it.
                   JSplitPane sPane   = new JSplitPane( JSplitPane.HORIZONTAL_SPLIT,
                        left, messageArea );
                   //splitPane.setOneTouchExpandable(true);
                   sPane.setDividerLocation( 150 );
                   sPane.setResizeWeight( 0.5 );
                   //Add the split pane to this frame
                   sPane.setPreferredSize( new Dimension( 400, 430 ) );
                   add( sPane );
              class splitPane {
                   JSplitPane sPane;
                   public splitPane( TextArea messageAreaOut, TextArea messageAreaIn ) {
                        //Read image names from a properties file
                        sPane = new JSplitPane( JSplitPane.VERTICAL_SPLIT,
                             messageAreaIn, messageAreaOut );
                        //splitPane.setOneTouchExpandable(true);
                        sPane.setDividerLocation( 0.5 );
                        sPane.setResizeWeight( 0.5 );
                        //Provide a preferred size for the split pane
                        sPane.setPreferredSize( new Dimension( 150, 350 ) );
                   public JSplitPane getSplitPane() {
                        return sPane;

    Hi, I'm not sure, but I think I had a similar problem. I tried to place a JSplitPane inside a JPanel and then I got the same behaviour as you describe. Unfortunately I didn't find out why that happened. I simply didn't use the JPanel and then it worked as I wanted it to. (Almost) :)

  • IP Phone SSL VPN and Split tunneling

    Hi Team,
    I went throught the following document which is very useful:
    https://supportforums.cisco.com/docs/DOC-9124
    The only things i'm not sure about split-tunneling point:
    Group-policy must not be configured with split tunnel or split exclude.  Only tunnel all is the supported tunneling policy
    I could see many implementation when they used split-tunneling, like one of my customer:
    group-policy GroupPolicy1 internal
    group-policy GroupPolicy1 attributes
    banner value This system is only for Authorized users.
    dns-server value 10.64.10.13 10.64.10.14
    vpn-tunnel-protocol ssl-client
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value split-tunnel
    default-domain value prod.mobily.lan
    address-pools value SSLClientPool
    webvpn
      anyconnect keep-installer installed
      anyconnect ssl rekey time 30
      anyconnect ssl rekey method ssl
      anyconnect ask none default anyconnect
    username manager-max password XTEsn4mfYvPwC5af encrypted privilege 15
    username manager-max attributes
    vpn-group-policy GroupPolicy1
    tunnel-group PhoneVPN type remote-access
    tunnel-group PhoneVPN general-attributes
    address-pool SSLClientPool
    authentication-server-group AD
    default-group-policy GroupPolicy1
    tunnel-group PhoneVPN webvpn-attributes
    group-url https://84.23.107.10 enable
    ip local pool SSLClientPool 10.200.18.1-10.200.18.254 mask 255.255.254.0
    access-list split-tunnel remark split-tunnel network list
    access-list split-tunnel standard permit 10.0.0.0 255.0.0.0
    It is working for them w/o any issue.
    My question would be
    - is the limitation about split-tunneling still valid? If yes, why it is not recommended?
    Thanks!
    Eva

    Hi,
    If you're not using certificates in client authentication then the SSL handshake will complete before the user is requested to authenticate with username/password.  If this authentication request fails you will see the SSL session terminated immediately following this failure (as in the logs you provided).  Notice the 5 seconds between the SSL session establishment and termination, this is most likely when the user is being authenticated against the aaa server.  If the phone is failing authentication against an external aaa-server you'll want to investigate the logs on that server to determine the root cause of the failure.  The ASA can also provide confirmation of the authentication request/reject with the command 'show aaa-server'.  If you want to see what's going on at an authentication protocol level you can enable several debugs including "debug aaa authentication|common|internal' and protocol specific debugs such as 'debug radius user|session|all' or 'debug ldap'.
    Did this answer your question? If so, please mark it Answered!

  • RA VPN on ASA and Split Tunneling

    Hello Forum,
    I'm having an issue with RA VPN and split tunneling. Our company doesn't allow split tunneling.
    I have the following....
    ASA 5520 - ASA Version - 8.0(3)
    Group Policies defined for different groups. My test group, I thought I disabled split tunneling but they are still able to surf the net.
    For Split Tunneling Policy...
    Inherit is unchecked
    I have "Tunnel Network List Below"
    Testing_splitTunnelAcl is my acl. I have a bunch of host IPs in the list. I don't have any or 0.0.0.0 in the list.
    But they can still surf the net.
    I would like to block access to net. No hairpinning or internet u-turns.
    How do I do this?
    Any help greatly appreciated.
    Regards,

    What does your Testing_spliTunnelAcl have?
    To disable split tunneling, your Testing_spliTunnelAcl should only have this...
    access-list Testing_splitTunnelAcl standard permit any
    ...which means all traffic will be encrypted and will be sent to ASA no matter what. If you add any IP Address, only those traffic destined to the IP Address in the list will be encrypted and send to ASA, everything else will go to internet from the client.
    It may be confusing but try and see what happens.

  • I use "hdmi to component converter" to connect apple tv with my old plasma tv by component cable. Sound is ok but the picture split 2screens left and right. Still can't fix it. Anyone can help or has any idea? should I try convert to av?

    I use "hdmi to component converter" to connect apple tv with my old plasma tv by component cable. Sound is ok but the picture split 2screens left and right. Still can't fix it. Anyone can help or has any idea? should I try convert to av?

    Your TV hasn't entered some odd picture in picture mode has it with  two 'inputs' side by side?
    AC

  • HT3819 I am a teacher. I have an iPhone and iPad for personal use.  I also have an iPod and now an iPad for school use.  Would it be best for me to use home sharing on all 4 devices, or should I split my account and have separate accounts for home & schoo

    My first i device was an iPod touch that I was given for use in my classroom.  Then I got an iPhone for personal use.  Both items are listed under the same username and account.  Since then I now have 2 iPads, one for home and one for work.  I have many apps that are only for work like Math Zombie and Science Facts, and many that are for personal use, like Facebook and YouVersion.  I know that I can synch each device and tell iTunes which apps go on which device.  However at home I use a Mac, and my school computer is a PC.  I am wondering if I should split my account and keep personal separate from work.  Then I can synch all school related devices on the PC and home devices on the Mac.  I realize that there maybe the rare occaision that I might want one app for both accounts.  That's the chance I take on splitting my account.  Are there ay benefits one way or the other?

    Will you be the person paying for apps on both accounts?
    Are you the only person that will use both of the iPads?
    Is there a chance students will be using the work iPad and if so, do you want personal data stored on it?
    If you're the only one using it I'd keep the same account just to have the flexibility of having access to everything on all devices. If your students will be using it or if the school is paying for the school apps I'd keep separate accounts. It all depends on how often you will use school apps from home, and home apps at school. Just some things to consider...

  • Hi, when I upload music into itunes from a cd it sometimes appears in itunes as two different albums and split up the music in 2 or even three albums....how can i merge these albums...this is particularly true when one album may have different composers?

    Hi, when I upload music into itunes from a cd it sometimes appears in itunes as two different albums and split up the music in 2 or even three albums....how can i merge these albums...this is particularly true when one album may have different composers?

    Generally setting a common Album title and Album Artist will fix things.
    For compilations that aren't, select all tracks, Get Info, and on the option tab set Part of a Compilation to No. If it already says No tick the box alongside, then click OK.
    For deeper problems see Grouping tracks into albums.
    tt2

  • CS5.5 I can't get testing server, "design" and "Split" views operational

    I just upgraded from DWCS3 to DWCS5.5 and am trying to get php (dynamically related) files working. Very frustrating.
    I have set up everything according to the tutorial at http://www.adobe.com/devnet/dreamweaver/articles/setup_testing_server.html Nothing seems to work. And no one seems to currently be answering posts...so I apologize if this is a faux pas, but I'm starting a new thread in hopes that I and others can get some help.
    Here's what I have:
    WAMP server: : C:\TNG813onMowesII\www\ (Mowes Portable II is  software that enables you to quickly set up a WAMP (Windows, Apache, MySQL and PHP) system on any Windows system.))
    Site Name: localhost genealogy Local Site Folder: C:\TNG813onMowesII\www\ Server Name: localhost  Server Folder: C:\TNG813onMowesII\www\  Web URL: http://localhost/genealogy/ Server Model: PHP MySQL Connection: Local/Network
    Remote - unchecked
    Testing - checked
    I also have an idnetical image at D:/MyWebs/public_html/ for syncing with my remote website - http:larryvoyer.com
    My "Design", "Split", "Live View" and "Inspect" buttons are greyed out.
    Again, I apologize if I messed things up bu opening a thread on a prvious subject
    Larry Voyer
    Site Creator/Administrator
    http://larryvoyer.com/genealogy/
    Attempting to solve this on another thread, I was asked for the code that I was trying to see in design view...here it is if it's important:
    <?php
    $flags['noicons'] = true;
    $flags['noheader'] = true;
    $flags['nobody'] = true;
    //Change the text in quotes below to reflect the title of your site
    tng_header( "{$tmp['t5_maintitle']}", $flags );
    ?>
    <body>
    <div align="center">
    <table width="90%" class="maintable">
      <tr>
        <td class="row" colspan="6"></td>
      </tr>
    <tr>
      <td class="imagesection"> </td>
      <td class="spacercol">  </td>
      <td class="content" colspan="4">
       <table border="0" cellpadding="5" cellspacing="0" width="2%" class="innertable">
            <tr>        
        <td class="leftimage"><img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_leftimg']; ?>" alt="louis voyer" ></td>
        <td class="banner" colspan="2"><img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_titleimg']; ?>" alt="title"/></td>
        <td class="rightimage"><img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_rightimg']; ?>" alt="louis voyer" ></td>
      </td>
    </tr>
        <tr>
            <td colspan="4" class="boxback">
       <a href="whatsnew.php" class="lightlink2"><?php echo $text['mnuwhatsnew']; ?></a>
                | <a href="browsemedia.php?mediatypeID=photos" class="lightlink2"><?php echo $text['mnuphotos']; ?></a>
                | <a href="browsemedia.php?mediatypeID=documents" class="lightlink2"><?php echo $text['documents']; ?></a>
                | <a href="browsemedia.php" class="lightlink2"><?php echo $text['allmedia']; ?></a><br />
    <!-- SECOND LINE OF LINKS-->
                <a href="mostwanted.php" class="lightlink2"><?php echo $text['mostwanted']; ?></a>
                | <a href="reports.php" class="lightlink2"><?php echo $text['mnureports']; ?></a>
                | <a href="cemeteries.php" class="lightlink2"><?php echo $text['mnucemeteries']; ?></a>
          | <a href="browsemedia.php?mediatypeID=headstones" class="lightlink2"><?php echo $text['mnutombstones']; ?></a>
          | <a href="anniversaries.php" class="lightlink2"><?php echo $text['anniversaries']; ?></a>
          | <a href="places.php" class="lightlink2"><?php echo $text['places']; ?></a><br />
    <!-- THIRD LINE OF LINKS-->
          <a href="browsenotes.php" class="lightlink2"><?php echo $text['notes']; ?></a>
          | <a href="browsesources.php" class="lightlink2"><?php echo $text['mnusources']; ?></a>
             | <a href="browsetrees.php" class="lightlink2"><?php echo $text['mnustatistics']; ?></a>
             | <a href="bookmarks.php" class="lightlink2"><?php echo $text['bookmarks']; ?></a>
          | <a href="suggest.php" class="lightlink2"><?php echo $text['contactus']; ?></a>
    <?php
    if( $allow_admin ) {
      echo "| <a href=\"showlog.php\" class=\"lightlink2\">{$text['mnushowlog']}</a>\n";
      echo "| <a href=\"admin.php\" class=\"lightlink2\">{$text['mnuadmin']}</a>\n";
    ?>
      </td>
         </tr>
          <tr>
         <td class="leftcontent" rowspan="3">
      <div class="header">
                  <p>Our Noble Background</p>
       </div>
       <p>Recently, the <a href="Longueval" _mce_href="http://www.habitant.org/longueval/">Longueval">http://www.habitant.org/longuev al/">Longueval Research Project </a> has established the connection, through Anne Couvent, into the royalty database.
        This site includes that ancestry.
        Anne Couvent is in your ancestry, have fun loking at some of our famous and infamous ancestors. </p>
        <li><div align="left">
         <ul>
          <li> <a href="pedigree.php?personID=I63070&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I63070amp;tree=v7_28" class="pers" id="pI63070_tv7_28">Queen Cleopatra </a>  </li>
          <li> <a href="pedigree.php?personID=I107713&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I107713&amp;tree=v7_28" class="pers" id="pI185929_tv7_28">Alexander the Great</a>  </li>     
          <li> <a href="pedigree.php?personID=I186817&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I186817&amp;tree=v7_28" class="pers" id="pI186817_tv7_28">Attila the Hun</a>  </li>
          <li> <a href="pedigree.php?personID=I83464&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I83464&amp;tree=v7_28" class="pers" id="pI83464_tv7_28">Charlemagne</a>  </li>
          <li> <a href="pedigree.php?personID=I185929&amp;tree=v7_28"><img src="img/Chart.gif" class="chartimg" alt="" /></a>  <a href="getperson.php?personID=I185929&amp;tree=v7_28" class="pers" id="pI185929_tv7_28">King Louis XIV</a>  </li>
         </ul>
          </div></li>
       <p> Here are some links showing noble ancestors as they are related to me </p>
          <ul><li>
          <div align="left"><a href="rulers/rulers_france.php">Rulers of France</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_germany.php">Rulers of Germany</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_hre.php">Rulers of theHoly Roman Empire</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_italy.php">Rulers of Italy</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_visigoths.php">Rulers of the Visigoths</a></div>
        </li>
        <li>
          <div align="left"><a href="rulers/rulers_franks.php">Rulers of the Franks</a></div>
        </li>
         </ul>
         <p>  </p>
         <span class="style26o">Please note: this is not complete and is included for the user to see their potential relationship to past nobility
              The nobility database is far from the primary focus of the site and will not be supported other than the correction of errors.</span></div>
            </td>
      <td>
       <div class="header">
                  <?php echo $text['welcome']; ?>!
       </div>
       <div class="normal">
          <img src="<?php echo $cms['tngpath'] . $templatepath; ?><?php echo $tmp['t5_mainimage']; ?>" alt="" style="float:right" class="indexphoto" width="300"  /><br /><br />
         <p>Welcome to the genealogy site devoted to Voyer and Bedard ancestry. Why Voyer and Bedard? My father was a Voyer. My mother a Bedard
         I believe that this is the largest compilation of Voyers with 4000+ and 24,000+ Bedards. I hope that it will be useful to those looking for their heritage.</p>
         </p>I am indebted to my cousin Jacqueline TIERNAN Poudrier for her tireless research and contributions to this site. </p>
         <p>If you have any questions or comments about the information on
         this site, <a href="suggest.php">please contact us</a>.
         We look forward to hearing from you.</p>
         <ul>
          <?php
           if(!$currentuser) {
            if(!$tngconfig['disallowreg'])
             echo "<li><a href=\"newacctform.php\">{$text['mnuregister']}</a></li>\n";
            echo "<li><a href=\"login.php\">{$text['mnulogon']}</a></li>\n";
           else {
            echo "<li><a href=\"logout.php\">{$text['mnulogout']}</a></li>\n";
           if($chooselang)
            echo "<li><a href=\"changelanguage.php\">{$text['mnulanguage']}</a></li>\n";
          ?>
         </ul>
         <p></p>
         <div>
         <div class="header">
                  <p>DNA Genealogy</p>
       </div>
       <p></p>
         <p>DNA technology allows us another way to investigate our ancestry, especially with regard to lines that have been difficult or even impossible to resolve as is our case with the lack of records in France.<p></p> 
    There are many ways to test and analyze DNA, but there are two particular kinds of DNA testing that are especially useful in genealogy:  Y-chromosome DNA (Y-DNA) testing and mitochondrial DNA (mtDNA) testing.  The genealogical usefulness of these two DNA tests is based on two aspects of human inheritance:
       <ol>
       <li>  that the Y chromosome is passed on only by the father</li>
       <li>  that mitochondria are passed on only by the mother</li>
       </p>
       <p>Both a VOYER and a BEDARD DNA project have been created and can reached through the links below. Please make sure that the person submitted for DNA tests is in our dtabase so that we can determine the earliest ancestor.
       If you are submitting for a mitochondrial DNA test, please contact us so that we can attempt to trace your maternal pedigree.
              <div class="subheader"><span class="style41"><a href="Voyer" _mce_href="http://www.worldfamilies.net/surnames/voyer">Voyer">http://www.worldfamilies.n et/surnames/voyer">Voyer DNA Project</a> <a href="Bedard" _mce_href="http://www.worldfamilies.net/surnames/bedard">Bedard">http://www.worldfamilies .net/surnames/bedard">Bedard DNA Project</a></span></div>
        <div>
        </td>
      </div>
      <td> </td>
            <td class="rightcontent">
        <div class="language_box">
         <?php
          if($chooselang) {
           $query = "SELECT languageID, display, folder FROM $languages_table ORDER BY display";
           $result = mysql_query($query) or die ($text['cannotexecutequery'] . ": $query");
           $numlangs = mysql_num_rows( $result );
           if($numlangs > 1) {
            echo getFORM( "savelanguage2", "get", "tngmenu3", "" );
            echo "<select name=\"newlanguage3\" id=\"newlanguage3\" style=\"font-size:11px;\" onchange=\"document.tngmenu3.submit();\">";
            while( $row = mysql_fetch_assoc($result)) {
             echo "<option value=\"{$row['languageID']}\"";
             if( $languages_path . $row['folder'] == $mylanguage )
              echo " selected=\"selected\"";
             echo ">{$row['display']}</option>\n";
            echo "</select>\n";
            echo "<input type=\"hidden\" name=\"instance\" value=\"3\" /></form>\n";
           mysql_free_result($result);
          echo "</p>\n";
         ?>
       </div>
       <form action="search.php" method="get">
        <table class="indexbox">
         <tr>
          <td class="padding"><span class="boxback"><?php echo $text['mnulastname']; ?>:<br />
           <input type="text" name="mylastname" class="searchbox" size="14" /></span></td></tr>
           <tr><td class="padding"><span class="boxback"><?php echo $text['mnufirstname']; ?>:<br />
           <input type="text" name="myfirstname" class="searchbox" size="14" /></span>
          </td>
         </tr>
         <tr>
          <td class="padding"><span class="normal"><input type="hidden" name="mybool" value="AND" />
          <input type="submit" name="search" value="<?php echo $text['mnusearchfornames']; ?>" class="small" /><br /><br />
          <?php
           echo "<a href=\"surnames.php\" class=\"lightlink2\">{$text['mnulastnames']}</a><br />\n";
           echo "<a href=\"searchform.php\" class=\"lightlink2\">{$text['mnuadvancedsearch']}</a>\n";
          ?></span>
          </td>
         </tr>
        </table>
       </form>
       <p></p>
       <div class="help">
       <div class="subheader">Can You Help?</div>
       <p></p>
        <p.request>Can you make yourself available to translate correspondence and site content into French?.</p>
        <p.request>Do you read the Obituaries? If you find BEDARD and VOYER obituaries (links or scans)? </p>
        <p.request>Are you a BEDARD or VOYER and not in our database? </p>
        <p.request>Are you interested in being part of the site research or development team?
        <p> </p><a href="suggest.php">please contact us</a>..</p>
       </div>
      </td>
          </tr>
        </table>
        </td>
      </tr>
      <tr>
        <td colspan="6" class="row12"></td>
      </tr>
      <tr>
      <div class="c3"></div>
    </td>
    </tr>
    </table>
    <br />
    <div>
      <br />
      <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
      <div align="center">
      <input type="hidden" name="cmd" value="_s-xclick" />
      <input type="hidden" name="hosted_button_id" value="1942114" />
      <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="" />
      <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" />
      </div>
    </form>
    </div>
    </td></tr>
    <tr><td class="tableheader"><img src="img/spacer.gif" width="25" height="25" alt="" /></td></tr></table>
    <div class="footer small">
    <br />
    This site powered by <a href="http://lythgoes.net/genealogy/software.php" class="footer">The Next Generation of Genealogy Sitebuilding</a> &copy;, v. 8.1.3, written by Darrin Lythgoe 2001-2012.
    <br /><br />
    Voyer & Bedard Genealogy &copy; Larry Voyer 2008-2012.
    <br /><br />
    <span class="sitecounter">Unique visitors since January 1, 2012: </span>
         <div>
            <!-- Start of StatCounter Code for Default Guide -->
       <script type="text/javascript"> var sc_project=7546502; var sc_invisible=0; var sc_security="d0ac87ac"; </script> <script type="text/javascript" src="http://www.statcounter.com/counter/counter.js"></script>
       <noscript><div class="statcounter"><a title="web counter" href="http://statcounter.com/free-hit-counter/" target="_blank"><img class="statcounter" src="http://c.statcounter.com/7546502/0/d0ac87ac/0/" alt="web counter"></a></div></noscript>
      <!-- End of StatCounter Code for Default Guide -->
    </div>
    </div> <!-- end of footer div -->
    </div> <!-- end of center div -->
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("UA-2104283-2");
    pageTracker._trackPageview();
    } catch(err) {}</script>
    <!-- end footer.php for template 5--><script type="text/javascript" src="js/litbox.js"></script>
    </div> <!-- end of center div -->
    </body>
    </html>

    John,
    I misundrstood you response
    I entered http://localhost in my browser and recieved the following page:
    Asd you can see everything is working. I thought that when you called local host, it went to the www/ directory where I have my sites
    I still don't see a problem with my settings
    Server Folder: C:\TNG813onMowesII\www\
    Web URL: http://localhost/genealogy/
    I hate it when the tool is more trouble than the work.
    Larry Voyer
    Site Creator/Administrator
    http://larryvoyer.com/genealogy/

  • Cross-tenant email and split domains - how to set up?

    I've successfully deployed exchange 2010 sp1 in /hosted mode with multi-tenancy and the install is working great. We are running into a problem configuring the send connectors
    for inter domain email and split domains. We have several customers wanting to only put a couple of email accounts on the exchange server and have the rest of their email accounts resolve to a pop server at an external location. Currently I have a internal
    send connector set to relay email between the domains on the server so they can send emails to one another. Directions for this were found at: http://www.zerohoursleep.com/2010/10/step-by-step-starting-with-exchange-2010-sp1-multi-tenant-sending-and-receiving-emails/
    I created the connector: new-SendConnector -Name 'TestOrg' -Usage 'Internal' -AddressSpaces 'SMTP:domain1.com;1','SMTP:domain2.com;1' -IsScopedConnector $false -DNSRoutingEnabled $false -SmartHosts '[127.0.0.1]' -SmartHostAuthMechanism 'None' -UseExternalDNSServersEnabled
    $false -SourceTransportServers 'Exchange' 
    I added all my internal domains to the connector listed above and email is able to flow from one domain to another.
    My problem is we have a number of customers who need split-domains set up where users who arent on the exchange server are relayed to an external server. Example to route unknown users on a domain to google my send connector looks as is: 
    New-SendConnector -Name "Internal Relay - domain1.com" -Custom -AddressSpaces "SMTP:domain1.com;5" -SmartHosts aspmx.l.google.com -SourceTransportServers "server"
    This results in an internal loop error when sending from one internal domain to another. Sending from an external domain everything is fine. If I remove the "internal" connector listed above the split-domain send connector works perfectly fine delivering locally
    and to the external server.
    How can I make it so both send connectors work?

    Hello,
    did you solve the problem and how?
    Thanks,
    Victor
    Exchange and Outlook utilities at
    http://www.ivasoft.com

  • Use Message Mapping to repeat top node and split Message

    I am currently using XSLT Messaging to do majority of the mapping. I have two issues that remain, I need to repeat the top node for each or its child elements and split the message.
    <Sensor xmlns="namespace">
      <Observation>
        <XML>Some Data</XML>
    </Observation
    </Sensor>
    1. Can it be done in XSLT? I posted a thread asking for help on this. Where I would need to repeat the Sensor tag for each observation. If this is possible then I will able to split the messages at the HTTP adapter used for the target system.
    2. Can Message Mapping be used. Using the same xsd on both source and target systems, Will sensor repeat if set to 1:n and observation set to 1:1. In source it is Sensor 1:1, Observation 1:n.  If this works then I can use a BPM to shoot out individual messages using a for each.
    Any help is greatly appreciated. I am fairly new to XI as this is my first major project. Thanks

    Source File                                             Target File
    > XI (XSLT) -
    > Each observation as one file  ---> Out via HTTP
    Batch of all orders    
    Source File
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <receipt>
      <manufacturer>Manufacture Name</manufacturer>
      <manufacturer_gln>999999</manufacturer_gln>
      <transfer_recipt>0123456</transfer_recipt>
      <prod>
        <product_GTIN>99999999999999</product_GTIN >
        <product_LOT>123456A</product_LOT >
        <production_date>20090131</production_date>
        <expire_date>20120131</expire_date>
        <carrier>
          <carrier_type>P</carrier_type>
          <carrier_barcode>001</carrier_barcode>
          <carrier_detail>
            <carrier>
              <carrier_type>C</carrier_type>
              <carrier_barcode>01</carrier_barcode>
              <carrier_detail>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089211</carrier_barcode></carrier>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089212</carrier_barcode></carrier>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089213</carrier_barcode></carrier>
                </carrier_detail>
            </carrier>
            <carrier>
              <carrier_type>C</carrier_type>
              <carrier_barcode>02</carrier_barcode>
              <carrier_detail>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089214</carrier_barcode></carrier>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089215</carrier_barcode></carrier>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089216</carrier_barcode></carrier>
                </carrier_detail>
            </carrier>
          </carrier_detail>
        </carrier>
        <carrier>
          <carrier_type>P</carrier_type>
          <carrier_barcode>002</carrier_barcode>
          <carrier_detail>
            <carrier>
              <carrier_type>C</carrier_type>
              <carrier_barcode>03</carrier_barcode>
              <carrier_detail>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089217</carrier_barcode></carrier>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089218</carrier_barcode></carrier>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089219</carrier_barcode></carrier>
              </carrier_detail>
            </carrier>
            <carrier>
              <carrier_type>C</carrier_type>
              <carrier_barcode>04</carrier_barcode>
              <carrier_detail>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089220</carrier_barcode></carrier>
                <carrier><carrier_type>ITEM</carrier_type><carrier_barcode>0108699547010089221</carrier_barcode></carrier>
               </carrier_detail>
            </carrier>
          </carrier_detail>
        </carrier>
      </prod>
    </receipt>
    Target File
    <?xml version="1.0" encoding="UTF-8"?>
    <pmlcore:Sensor xmlns:pmlcore="urn:autoid:specification:interchange:PMLCore:xml:schema:1" xmlns:pmluid="urn:autoid:specification:universal:Identifier:xml:schema:1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:autoid:specification:interchange:PMLCore:xml:schema:1 cases.xsd">
      <pmluid:ID>GPO_AI_LU_DC</pmluid:ID>
      <pmlcore:Observation>
        <pmlcore:DateTime>2008-10-13T17:53:00.265+02:00</pmlcore:DateTime>
        <pmlcore:Command>PACK</pmlcore:Command>
        <pmlcore:Tag>
          <pmluid:ID>01</pmluid:ID>
          <pmlcore:Data>
            <pmlcore:XML>
              <Memory>
                <DataField fieldName="EXPIRATION_DATE">20120131</DataField>
                <DataField fieldName="BATCH_ID">123456A</DataField>
                <DataField fieldName="ZMFG_DATE">20090131</DataField>
                <DataField fieldName="ZMFG_GLN">999999</DataField>
                <DataField fieldName="ZMANUFACTURER">Manufacture Name</DataField>
                <DataField fieldName="ZITEM_COUNT">16</DataField>
                <DataField fieldName="ZWORK_ORDER_NUMBER">0123456</DataField>
              </Memory>
            </pmlcore:XML>
          </pmlcore:Data>
        </pmlcore:Tag>
        <pmlcore:Tag>
          <pmluid:ID>0108699547010089211</pmluid:ID>
          <pmlcore:Data>
            <pmlcore:XML>
              <Memory>
                <DataField fieldName="EXPIRATION_DATE">20120131</DataField>
                <DataField fieldName="BATCH_ID">123456A</DataField>
                <DataField fieldName="ZMFG_DATE">20090131</DataField>
                <DataField fieldName="ZMFG_GLN">999999</DataField>
                <DataField fieldName="ZMANUFACTURER">Manufacture Name</DataField>
                <DataField fieldName="ZWORK_ORDER_NUMBER">0123456</DataField>
              </Memory>
            </pmlcore:XML>
          </pmlcore:Data>
        </pmlcore:Tag>
         </pmlcore:Observation>
         </pmlcore:Sensor>
    I have the XSLT Mapping working to transform data from Source file to target File. But my target file has multiple Observations that need to be split into the Sensor, Observation structure.

  • I get the following message when i try to open ALL my documents : frozen panes and split panes are not supported and were removed. my documents are blank

    i get the following message when i try to open any of my documents : frozen panes and split panes are not supported and were removed. All my documents open blanc!

    Hi Louisa,
    louisa_16_za wrote:
    i work with Numbers on my MiniMac and then save the files as Excel because the university only works with Windows.
    Numbers is not an Excel clone. Importing and exporting between Numbers and Excel will eventually build up glitches.
    If the university only works with 'Windoze' it might be better if you use Excel or a free version of Office (for example, Libre Office or Open Office).
    If your marks depend upon a professor who uses Excel, go with the flow.
    http://www.howtogeek.com/187663/openoffice-vs.-libreoffice-whats-the-difference- and-which-should-you-use/
    Regards,
    Ian

  • Remove Batch Management and Split Valuation Dependencies

    Hi,
    I need to remove Batch Management Indicator and Split Valuation for a material. Which one should I do first? Are these dependent on one another?
    Thanks,
    Jograd

    You are correct. It did cause lots of error when i tried to do it in test client.
    I am trying to remove the valuation category of one right now. It has zero stock and no open documents.
    I saw in note Note 155874 - Change valuation category in material master that you need to do this:
    2. If you change from split to joint valuation, no valuation data must
    exist for a valuation type.
    I dont know where to start doing that? Because there is not data for the material. However i noticed that there is valuation for previous period. do i need to delete that too? But there are no stocks for the previous period.
    Please help.
    Thanks,
    Jograd

  • Batch and split valuation simultaneously

    hello all,
    we have scenarios in which both batch management and split valuation is active.
    we are currently uses STO with stocktransport order by using 351 and 101 movements.
    my question is that
    why the sap system does not allow plant to plant stock transfer by using 303 and 305 movement type when both batch management and split valuation is active?
    is this is a sap standard best practice?
    pls explain in detail.
    regards
    sumit simran

    HI,
    try following sap note
    66953 Stock transport order for split-valuated material
    801097 Stock transport order with split valuation
    Regards
    Kailas Ugale

  • I have an idea for an iPhone app that I believe would be marketable. However, I have no talent towards writing software. How does I find a reputable programer that would be will to develop and split proceeds?

    I have an idea for an iPhone app that I believe would be marketable. However, I have no talent towards writing software. How does I find a reputable programer that would be will to develop and split proceeds?

    Find an app you like.  Contact the developer of that app and see if they are interested.

Maybe you are looking for

  • Using Disk Utility for Boot Camp to work

    I'm trying to install Windows 7, but Boot Camp gave me the old error message about having unmovable data and needed to use Disk Utility to format it as a Single Mac OS Extended (Journaled) Volume. So I backed everything up and am ready to go, but whe

  • Playlist name sorting question

    First off, sorry if this has been discussed before, I couldn't find it anywhere. My question is, is there any way to sort my playlists via a "Sort Name" option or something so that a playlist starting with 'the' (for example, "The Letter Black") will

  • Line Break on Textarea using javascript

    I have a data loading page into a table with a single column of varchar(4000). When the user pastes into the textarea, there are multiple line breaks - but some of the lines are > 4000 and end up being truncated during the load process. What I would

  • HT1338 How do I prevent iDVD 7.1.2 from shutting down every time I try to create a new project?

    Every time I try to create a new project on iDVD, the program shuts down with one of those "unexpected error" messages. This just started a few days ago, and was working fine prior to this.

  • Returning proxy to the client

    i tried this one below to send a proxy to the client but i am getting an error import java.rmi.*; import java.rmi.registry.*; import java.lang.reflect.*; import java.rmi.server.*; public class Client extends UnicastRemoteObject implements InvocationH