Disadvantages of bgRFC with type T

Hi,
What are the disadvantages of using bgRFC with type T ?   
Regards,
Esha Raj
Edited by: Esha  Raj on Feb 3, 2010 5:10 AM

I do not think running the Airport router in bridge is a problem.. I know others think it is important.
https://discussions.apple.com/thread/5902403?tstart=0
I have had people abuse me for saying bridge is fine.
They are aggressive about it.. but the reasons don't stand up.
Other than losing guest network.. not a biggie as you have the FIOS as a secondary wireless. And BTMM doesn't work to the TC or AE with a hard disk.. again not an issue with an Express anyway. I think you are fine.
Using DMZ on the FIOS router is still subject to loading the NAT table on that router.. it is avoiding the worst of double NAT but is still far from ideal.
The fact is there is a lot of things called spoofing going on.. if you get a public IP on the apple router it is by a method called dhcp spoofing.. ie it is not real.
But then I will probably get abused again here.
any thoughts or suggestions? is having the airport in bridge mode that big a deal when i merely want a network upgrade from the RG? thanks!
Not a big deal at all. IMHO..
Of course buying an expensive apple router and discovering it is now a glorified switch and AP might make some people upset.

Similar Messages

  • Advantages/disadvantages,Capabilities,Failures of Types of mapping

    Dear all,
    Can you kindly explain me the Advantages/disadvantages,Capabilities,Failures of Types of mapping.
    what is the parser XSLT uses.
    what is differnece between sax/dom parsers.
    Thanks,
    Srinivasa

    Hi srinivas phani  ,
    The following websites give u good documentation on Mapping:
    Excellent PDF Document on Mapping
    http://help.sap.com/bp_bpmv130/Documentation/Operation/MappingXI30.pdf
    Mapping Development with the ABAP Workbench
    http://help.sap.com/saphelp_nw04/helpdata/en/10/5abb2d9df242f6a62e22e027a6c382/content.htm
    ABAP Mappings
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/e18b1a0fc14f1faf884ae50cece51b/content.htm
    how to create a flat file out of an IDoc-XML by means of an ABAP mapping program and the J2EE File Adapter.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/46759682-0401-0010-1791-bd1972bc0b8a
    How to Use ABAP Mapping in XI 3.0
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e3ead790-0201-0010-64bb-9e4d67a466b4
    SAXParser
    Both DOM and SAX approaches have advantages and disadvantages, and your choice of technique must depend on the type of data being parsed, the requirements of your application, and the constraints under which you are operating.
    The SAX approach is linear: It processes XML structures as it finds them, generating events and leaving the event handlers to decide what to do with each structure. The advantage of this approach is that it is resource-friendly; because SAX does not build a tree representation of the document in memory, it can parse XML data in chunks, processing large amounts of data with very little impact on memory. This also translates into better performance; if your document structure is simple, and the event handlers don't have anything too complicated to do, SAX-based applications will generally offer a speed advantage over DOM-based ones.
    The downside, though, is an inability to move around the document in a non- linear manner. SAX does not maintain any internal record of the relationships between the different nodes of an XML document (as the DOM does), making it difficult to create customized node collections or to traverse the document in a non-sequential manner. The only way around this with SAX is to create your own custom object model, and map the document elements into your own custom structures—a process that adds to complexity and can possibly degrade performance.
    Where SAX flounders, though, the DOM shines. The DOM creates a tree representation of the document in memory, making it possible to easily travel from one node to another, or even access the same node repeatedly (again, not something you can do easily in SAX). This tree representation is based on a standard, easy-to-understand model, making it easier to write code to interact with it.
    This flexibility does, however, come with an important caveat. Because the DOM builds a tree in memory, DOM processing cannot begin until the document has been fully parsed (SAX, on the other hand, can begin parsing a document even if it's not all available immediately). This reduces a developer's ability to "manage" the parsing process by feeding data to the parser in chunks, and also implies greater memory consumption and consequent performance degradation.
    Consequently, the choice of technique depends significantly on the type of constraints the application will be performing under, and the type of processing it will be expected to carry out. For systems with limited memory, SAX is a far more efficient approach. On the other hand, complex data-processing requirements can benefit from the standard object model and API of the DOM.
    After using DOM to parse XML documents for any length of time, you will probably begin to notice that performance tends to suffer when you’re dealing with large documents. This problem is endemic to DOM's tree-based structure: larger trees demand more memory, and DOM must load an entire document into memory before it can allow you to parse it. For situations where performance is problematic with DOM, you have an alternative in the Simple API for XML (SAX). In this fifth installment in our Remedial XML series, I'll introduce you to the SAX API, and provide some links to SAX implementations in several different languages.
    Further differences can be seen in the following websites
    http://articles.techrepublic.com.com/5100-22-1044823.html
    Parsing XML Efficiently : DOM Parsing ,SAX Parsing
    http://www.oracle.com/technology/oramag/oracle/03-sep/o53devxml.html
    SAX Example
    http://www.informit.com/articles/article.aspx?p=26351&seqNum=6&rl=1
    Event or DOM parsing?
    http://discuss.joelonsoftware.com/default.asp?design.4.156750.12
    SAX samples
    http://xerces.apache.org/xerces2-j/samples-sax.html
    Set up a SAX parser
    http://www.ibm.com/developerworks/xml/library/x-tipsaxp.html
    Simple API for XML (SAX)
    http://en.wikipedia.org/wiki/Simple_API_for_XML
    SAX Parser Benchmarks
    http://piccolo.sourceforge.net/bench.html
    XML Parsers: DOM and SAX Put to the Test
    http://www.devx.com/xml/Article/16922/1954?pf=true
    High-Performance XML Parsing With SAX
    http://www.xml.com/pub/a/2001/02/14/perlsax.html
    Using the SAX Parser
    http://www.javacommerce.com/displaypage.jsp?name=saxparser1.sql&id=18232
    Class SAXParser
    http://java.sun.com/j2se/1.4.2/docs/api/javax/xml/parsers/SAXParser.html
    Class SAXParser
    http://people.apache.org/~andyc/neko/doc/html/javadoc/org/cyberneko/html/parsers/SAXParser.html
    SAX Parsers
    http://webdesign.about.com/od/saxparsers/SAX_Parsers.htm
    Interface SAXParser
    http://excalibur.apache.org/apidocs/org/apache/excalibur/xml/sax/SAXParser.html
    Class SAXParser
    http://xerces.apache.org/xerces2-j/javadocs/xerces2/org/apache/xerces/parsers/SAXParser.html
    DOM Parsing
    Excellent website showing how 2 use Document Object Model (DOM)
    http://www.w3.org/DOM/
    Document Object Model (DOM) Parsing
    http://www.xml.com/lpt/a/1597
    Overview of DOM, DOM Level 3 core,DOM Level 3 Load & Save
    http://www.softwaresummit.com/2004/speakers/GrahamJAXP1.pdf
    Sample java program using DOM
    http://mail-archives.apache.org/mod_mbox/cocoon-cvs/200305.mbox/%[email protected]%3Eorg/mod_mbox/cocoon-cvs/200305.mbox/%[email protected]%3E
    Easy RFC lookup from XSLT mappings using a Java helper class
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/05a3d62e-0a01-0010-14bc-adc8efd4ee14
    XML Transformation Using the TrAX APIs in JAXP
    http://www.xml.com/pub/a/2005/07/06/jaxp.html?page=last
    cheers!
    gyanaraj
    ****Pls reward points if u find this helpful

  • Safari 5.1.4 update breaks SoftwareUpdate on 10.6.8 server IFJS_PropertyListConvertToType() called with type=3

    New 10.6 server machine.  (Actually 3 of them.)  If we install every update offered in Software Update except safari 5.1.4 and machine is fine.  Once the safari update is taken and the machine reboots, Software Update crashes a bit after launch.  When running softwareupdate -l on the command line, the error is
    Software Update Tool
    Copyright 2002-2009 Apple
    2012-03-14 14:25:19.763 softwareupdate[1631:4f0b] IFJS_PropertyListConvertToType() called with type=3
    Segmentation fault
    Anybody else seeing this?

    The same here on two xserves!
    Running SoftwarUpdate from the GUI!
    Console says:
    Software Update[24700]
    Package Authoring: my.result.title and my.result.message not defined or empty
    Software Update[24700]
    IFJS_PropertyListConvertToType() called with type=3
    com.apple.launchd[1]
    (com.apple.suhelperd[24702]) Exited with exit code: 2
    com.apple.launchd.peruser.501[24141]
    ([0x0-0x4b04b].com.apple.SoftwareUpdate[24700]) Job appears to have crashed: Segmentation fault
    I also get a message like this from ServerAdmin every minute in console:
    servermgr_info: unexpected Software Update state: crashed
    The crashreport says:
    Thread 7 Crashed:  Dispatch queue: com.apple.root.default-priority
    0   com.apple.JavaScriptCore                0x00007fff8795eff1 JSC::JSObject::defaultValue(JSC::JSObject const*, JSC::ExecState*, JSC::PreferredPrimitiveType) + 3921
    1   com.apple.JavaScriptCore                0x00007fff8794fd6a JSC::JSCell::toPrimitive(JSC::ExecState*, JSC::PreferredPrimitiveType) const + 42
    2   com.apple.JavaScriptCore                0x00007fff8781f387 cti_op_to_primitive + 55
    3   ???                                     0x000025f96ea04573 0 + 41753233081715
    4   com.apple.JavaScriptCore                0x00007fff877b1462 JSC::Interpreter::execute(JSC::ProgramExecutable*, JSC::ExecState*, JSC::ScopeChainNode*, JSC::JSObject*) + 2386
    5   ???                                     0x00000001024ba9e0 0 + 4333480416
    If full crashreport is required, I can mail it!
    Any ideas to get Softwareupdate running again?
    Greetings,
    Peter

  • Safari 5.1.4 update breaks SoftwareUpdate on 10.6.8 server, on 2008 xserve, IFJS_PropertyListConvertToType() called with type=3

    We've got 3 new-to-us 2008 xserves that we put into service last week.  Installed 10.6, updated up to 10.6.8 and took all of the software updates up until Safari 5.1.4.  Computers all work fine.  Then take the safari update -- afterwards, SoftwareUpdate crashes a bit after launch, gui or command line.  The error when you do it on the command line is "IFJS_PropertyListConvertToType() called with type=3".
    Over on the osx snow leopard server discussion board, several other people are reporting that they have the problem but only with the 2008 xserve, the 2009 xserve is just fine.  (No reports yet about the 2006 xserve.)
    I have reported the bug to apple, and they asked for a crash report, which I gave them.  It's bug #11048593  (not sure if those are publicly viewable...)

    We’re having the same issue on our 2008-era Xserve, but not on our other Snow Leopard servers and clients.
    Apple released an Apple Software Installer Update 1.0 release today which may address the problem.  See http://support.apple.com/kb/DL1512  Needless to say, you need to install this update manually using the downloaded DMG.
    I’ll be installing this update this evening on our systems to see if this resolves our issue.

  • Message: Enter a country for partner xyz with type 'requester'

    We are using SRM Server 500.
    I am customizing a new installation. When I create a SC in classic scenario using "Describe Requirement" I get following messages:
    "Enter a country for partner 0000000081 with type requester."
    "Enter a country for partner 0000000081 with type goods recipient."
    I didn't enter a source of supply, the partner number 0000000081 is a BP that belongs to the user in who creates the SC, as I can see in ppoma_bbp.
    All org-units are matched up in TA BBP_BP_OM_INTEGRATE.
    In TA BP I checked the address of 0000000081. Everything is ok, country is entered. What I cannot find is Partner type 'Requester' or 'Goods Recipient' in TA BP.
    I never had this Problem befor and I customized a few SRM, EBP, BBP, B2B systems. Has anybody an idea?
    Thank you for your response.

    Hi BERTRAND,
    one of our users is also facing the same issue when she is trying to cancel one confirmation in srm 7. DO you have any idea how can i check the consistency of the user in SRM7 as BBP_CHECK_USERS are not working in my SRM7 system.

  • Enter a country for partner 4000053932 with type 'Delivery Point'

    Hi Friend,
    I had set up new company code in SAP (R/3) and MySupply
    Also updated comapny code parener in BP t-code
    But i am getting error while creating shopping cart
    Saying that" Enter a country for partner 4000053932 with type 'Delivery Point'  (Item  Set up test )"
    Can any one help on this
    Thanks
    Shrinivas
    Edited by: Shrinivas Siddapur on Mar 6, 2008 3:32 PM

    I am closing the message.
    The issue has been resolved with the help of note:597475

  • Enter a country for partner 0000000497 with type 'Proveedor

    Hi Masters.
    I am working in settup scenario SRM/EBP  to SRM/SUS.  version 7.0 
    problem when send XI message into Srm/sus CLIENT The transaction SXMB_MONI in trace show the next message of error
    Enter a country for partner 0000000497 with type 'Proveedor'        = partner Proveedor
    Enter a country for partner 0000001052 with type 'Parte venta'       = Partner sales
    Thanks.

    Hi S Neelima . thanks for you hellp, but I review the note 702786 and does not apply for my version srm server
    my sp level is SAPKB70107 . I  review the code in Include and yes is  the correction mentioned into note.
    another idea ?
    Thank.

  • Enter a country for partner 0000002185 with type 'Goods Recipient'

    Hi  everyone,
    We are using SRM 4.0. For a certain user we are facing the error as: "Enter a country for partner 0000002185 with type 'Goods Recipient'".
    Kindly help me to resolve this. This error is not occuring for any other user.
    Regards,
    Bhakti

    I am closing the message.
    The issue has been resolved with the help of note:597475

  • Enter a country for partner with type 'Sold-to Party'

    Hi
    when we try to send Delivery Scheduld to SUS from R/3 thro
    Idoc "DELINS" we are getting the following error on the SRM side
    An error occured within an XI interface: Exception
    occurredE:BBP_PD:147 -Enter a country for partner with type 'Sold-to
    Party' E:BBP_PD:428 -Enter exactly one partner of type Sold-to Party
    I:R5:553 -'Different country' field contents deleted because identical
    to 'Country' E:BS:002 -"Create" is not allowed (SUS Purchase Order
    7500000062 ) Programm: CX_BBP_BD_ERROR===============CP; Include:
    CX_BBP_BD_ERROR===============CM002; Line: 57
    we also tried referring the note 987569, we are on SP as follows
    SAP_BASIS SAPKB70010
    SRM_PLUS 550 SAPKIBK007
    SRM_SERVER 550 SAPKIBKT07
    regards,
    Anand

    Hi
    <u>We have faced a similar problem in our previous Implementation.
    This is happening in some cases, where the configuartion settingas are not correctly done.</u>
    <b>After several tentatives, I managed to solve it activing on the Customizing for Multicompany in one client.
    I have accessed to table BBPC_MARKETSET (Status of selection in a market set system) through SM30 and I have just removed the flag "Configure Market Set Procurement".</b>
    <u>Also, another option,
    check your Enhancements (customer specific) because this is a clear logical error.
    The same partner function is added twice, hence it must be deleted programmatically in the enhancement logic.
    FYI.. I usually encountered same type of issues in almost every implementation.</u>
    Hope this will help.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

  • JS error while using input fields with type=file on XP SP2

    Hi all,
    we found a new problem in applications which use input fields with type=file running in a browser on Microsoft Windows XP with SP2.
    A typical test layout might look like:
    <html>
      <head>
        <title>File-Upload</title>
      </head>
      <body>
        <form action="/cgi-bin/upload.pl" method=post
              enctype="multipart/form-data">
          <input type=file size=50 maxlength=100000 name="file"
                 accept="text/*"><br>
          <button onclick="document.forms[0].submit();">Send</button>
        </form>
      </body>
    </html>
    When you add a link without the fully qualified path (for example pic01.jpg instead of c:\pictures\pic01.jpg) and click on the 'Send' button, nothing happens and you get a Javascript error 'Access denied'.
    The solution can be found in the MS Knowledge Base article 892442:
    http://support.microsoft.com/default.aspx?scid=kb;en-us;892442
    We still investigate this issue and will inform you about the further proceeding.
    Regards,
    Rainer

    Hi Yepin Jin,
    I am facing the same issue did you solved it?
    Regards,
    Orlando Covault

  • Error in phase 4: Creating node $(DIR_TRANS) with type DIRECTORY failed.

    Hello SAP Gurus,
    when trying to install SAPNW2004sSneakPreviewABAP in phase 4 I get error:
    ERROR 2006-08-08 08:52:40
    CJS-30129  Creating node $(DIR_TRANS) with type DIRECTORY failed. Original exception text was: syslib.filesystem.nodeCreationFailed:
    Unable to create node
    pc05\sapmnt\ with type DIRECTORY: can't create parent node..
    I searched SDN and found as possible error causes: lacking authorization of installation user or users nspadm and SAPServiceNSP, wrong JRE version, but those are not applicable.
    Any other suggestions?
    Simon

    Hello Prince Jose,
    thanks for the reply, it brought me to the solution: I had to de-activate the Windows Firewall and hat to check 'Network users are allowed to change files'.
    I know made it till phase 17, quite a step.
    Best,
    Simon

  • How to call subroutines defined in ABAP program with type S

    how to call subroutines defined in ABAP program with type S? can you give an example?

    Normal executable program,
    REPORT  ZTEST_MAIN.
    perform sub1 in program ztest_sub.
    "you can call using in program addition
    Subroutine pool program
    PROGRAM  ZTEST_SUB.
    form sub1.
    endform.

  • Photoshop CS6 (Mac) crashes when opening files with type or using the type tool

    Hi,
    Photoshop CS6 keeps crashing when using the type tool or when opening files with type on it. I've quit suitcase, disabled the suitcase plug-in, reset the preferences in Photoshop there's no crash report coming up either the application just dies! I am currently trying a system restore from time machine to see if that works!. Any other suggestions would be greatly appreciated.
    Many thanks
    Olly

    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://helpx.adobe.com/photoshop/kb/troubleshoot-fonts-photoshop-cs5.html

  • Unable to create node /home/ SID adm with type directory

    I am currently experiencing a problem when trying to install a Java Stack onto my new SCM 7.0  EHP1 server.
    I receive the error:
    System call failed.  Error 89......mkdir..../home/djdadm....
    (djd is the SID of my new Java AS)
    This is followed by an error:
    Unable to create node /home/djdadm with type directory
    We have Solaris v10 (SPARC), and the ABAP stack has already been installed successfully.
    The user djdadm was created manually on solaris before starting the installation (assigned to groups sapsys, dba, sapinst + oper) and the home directory "/usr/sap/DJD/home" was specified. 
    Note the difference in the home directory that it is trying to create to the one that we set against the new user djdadm.
    This error is experienced quite early in when SAPINST is performing the tasks (and it stops at the Create users for SAP system stage).
    I was experiencing a problem where SAPINST crashed completely for a while, so I've downloaded the latest version of SAPINST today.  Also, I've set a new TEMP folder and am running SAPINST from there, but am stuck at the problem mentioned above.
    Any help would be much appreciated. 
    Alistair Crawshaw

    Hello,
    It looks like a Solaris issue. Check if the home directory /home is reserved in the Solaris configuration.                                                                               
    You may try this in that case:       
    1. modify /etc/auto_master file to change the entry for '/home' to say 
       '/autohome' instead                                                  
    2. reboot                                                              
    3. rmdir /home                                                         
    4. ln -s /export/home /home (make sure /export/home exists)       
    Regards,
    Désiré

  • Db Adapter: problems by calling a procedure with type as parameter

    Hi,
    We using a db adapter in a bpel process.
    In that dapter we call a procedure with types as in and out parameter
    package.procedure(p_in IN in_t, p_rsult OUT result_t).
    When we calling the procedure, we don't call the procedure directly.
    We call that procedure in a schema who have the execute rigths for the package and the types.
    When we run the process we get the error message
    unable to convert the xsd element p_in whose user defined type is in_t
    cause: java.sql.SQLException: ora-01436 connect by loop in user data
    I am not shore if I draw the right conclusions.
    Is it rigth that bpel have a problem by using types as parameter when using two schematas? Isn't it a bug.
    For every help I was thankful.
    Thanks in advanced.
    Michael

    Hi,
    thanks for the hint. I have implemented a wrapper package and it's working well.
    Only one crux. The parameter of the called procedure are data types and not simple types.
    CREATE OR REPLACE TYPE pesa_db_return_t AS OBJECT
    (SUCCESS_MSG varchar2(255)
    ,FAULT_SQLCODE varchar2(255)
    ,FAULT_SQLMSG varchar2(255)
    Wrapper package...
    IS
    PROCEDURE prc_writeReOinDB (p_AuftragRechnungOnline IN pesa_data.pesa_tivu_reo_t
    ,p_result OUT pesa_data.pesa_db_return_t)
    IS
    BEGIN
    pkg_pesa_reo.prc_writeReOinDB (p_AuftragRechnungOnline => p_AuftragRechnungOnline
    ,p_result => p_result
    END prc_writeReOinDB;
    END pkg_pesa_wrapper;
    So I have to declare the parameter with the schema user in front of.
    Now, we have deployed thes sources on a second enviroment and get following error:
    <2008-04-22 15:01:25,749> <ERROR> <eweber.collaxa.cube.engine.dispatch> <BaseScheduledWorker::process> Failed to handle dispatch message ... exception ORABPEL-05002
    Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.message.instance.CallbackDeliveryMessage"; the exception is: Type class not found.
    Cannot find class for type "org.apache.xerces.dom.ElementNSImpl". Please check that the class is located in the classpath.
    You have a hint for me what I have to do?
    Thanks in advanced,
    Michael

Maybe you are looking for

  • Saving a PDF File to Export

    Question: Do I need to save the PDG file that I want to export to Word. Can I save it in a name of file rather than A PDF Number? DonBow

  • Browser.sessionstore_restore_on_demand has no effect

    Using 13.0.1 under Mac OS 10.6.8, Firefox does not seem to recognize the state of browser.sessionstore_restore_on_demand setting. Set as false, but still will not load tabs during restore until they are selected.

  • Links in Acrobat auf Datei und Seite möglich?

    Moin liebe Leute, ist es möglich aus einem PDF-Dok über einen Link ein PDF-Dok in einem neuen Fester zu öffnen und gleich die richtige Seite angezeigt zu bekommen? Ich sehe leider keine entsprechenden Optionen in den normalen Menues (oder ich habe si

  • Reading 21576 bytes of data at offset 3 in a buffer of total size 114

    Logs claim it's a 'buffer overflow' - [2015-Jan-05 22:32:41] RDP (0): Exception caught: BufferOverflowException in file '../../gryps/misc/containers/flexbuffer.h' at line 421 Specifics:  attempting to connect to virtual box running on localhost:55985

  • Datasource works in Tomcat 5.5.4 but not 5.5.9

    I am encountering a very strange problem when trying to use a datasource in Tomcat. I got Tomcat 5.5.4 to access the datasource by using the following in <TomcatHome>\conf\Catalina\localhost\<webAppContext>.xml <Context path="/appName" docBase="appNa