Recommended products for connection between buildings 50 meters apart

Hi
I have a client that requires a connection between their two buildings 50 meters apart. If possible they require bandwidth up to 54Mbps. Currently they only have a switch in either building.
Can anyone recommend a solution for this? Will they need two bridges or do they need 1 bridge and 1 AP?
Many thanks

In europe the best way to do this is to use a cisco 2 x 1300 if you are in the states you can use 2 x 1400. However the 1300 is more flexible.

Similar Messages

  • Solution for connection between BODS and WCF web service ?

    Hi,
    we have a unique requirement of connecting BODS to WCF webservice. This web service acts as a layer for connection between proprietary databases (secured) and other external systems. Queries are to be sent to this web service in order to fetch data from proprietary databases.
    In order to connect to these web services, we should also provide Address, Binding and contract whose details are already present with us.
    Example of web service address:     net.tcp://op12345:10101/sd
    I heard Adapters are the best way of connecting to the above web service, could you please provide some guidance on connecting through adapters if it is the best solution.
    Could someone suggest the best possible approach(ASAP) to bring connection between BODS and web services and to execute the above requirement.
    Please let me know in case of any more information.
    Regards
    Surya

    Hello Nir,
    I tried to import the my VS2008 + .net 3.5 as Wsdl local file to the Xcelsius 2008 but there is message unable to load url.
    I tried to import your Wsdl developed by .net:
    http://www.webservicex.net/airport.asmx?WSDL
    and it works ok.
    Can you send me or print here the service class definition and the configuration file for  http://www.webservicex.net/airport.asmx?WSDL?
    Thanks in advance,
    Sergey Osmachkin

  • Recommended product for syslogging and snmp monitoring

    Hi,
        We currently use KIWI syslog but can anyone recommend a better product for syslogs from Firewalls, Routers and Switches. Our current product creates a seperate text file per day per device. Ideally I would like all these to be combined (or combinable for display purposes) into one log that shows to update realtime and have the ability to filterout "background noise" - stuff we know is acceptable, as well as being able to run simple or quick searches and reports. Ideally for asbout 200+ devices.
         Am I too hopeful or is there a product out there that can do this (that also will not break my companies bank account).
         Also, recommended products for SNMP monitoring if better than we currently use would be useful - currently using Orion and SNMPc.
    Regards
    Adrian

    Adrian,
    We use syslog-ng for RHEL. It can do what you need as far as writing to files and filtering out background noise, but it is not a search/reporting tool. If KIWI does the latter, I imagine you could tell it to read from the file that syslog-ng creates.
    It is open source for writing files through version 3.1.4. Later versions require licensing to write to files or if you are using a Windows OS.
    http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/3.1.4
    Here are some other options:
    Rsyslog: http://www.rsyslog.com/
    Splunk: http://www.splunk.com/
    Snare: http://www.intersectalliance.com/projects/index.html
    Hope this helps.
    Steve Lee
    Emory University

  • What are the Best Recommended Products for Mac OS X Server (Apache and ???)

    I investigated Oracle and PHP combo for robust database services to be able to create forms, store employee applications, resumes, do financial requests, invoices, ecommerce stuff, document and lists collaboration like Microsoft Sharepoint using Internet Information Services (IIS) and SQL Server, etc. What are recommended products that I can easily develop in to code and do the requested stuff using Mac current (Apache and ????) technologies?

    Of course it depends on your needs, but the OS X server already comes with Apache, Ruby On Rails, Python, Perl and SQL.

  • Recommended product for scratch removal?

    I have the black 60GB 5th Gen Ipod. I have been using it for years, but by now my screen has become scuffed and scratched. I want to purchase a product to remove the scratches, and then a film or cover to protect it (the previous cover I had is what left the scratches over time), but I want to know what everyone recommends as the best products? Any suggestions?

    Hey there,
    There are numerous products available for cleaning your iPod, but I have had great luck with PodShop iDrops. It is a cheap product, but requires a bit of work to remove scratches. Worth the effort in the end though. Here is a link to more information on it from amazon. I am not sure with protective cases though because I have never really had any luck any. For now, I just place a piece of the wider packaging tape over the front. It works great and keeps my iPod looking brand new. Hope this helps.
    http://www.amazon.com/PodShop-iDrops-Cleaner-Scratch-Remover/dp/B0006V7QAK
    B-rock
    Message was edited by: planb77

  • 1262/3500 for WLAN between buildings

    Hi,
    I currently have WLC 5508 and a few campuses with LAP 1142, each with 2-3 vlan. Now one of our campuses have a building thas is a bit far away and needs network (wired). We can't get fiber or TP-cable there in a good way.
    So the plan is to get two 1262 or 3500 with AIR-ANT5160NP-R antennas and get a wireless link working between the campus and the building. And then connect one of the AP's to a switch in the other building to provide it with wired network.
    The problem is that I can't find information on how to do it. Do you have any config guides on this? Should both APs be in autonomus mode?
    I probably only need to have 1 VLAN in the other building but I am not sure yet. Is there a problem with transfering several VLAN over the WLAN-link?
    /Philip

    #wirelessly wgb can extend WLC connected wired/wireless network to Wired and Wireless devices connected behind wgb.
    #mesh can extend WLC connected wired/wireless network to wireless devices connected behind mesh AP and also it can bridge multiple wired network behind Mesh AP to other Mesh APs in that group wirelessly.
    multiple vlan is supported on Mesh AP, it is just like extending local mode access point through wireless link.
    wgb supports multiple vlan from certain new WLC versions.

  • How to use bind_variable for connectivity between Oracle and SQLServer 2005

    The code specified below could be used as an example of how to call a remote SQLServer 2005 procedure from Oracle.
    The problem I am facing is that I am not able to use the dbms_hs_passthrough.bind_variable without exceptions.
    Could someone help me out on this?
    declare
    CREATE PROCEDURE dbo.OrcaMessageTranslator
    @inp nvarchar(255),
    @outp nvarchar(255) output
    AS
    BEGIN
    select @outp = @inp+'output'
    END
    c integer;
    nr integer;
    inp varchar2(255);
    outp varchar2(255);
    sql_stmt varchar2(32767);
    begin
    dbms_output.put_line('call SQLServer procedure OrcaMessageTranslator');
    dbms_output.put_line('value of input variable inp is HowToReplaceThisValueByBindVariable ');
    sql_stmt := 'DECLARE @outp nvarchar(255)
    EXEC dbo.OrcaMessageTranslator
    @inp = N''HowToReplaceThisValueByBindVariable'',
    @outp = @outp OUTPUT
    SELECT @outp as N''@outp''';
    c := dbms_hs_passthrough.open_cursor@pp_preorca;
    dbms_hs_passthrough.parse@pp_preorca(c,sql_stmt);
    nr := dbms_hs_passthrough.fetch_row@pp_preorca(c);
    dbms_hs_passthrough.get_value@pp_preorca(c, 1, outp);
    dbms_hs_passthrough.close_cursor@pp_preorca(c);
    dbms_output.put_line('acquired value of output variable outp is '||outp);
    end;

    Hi,
    BIND_VARIABLE is useful when you have only IN variable but in your case you have IN and OUT.
    I don't know if you use the gateway for MS SQL SERVER or HSODBC/DG4ODBC but here how you can do to call a remote procedure with bind variables:
    DECLARE
    ret integer;
    inp varchar2(255);
    outp varchar2(255);
    BEGIN
    inp :='Hello World';
    outp :='';
    ret := "dbo"."in_out_proc_test"@tg4msql( inp, outp);
    dbms_output.put_line('Input value: ' ||v_ut1||' - Output value: '||v_ut2);
    END;
    The MS SQL Server procedure belongs to the user "dbo" and the database link
    being used is tg4msql.
    The following line initilaize the out variables of the procedure with an
    empty string:
    outp :=''
    I hope it helps you.
    Regards
    Mireille

  • Connection between multiple domains of AD and OIM

    I am trying to integrate OIM and AD (target resource) and I have 13 domains in AD. For one domain, connection between AD and OIM is established using OOTB connector.
    Can someone provide me approach for connection between multiple domains of AD and OIM.
    Do I need to install different connector server for different domains or OIM provides with some Connector Server cloning feature.

    Hi,
    this forum is for asking and answering JDeveloper and ADF related question. Your question should be asked to the FMW security forum here on OTN
    Frank

  • Connection between CRM back end and ASP front end website for Ecommerce

    Hi All,
    I want to establish the connection between a ASP website and CRM back end server(we are replacing th existing ERP back end system with SAP CRM ).
    I want to know whether I have to go with XI or any other connectors provided by SAP to establsih the communication between the existing ASP website and CRM back end server..
    Can anyone please help me out.
    Thank you,

    Okay here is the general concept for your scenario:
    -You will call standard/custom RFC's(could be BAPI's) in the CRM system from the existing application. 
    -You will need to write a new model layer in your ASP application that calls the RFC layer in CRM
    -You decide what data you want to use from CRM in your application
    Let's assume at minimum you will want to use the product master, business partner master, and business transactions.  You will need RFC's/BAPI's for every interaction point where you will consume/publish data to CRM.
    So when an user creates an order from your e-commerce site, you will need to support saving an order in CRM.  This is example of how you need to map out each function in your existing site to a part of the CRM system.  Since we don't know what your site currently does, this is something you would have to do.
    Once you have mapped out the business level data to the CRM system, then you can evaluate where you will need a BAPI and/or RFC call.  Once that is done, then you can look at the CRM system and see what standard pieces can be called.  Then everything else is custom development.  Your ASP application will call CRM via RFC. 
    It is possible to do what you want to do, but it is going to require a lot mapping work and a fair amount of development effort to integrate the two pieces.  I don't know if you might be better off looking at the SAP Internet Sales Solution instead so you could focus only customizing that application, instead of worrying about an integration problem.  It just depends on how much special functionality your existing e-commerce site has today.
    My general recommendation would be for you to hire a consultant that has done an SAP e-commerce project using SAP CRM in the past and let them guide you on the implementation issues.  An on-site resource could better answer your "high-level" questions.
    However if you have more questions please ask and I will try to answer to the best of my knowledge.
    Good luck,
    Stephen

  • Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailier like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago. 
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    OT

  • Wireless connection between 2 buildings

    My office is in a small separate structure on my residential property about 100 feet away from my 2 story house (both buildings are mostly wood frame, a lot of windows).
    In the office is my computer system – internet access and a simple network:
    Cable Modem
    Linksys 2.4 GHz Wireless-B Router
    2 PC's with Wireless-B
    Mac Pro
    Everything works excellent inside the office building (using wireless for the network and wired for the internet).
    I just purchased a MacBook Pro for the house to access the internet and my files on my PC in the office. I tested it with the Linksys and just barely picked up some signal but mostly nothing.
    I tried a Netgear WNDR3300 - their latest dual-band, with 5.0 N and 2.4 G. A very nice unit, worked out of the box, but no real additional signal strength.
    I was thinking about trying 2 AirPort Extremes, one in the office building and one in the house.
    What is someone’s best suggestion on how to create a solid wireless connection between 2 buildings (about 100 feet apart), not necessarily Apple equipment, and short of running an Ethernet cable between the 2 buildings.
    I would like full wireless and wired access inside the office, and full wireless and wired access inside the house.

    Do you have direct line-of-sight between the two buildings? 
    Wireless Bridges Point-to-Point Link Configuration Example

  • I do video productions for a small local TV station. I use Final Cut Express to edit. I need a new video camera but am at a loss as to what to buy. I know I will get a digital camera but do not know the difference between just digital and digital HD.

    I do video productions for a small local TV station. I use Final Cut Express to edit. I need a new video camera but am at a loss as to what to buy. I know I will get a digital camera but do not know the difference between just digital and digital HD. Also, I can not afford an expensive camera and need some advice on which of the available cameras would be best and also work well with a Mac. One last issue, I currently use a Panasonic #CCD camera that takes a tape. When I load video to Final Cut the audio and video are out of sinc. Go figure. Can anyone help with these questions. Karen

    Hello Karen,
    If you are using Final Cut Express, then look for camcorders that are AVCHD camcorders.  Look especially for the AVCHD logo and specific mention of AVCHD in the specs.  Most of the major manufacturers produce good quality camdcorders - Canon, Sony, etc.
    Also, be aware that there are a lot of "not quite AVCHD" camcorders on the market (sometimes they say they record video as MPEG4-H.264/AVC) - buyer beware!
    Most everything you are going to find on the market today is HD, which stands for "high-def".
    Regarding your question about the Panasonic camcorder, it's best if you post that as a separate question, and please identify the specific model camcorder and the Easy Setup you are using in FCE.

  • ABAP Proxy connection Between PI and SRM for XMLs

    Hello Experts,
    We are trying to set up ABAP proxy connection between PI 7.1 and SRM so we can send XML from SRM into PI.
    Our SRM developer is getting an SLD error (below) and seems like something is not set up right in the SLD. Could you help me out with any kind of blog/documention on setting up an ABAP proxy connection between PI and an ABAP system. Something that talks about what steps we need to take in PI and SRM.
    error ...
    *We saw the error during debugging. This error is preventing XML output
    to be sent to PI.
    BBP_BD  002     An SLD system has not been assigned to logical system
    Thanks,
    Mayur

    Thanks all for a quick reply. I also had to take following step to achieve the task.
    adding the XI system to the SRM config - SRM Server -->
    Technical basic Settings --> Define  System Landscape?  (also please
    associated documentation in that link for XI)
    Thanks,
    Mayur

  • Which sort of HDMI cableis recommended for connecting Apple TV to aTelevision?  Does it need to be a normal HDMI cable or one which support Ethernet capabilities?

    Which sort of HDMI cableis recommended for connecting Apple TV to aTelevision?  Does it need to be a normal HDMI cable? or one which supports Ethernet capabilities?

    no need to go for an expensive HDMI cable as Varjak Paw rightly suggests.
    Pretty much all of them come with 1.4 standard these days.
    The difference in price is made by additional shielding and material used for the wire - hardly ever needed at home installations - unless you get interference from other devices.
    on the other note.
    one HDMI in your TV is obviously not ideal as well as using HDMI splitter or hub - but it should work.
    Also I know cases that some LG TV models do not work with Apple TV - which was confirmed by LG technical support.
    Those are rare cases and i do not want to worry you at this stage.

  • Hi. i have the sony hifi system "sony" a projector "sony" and the mac mini. the visual i have. the sound i don't. all is hdmi connected. apple is a new product for me. what settings fiddle with? please assist

    i would like to know what settings i should use to able sound on my mac mini.
    apple is a new product for me.
    I've got a sony hifi with a sony projector. projector works fine. i do not have sound though.
    they are all connected via hdmi.
    please assist.

    When you go System Preferences>Sounds>Output  What output is selected?

Maybe you are looking for