CName to third party server

Hi,
I am working with an applet which is not working in the expected way. I am including the applet in a JSP which calls the Java Jar and Codebase from a third party server.
It is identified that the problem is with access to third party server. To solve this, I have been asked to create a CName to third party server and call the Java Jar and Codebase from that server.
Can anyone please suggest me how to do this?
Thanks in advance.

Hi,
Perhaps you are using Firefox without IE TAB plugin.
Applets works fine with IE using the OBJECT tag.
Firefox, Netscape and other works fine with traditional APPLET tag.
Perhaps you must to detect wath kind of browser is being used by means of java scripting.
Following example may help you.
Best regards, Gustavo Oga
<script language="javascript">
var _app = navigator.appName;
if (_app == 'Microsoft Internet Explorer') {
document.write('<OBJECT ',
'classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"',<!-- Java Plugin any version -->
'width="0" height="0">',
'<PARAM name="code" value="JUploadApplet.class">',
'<PARAM name="archive" value="Http://URL/java/ddsApplets.jar">',
// - - - other pertinent params
'</OBJECT>');
else { <!-- No es IE Explorer ni Firefox con IE Tab -->
document.write('<APPLET code="JUploadApplet.class"',
'archive="Http://URL/java/ddsApplets.jar"',
'width="0" height="0">',
// - - - other pertinent params
'</APPLET>');
</script>

Similar Messages

  • Forwarding response data to third party server?

    Is it possible to have response data redirected to a third party server and bypass the Adobe FormCentral server?

    No, this is not something that we support.

  • Read the pdf file from the Third party server.

    hi all,
    we got the requirement that we have to display the salary statement and form16 in the portal.
    we are not using the sap for the pay roll.
    pay roll will run by the third party....they will keep all salary slips in the one folder under the server.
    so from the third party server we have to get the salary statement in to our application......third party will storing the file with salcode.pdf.
    can you help me to resolve this?
    Thanks in advance
    swapna

    Hi yugedhar,
    thank you for the reply.
    the pdf files will be available in one common folder , with in the server only.
    so i have to implement the code to download the file from the one particular location based on the name of the file
    (means if  file name =Login id that has to open)
    so can you help me implement this logic .
    Thank you
    swapna

  • How do you publish a webpage made in Muse to a third party server as I cant seem to do it

    Hi How do you Publish a webpage ( gallery) to a third party server
    tutorials are vague when they get to this part of publishing.
    I use Dreamweaver as a rule but would love to migrate over to Muse
    if I can master this part
    thanks

    http://www.adobekb.com/launching_pt02.html#publishingsiteto3party

  • My fonts are changing in iWed after I publish. I need step by step instructions on how to go to my third party server and clear out all of my files and reload my whole website, the solution I saw posted by another. Please someone help me on this. Urgent

    My fonts are changing in iWed after I publish. I need step by step instructions on how to go to my third party server and clear out all of my files and reload my whole website, the solution I saw posted by another. Please someone help me on this. Urgent

    If your fonts are changing when viewed on other computers - epecially those running windows - you need to look at using web-safe fonts...
    http://www.iwebformusicians.com/iWeb/Fonts-Colors.html
    Also make sure you clear your browser cache before viewing you published files.

  • How Can we move files from apex database to third party database (i.e. Google drive)

    Hi All,
    I am storing the files in apex database which are uploaded through apex form. Now i want to move these files to the third party server on regular bases. Means once we stored those files in our apex database at specific time on everyday we have to move these files to google drive. How can i achieve this please do  need full.
    Version: apex 4.2
    Regards,
    Vijay J

    Hi Vijay,
    Check out the following code: https://gist.github.com/trent-/7526011
    The following need to be set accordingly
    g_upload_folder_id - the google folder ID (obtained from the URL) - used as a default to upload into a particular folder
    g_wallet_path - the path of your oracle wallet with the trusted certificates imported
    g_wallet_password - the password for the above wallet
    g_redirect_uri - The procedure that has your implementation with what to do after the user accepts
    g_client_id and g_client_secret - property's from your project out of your google API console
    l_endpoint_url in the function authorization_code_callback - the page to go to after authorizing
    This particular code is designed to use a refresh token such that once the user authorizes, the system can refresh the token whenever they need. But you can adjust this to suit your needs. I suggest reviewing the following documentation: https://developers.google.com/accounts/docs/OAuth2WebServer
    So, here is what I've done. Create a button, with a dynamic action click event with the following code:
    $.ajax({
        url: '&OWNER..google_drive.GET_AUTHORIZATION_URL',
        data: {
            p_state: &APP_SESSION.
        success: function(data){
            window.location.href=data;
    This redirects the user to the authorization page. And as you can see in the code, would run the following when authorized:
    update app_users set refresh_token = (returned token); -- that is, depending on your user management design, you would need to adjust this accordingly.
    Then to upload the file, I have an onsubmit process with:
    declare
        l_filerow apex_application_files%rowtype;
    begin
        select * into l_filerow
        from apex_application_files
        where name = :P133_ATTACH_DATA;
        :P133_GOOGLE_DOC_ID := google_drive.create_file(l_filerow.blob_content, l_filerow.mime_Type, l_filerow.filename);
    end;
    Please also review the following post, which describes the overall process of setting up the project, wallet, acl, etc: Oracle Apex Tips: Accessing Google Data
    There are probably bits of the code that need refinement, and better error checking, but hope it helps :-)

  • Questions with Third-Party Access Management Systems

    I was reading: http://download-east.oracle.com/docs/cd/B14099_18/idmanage.1012/b14078/tpsso.htm#i1009152
    And few questions raised in my head:
    1st: On the IPASAuthInterface implementation we're told to fetch a header that was set by the third party server. Well, if we do a redirect from that server the header does not reach the destination, what would look like the code on the client?
    2nd After oracle fetches the info needed, will it then generate the SSO_ID cookie put on the response? Where does it redirects the user afterwards?
    3rd Will this overwrite the convetional way of authentication within Oracle AS?
    Best Regards

    I am also trying Oracle EBS / Oracle SSO integration with IBM TAM and facing the same problem.
    Where as IBM trace shows that user-id has been passed to backend but it never reaches the custom authentication file in http header.
    But it works if I use harcoded userId in custom authentication module!
    What I have noticed is, Once TAM passes the user id and before it reaches the custom java code, there is one page is being displayed (index.html) this page is autogenerated thru autoconfig utility.
    I think http header reaches till this page but this html pade does not f/w the http header to custom java file.
    I dont know how to modify this auto generated index.html!
    Also this file has:
    <META http-equiv=REFRESH content="1; URL=https://ORACLE_EBS_HOST:443/OA_HTML/AppsLogin">
    this tag does a auto refresh and send the request.
    What you guys think?
    plz mail me if any one found any solution [email protected]
    thanks in advance

  • Third party spam filters

    Mail's adaptive junk filter is being overwhelmed by the flood of email I'm getting at my email address. I can't abandon the address any time soon because I advertise it, and get new customers by email reply.
    Is it possible to route my email to a commercial third party server, which will do a better job of identifying spam (with a minimum of false positives and false negatives) and then route it back to my usual mail server, or some similar arrangement?
    If so, who do you recommend? Does it work that much better than Mail's adaptive junk filter?
    Thanks in advance,
    Tim
    466 MHZ G4   Mac OS X (10.4.8)  

    Third party message handlers like MessageLabs do a very good job at filtering mail, catching viruses, etc. , but I'm not sure how many of them offer services to individuals.
    You might want to look at installing SpamSeive first. http://c-command.com/spamsieve/.
    It gets good reviews and at $30 would be less expensive than paying a monthly fee to a service company.
    - Wayne
    PowerMac G5   Mac OS X (10.4.8)  

  • Best option for profilling app running in third party propritery platform?

    hi !!
    i am involved with a legacy project wherein jdk1.3.1 was used for development, the java code is deployed in a propritery platform/server ( meant for telecom applications). The server was basically meant for C++ modules but with popularity of Java the vendor started supporting deployment of Java modules as well...but its still a lot away from being called good enough :(
    My problem is some memory leaks that i am facing in the application, and coz the JVM is started internally by the third party server/platform based on some configuration info on what all java code is to be executed. I am not in control of starting somethign like hprof....
    what arethe best ways to do profilling in such a scenario?? can something like hprof be executed programmatically ?? ( as i get control of JVM once its started by the 3pp/platform )
    Or the other option might be plugging in some JNI code on JVMTI..but unfortunately time doesnt support choosing that option....:(
    ( i would go for that in worst case scenario but am just hunting out some cheaper options available)
    I hope am able to convey the problem ....
    rgds

    check out OptimizeIt

  • Enterprise Manager Grid Control can send SNMP Traps to third-party?

    GC 11.1
    It looks like a simple config, but I've got into a confusion about it.
    I'm trying to figure out the configuration to send SNMP traps to a third party server.
    My scenario is:
    Node A (managed, monitored) ---- GC box------ SNMP box (final destination).
    My understanding is that the traps (notification methods) configured on GC box are generated by the Agent on Node A, then received by the GC and distributed as e-mails.
    What is the config to set the traps from A to reach SNMP box?
    There is the help page from the GC page (confused about interpretation):
    "Add SNMP Trap pageThe Add SNMP Trap page enables you to provide the name of the host (machine) on which the SNMP Master Agent is running and other details so that SNMP traps can be sent through Notification Rules.
    An example is shown below.
    Name HP OpenView Console
    Description Notification method to send trap to HP openview console
    SNMP Trap Host Name litleguy.us.oracle.com
    SNMP Host Port 162
    SNMP Community public
    This SNMP host will receive your SNMP traps.
    Note: A Test Trap button exists for you to test your setup."
    Any suggestions are highly appreciated.
    Thx,

    Please reply with the specific questions around this.
    11.1
    EM can send SNMP traps to specific designated receivers. You create an advanced notification method (of type SNMP Trap) with the appropriate details about the receiver.
    (See Setup->Notification Methods)
    In the notification rules UI, you specify the alerts you are interested in forwarding and select the SNMP trap advanced notification method you created earlier.
    The SNMP receiver should be provided the correct MIB that defines the SNMP trap. There were some bugs with the MIB definition in one of the releases (don't recall which one off hand), so if the traps you are receiving don't match what the receiver expects - please let us know and we can point to the right one.
    regards

  • Credit Card Encryption through RFC calls to third party software

    Dear All,
       I am working on credit card encryption in CRM. At our firm, we have SAP R/3 which is integrated with third party server for performing credit card encryption using RFC calls. We want to perform similar thing in SAP CRM. I was looking into SAP standard mechanism to perform encryption and it seems they use class CL_PCA_SECURITY -> External Encryption to encrypt credit card. Are there any BADIs available for me to change behaviour of this call and call our listeners (for third party server) instead of what standard SAP is calling. Here is what in the code:
    call C function 'SSFENVELOPE'
      CALL 'SSF_ABAP_SERVICE'                                 "#EC CI_CCALL
           ID 'OPCODE'             FIELD   SSF_OPCODES-ENVELOPE
           ID 'SECTOOLKIT'         FIELD   SSFTOOLKIT
           ID 'STRFORMAT'          FIELD   STR_FORMAT
           ID 'STRFORMATL'         FIELD   STR_FORMAT_L
           ID 'BINENC'             FIELD   B_INENC
           ID 'IOSPEC'             FIELD   IO_SPEC
           ID 'OSTRINPUTDATAL'     FIELD   OSTR_INPUT_DATA_L
           ID 'STRPAB'             FIELD   STR_PAB
           ID 'STRPABL'            FIELD   STR_PAB_L
           ID 'STRPABPASSWORD'     FIELD   STR_PAB_PASSWORD
           ID 'STRPABPASSWORDL'    FIELD   STR_PAB_PASSWORD_L
           ID 'OSTRENVELOPEDDATAL' FIELD   OSTR_ENVELOPED_DATA_L
           ID 'CRC'                FIELD   CRC
           ID 'OSTRINPUTDATA'      FIELD   OSTR_INPUT_DATA-SYS
           ID 'RECIPIENTLIST'      FIELD   RCPTAB-SYS
           ID 'OSTRENVELOPEDDATA'  FIELD   OSTR_ENVELOPED_DATA-SYS
           ID 'STRSYMENCRALG'      FIELD   STR_SYM_ENCR_ALG
           ID 'STRSYMENCRALGL'     FIELD   STR_SYM_ENCR_ALG_L.

    Vivek,
    While it may be technically possible to accomplish what you are suggesting (leveraging the encryption functionality provided by your third-party server) I would recommend strongly that you consider a token-based solution instead.  You can learn more about tokenization on this [blog|/people/eric.bushman4/blog/2009/01/02/tokenization-as-a-means-of-securing-credit-card-numbers ].
    There are many reasons why a token-based solution is superior to using application specific encryption (as outlined in the blog), but specifically in the case you describe where an SAP CRM and SAP R/3 are involved there is one specific reason to consider:
    When order data is replicated between SAP CRM and SAP R/3 the systems will attempt to decrypt the credit card numbers prior to passing the data and therefore the RAW card number will be stored in the middleware logs.  This is especially true when using SAP's native credit card encryption logic in the CRM and R/3-ECC applications. 
    For example, let's say a user enters a credit card as the form of payment during Order Creation in CRM.  At Order Save the system will send the credit card information to your third-party server for an authorization attempt and the results will be returned to CRM.  As the Order is saved and committed to the CRM database the standard SAP encryption functionality can be leveraged to encrypt the card data.  Based on your middleware configuration, eventually the Order data (including the credit card details) will be sent to the R/3 or ECC system.  In order to do so the CRM system will first decrypt the card number meaning that the CRM middleware logs will contain RAW card numbers.  When the Order is created in R/3 or ECC the native credit card encryption functionality in R/3 or ECC could be used to encrypt the card number prior to the Order being stored in the database.
    Should you choose to use a third-party server you may find, depending on how the third-party vendor's logic works in SAP, that you must utilize a BADI to decrypt the card number in CRM so that the CRM middleware has a RAW card and so that when the Orders is saved in the R/3 or ECC system it can be encrypted again with the third-party vendor solution.  In either case the RAW card number is present in all systems for some period of time and potentially stored in logs thus exposing your systems to risk and greater PCI audit scrutiny.
    Eric Bushman
    VP, Solutions Engineering
    [Paymetric|https://www.paymetric.com]

  • Support of UCS P81E in third-party servers

    Hi there,
    is it possible to use UCS P81E (N2XX-ACPCI01=) with other servers than UCS C-series? If so, is there any compatibilty list of supported vendors or server types?
    Cheers,
    Helena

    The datasheet referenced her descibes Adapter-FEX the reference is specific to that technology.  It states:
    "...An ecosystem of adapter vendors is now about to  support this technology using the IEEE 802.1Qbh standard, the first  vendor being Cisco itself, with the Cisco UCS P81E VIC (Figure 2),  designed for use with Cisco UCS C-Series Rack-Mount Servers. Other  adapter vendors will soon follow, providing adapters that support this  capability. Both Cisco Nexus 5500 platform and the Cisco Nexus 2000  Series Fabric Extenders support the Adapter FEX technology across a  variety of adapter platforms. Therefore, the offering can now be  expanded outside a Cisco UCS environment to third-party server vendors  that support IEEE 802.1Qbh-capable adapters."
    This means that you could use a third-party adapter such as the Broadcom 57712 which is IEEE 802.1Qbh (prestandard IEEE 802.1Qbr) capable to configure Adapter-FEX in a Cisco or Non-Cisco server.
    As Manish mentions, the P81E is only supported in the C-Series servers and there are currently no immediate plans to qualify it with other third party servers.
    Steve McQuerry
    UCS - Technical Marketing

  • Third party old site too? Help!!

    I am about to publish my new iweb website to a third party server (i.e. other than .mac)
    Still, I wanna keep the old site for people to look at using a link to the old site.
    Is that possible? Does anyone know how to pull this off?

    Which site comes up when you type www.mysite.domain is determined by the index.html (or sometimes the default.html) file in the space. If you upload the index.html published by iWeb, then then short url should go directly to that site, and you will need to provide a longer one, like www.mysite.domain/pagename.html for the original site. Or of you just upload the sitename folder published by iWeb, but not the index.html file, then the short url should stay with your old site and the iWeb site will need a longer url, like www.mysite.domain/sitename.

  • Which 3rd party server should I use to host my labview VI from my PC

    I have developed a Labview application, that I want to host from my PC. So that I can access it from other PC thorough internet.
    Now It can be accessed from the connect "remote panel"  option in OPERATE tab.
    But I cant give a labview to my client so I want to access it through  browser.
    Using web publish tool I can access it on LAN through web browser.
    But now I want to host that HTML page on internet.
    so can you folks please help with the third party server suggestion that can host remote panel.
    Thank you.  

    If you are wanting to display your front panels the answer is easy: There are no 3rd party servers that can display a dynamic LV front panel. What you will have to do is a conventional Web application where your LV code sends data to the web user interface using HTTP client calls to "Get" and "Post" methods.
    The client-side will be orchestrated through JavaScript and some sort of messaging scheme you work out.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How can I set up printing to queues on a Windows 2008 server directly from the iPad apps and not from third-party applications without using AppleTalk or Bonjour?

    We have a Windows 2003/2008 server-based network with a dedicated print server which we would like to be able to print to over Wi-Fi.  How can I set up the printers on the iPad without downloading a third party application such as Print Central or Print N Share?  I want to just click the arrow and "Print" then choose the printer, which doesnt show up.  I want to be able to use the existing TCP/IP-based network that we have to reach these queues, not having to install Bonjour or AppleTalk to reach them.
    Thanks,
    KMQ7

    This would really be the "Holy Grail"   right now.  I think this a feature that every large organization requires. AirPrint works on a small scale, but is not really an enterprise class application.  In addition it uses the Bonjour discovery process which is difficult in a large LAN WAN environment.  For those that would remind me, I am aware of the enhancement link 

Maybe you are looking for

  • [GAVE UP] New Wifi card problem - no orange "Wifi on" light

    For some silly reason the Intel Wifi 4965 agn mini-PCI card in my wife's laptop will not work with anything newer than Ubuntu 8.04 Hardy Heron. Linux will not even "post". (I think that's the right word) So, I ordered an Intel Wifi 5100 agn mini-PCI

  • How to use partition by instead of group by?

    Hi, I am having trouble using partition by clause in following case, column other_number with null values contains 10 records in 'some_table' 5 records with date 11-01-2009, item_code = 1 5 records with date 10-01-2009, item_code = 2 This query retur

  • Calendar on Home Screen

    Today my blackberry 8830 World Edition randomly stopped showing the next three entries in my calendar. Just to clarify I have the "today" theme. I have also tried the hard restart as well as backing up my calendar entries and deleting and them restor

  • Production order print out in CRTD status.

    Dear Expert, Please guide me for how to take print out in CRTD status for production order.Has a work around I try to create status profile but still not able to make it. I dont want to change the settings in BS22,since its effect globally.Please let

  • Divide sales by no of Days

    Hi friends, here is my task, appreciate your help. Table_A: Code Date 111 1/1/2014 111 1/2/2014 111 1/3/2014 111 1/4/2014 111 1/5/2014 111 2/1/2014 111 2/2/2014 111 2/3/2014 111 2/4/2014 111 2/5/2014 Table_B: Code Jan Feb 111 1000 2000 Need Result As