How to register remote client in java to a Corba server in C++

Hi All,
Although i know that it spossible for to have a Corba client in java and Corba server in C++.What am nto sure is whether i can have this client and server on 2 different machines.In a vwgue way i think it shoudl be possible but not sure.
I have Server running in Corba in one machine, how to register java client on another machine to this server .??
Thanks,
Ranjitha

Hi,
You can do that by defining the DB link to use while you register the function.
From the Administrator go to "Tools-> Register PL/SQL Functions..."
Fill in the information of the function (name, display, owner ...)
And in the "Database Link" choose your new DB link.
Tamir

Similar Messages

  • How to use Delphi Client in Java WEBSERVICE

    I am building a Webservice Application. In client side I use Delphi to import WSDL from a Java Webservice Server ( literal WSDL ). By using WSDL Importer Control I successfully imported the WSDL file but when I called the impoted method the system returned an error :
    "Project sendEmail.exe raise exception class ERemotableException with message ' Unable to find a matching Operation for this remote invocation <SOAP-ENV: send xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> </SOAP-ENV:send>.Please check your Operation Name.'
    I think when i call send method in Client side the request is sent to Webservice Server but in server side ( build in Java ) that method doesn't match with the original method ( although the method in client side is imported from Webservice Server )
    ( When I use Delphi client to invoke methods from Delphi Webservice Server ( with rpc WSDL ) the result is OK and Java client also sucessfully invoke that method from Java Webservice )
    Can you show me how i resolve this problem. Thanks

    Hi Robin,
    At some point, you can expect that the Web services frameworks will be implementing some of the plumbing related to WS-* for you. For example, you can rely on the framework to deal with WS-sec for you with the current Developer Preview of OC4J. For WS-Adressing specifically, you have to handle this in the application layer today, and there is very little the framework can do for you, other than converting the WS-Addressing SOAP header into some java object model for you. The business logic related to the use of the ws-addressing headers has to be implemented at the application level, with some handler. The same applies today for any JAX-RPC based Web services framework, including Axis. Now, if you are using some 'advance' framework like BPEL PM, they can do a lot of heavy lifting for you, under the cover.
    Hope this helps,
    Eric

  • How to detect remote (client) host name or remote host address?

    Hello!
    I need to receive remote host name or remote IP address in the BSP controller DO_REQUEST method. How to do it?
    In Java I can use getRemoteAddr() or getRemoteHost() methods of HttpServletRequest class. But in the BSP I can not find analogues of these methods.
    Please help
    Best regards,
    Eugeny

    Hi,
    I guess there is something "cleaner", but here is a solution:
    DATA l_host TYPE string.
    l_host = me->request->if_http_entity~get_header_field( '~remote_addr' ).
    Regards,
    Tanguy

  • How to register remote WebLogic 9 with netbeans5

    can anybody tell me is it possible to register remote WebLogic 9 with netbeans5

    Hi,
    This forum is exclusively for discussions related to Sun Java Studio Creator. Please post your question at : http://www.netbeans.org/community/index.html
    Thanks,
    RK.

  • How to register remote function in EUL

    Dear All,
    I want to register remote database function in EUL.
    I have already created a DB link to that DB.
    Aqeel Nawaz

    Hi,
    You can do that by defining the DB link to use while you register the function.
    From the Administrator go to "Tools-> Register PL/SQL Functions..."
    Fill in the information of the function (name, display, owner ...)
    And in the "Database Link" choose your new DB link.
    Tamir

  • How to do remote client copy ?

    Hai sap guru's
    i  want to do client remote client copy .
    i want to copy from DEV 200 to PRO 100.
    can you tell me the procudure
    thanks & regards
    sathish.

    Hi Satish,
    Remote client copy is process which can perfom from soucre client. for this we need to create rfc destination from source to target client. use the transaction SCC9  from source client. Difine the required profile,source destination ,system name and you can start immidiately or you can schedule as back ground job.
    Please reward the points if it is usefull.
    Thanks.
    Raju.

  • How to establish a connection from java to SAP Netwevare server

    Hi All,
    As per my requirement i need to create a connection from Java to SAP Netwevaer Server inorder to access the docs from KM. PLZ provide some sample code
    (I know how to connect from java to SAP R/3 syatem using JCo connector).
    Can anybody help me.
    ADV Thanks

    Look
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/6615ea90-0201-0010-be81-e7a300fdf212
    /people/rohit.radhakrishnan/blog/2005/05/27/uploading-files-to-km-repository-using-webdynpro-apis

  • How to move Remote Desktop License's from one 2003 server to 2003/2008

    Hi Sir,
    We have one windows 2003 server with 5 Remote Desktop connection.
    Someone hack our server and all the files (including system files) had been corrupted. 
    Kindly guide us the procedure to move it another server 2003/2008.
    So, Please tell me the procedure recover/repair corrupted files.
    The virus is something like encrypted the file and given some email to decrypt.

    For migration of licenses read
    http://technet.microsoft.com/en-us/library/dd851844.aspx
    http://technet.microsoft.com/en-us/library/hh553155(v=ws.10).aspx
    https://blogs.technet.com/b/anthoben/archive/2010/05/13/migrating-your-terminal-server-license-server-from-windows-server-2003-to-2008.aspx
    http://yuridejager.wordpress.com/2011/11/10/migrating-terminal-server-licenses-from-windows-server-2003-to-windows-server-2008-r2-using-the-rd-license-manager/
    http://public.madeinengland.co.nz/how-to-transfer-terminal-services-licenses-in-windows-2003-2008-2012/Hope
    this helps you in migration
    Milos

  • How to register created fonts in Java 5?

    Java 6 provides the registerFont(Font) method in GraphicsEnvironment to register fonts created using Font's createFont(int, InputStream) method. However, I need my application to work using Java 5.
    I looked in the Java 6 source code hoping to find the solution. In Java 6, GraphicsEnvironment's registerFont(Font) method calls a static method also entitled registerFont(Font) on the platform class sun.font.FontManager. Based on the code in sun.font.FontManager, I created a class for use in my application which only contains the variables and methods necessary for the registerFont(Font) method.
    There is only one problem: the registerFont(Font) method in sun.font.FontManager relies on the use of a native+ method to derive a Font2D object from the created font. The method is: public static native Font2D getFont2D(Font). Although my program compiles, I get the following error message at runtime:
    Exception in thread "Thread-3" java.lang.UnsatisfiedLinkError: getFont2D
         at MyFontManager.getFont2D(Native Method)
         at MyFontManager.registerFont(MyFontManager.java:105)
         at java.lang.Thread.run(Unknown Source)
    How do I derive a Font2D object from a Font object?
    OR
    Using Java 5, how do I register a created font such that I can reference that font via its family name, as in the following lines of code (the Java 6 solution is crossed out)?
    this.simpleAttributeSet = new SimpleAttributeSet();
    try {
    InputStream inputStream = getClass().getResource("fonts/FONT.TTF").openStream();
    Font font = Font.createFont(Font.TRUETYPE_FONT, inputStream).deriveFont(Font.PLAIN, 25);
    inputStream.close();
    GraphicsEnvironment.getLocalGraphicsEnvironment().registerFont(font);
    MyFontManager.registerFont(font);
    StyleConstants.setFontFamily(this.simpleAttributeSet, font.getFamily());
    } catch (Exception exception) {
    System.err.println(exception);
    }

    Sure.
    My strategy was to create a class for use in my application which would only contain all the variables and methods necessary to execute the registerFont(Font) method in the Java 6 version of sun.font.FontManager. The registerFont(Font) method calls two static, native methods: isCreatedFont and getFont2D. Originally, I made the mistake of including these methods in the class I created. The solution: call these methods on sun.font.FontManager.
    The Java 5 version of sun.font.FontManager fortunately supports getFont2D, but does not support isCreatedFont. However, it is not necessary for my program to determine whether or not the font is a created font. Therefore, I replaced all instances of calls to isCreatedFont with the value true.
    NOTE: The solution works, but my font ended up looking worse than it did using Java 6 and I'm interested in learning why.

  • How to register jdbc driver in java application

    Using Java Studio Enterprise:
    1. Add mssqlserver.jar to Libraries.
    2. jar contains package: com.microsoft.jdbc.sqlserver,
    package contains SQLServerDriver.class
    Trying to register this driver in program with:
    Class.forName("com.microsoft.jdbc.SQLServerDriver");
    raises exception ClassNotFoundException
    Maybe I should put mssqlserver.jar to specific folder?
    For web application using same driver works fine.

    hi,
    Class.forName("com.microsoft.jdbc.SQLServerDriver");
    raises exception ClassNotFoundExceptionFirst you check weather these jar files is in your lib <folder>
    msbase.jar,mssqlserver.jar,msutil.jar
    if no, copy that files and try it,

  • How to ping a client using java

    i got a problem, can any body help me regarding this matter. Problem is that i want to maintain a list of all the systems that are connected to server and this list is to be maintained using java, as i m building an appication in java where i need this list. Overview of the application is that i m making a PC reservation system. Database of the system will be maintained on the server and all PCs will be linked to it using RMI. For making reservation of different PCs, there must be a list of all working PCs so that selection can be made to reserve a PC. Problem is that how to maintain that list, plus continuous update this list so that if a PC stops working/breaks down, it can be removed from the list. Simple solution to this is to ping each PC after fixed time interval, but how to ping using java ??? i m usgin Microsoft Visual J++ 6.0 for developing my application, and this application will be runnig on Microsoft Windows 2000 operating system, but currently, i m in Windows 98 enviornment.

    The 1.4 API actually provides a Runtime.exec(String) but if you want to provide a String array, you can do that as well. None of the exec are static, you need to obtained a reference to the Runtime through the static method getRuntime(). So the exact call looks this way:
    Runtime  rt = Runtime.getRuntime();   // you probably want to obtain this REferance only once
    Process p = rt.exec(new String[] {"ping", target}); // yes, target is the IP or DNS name of the machine you want to ping

  • How to shutdown remote systems using java

    hai,
    this is Guru
    i have a requirement that is i have to shutdown my server which is in remote area.please send code if possible.
    thanqqq
    Guru

    Hi Guru,
    I havent worked on it, but i think you would need to customize Ant to help you in performing remote configuration management.
    Regards,
    Tanveer.
    Please mark if found helpful..

  • How to run the client program in weblogic 8.1 server

    Hi
    I am new to EJB 2.0. I am deployed sucessfully a session ejb program.
    While running an ejb client program it throws an exception. In my session ejb program i created two jar file. one is sessionejb.jar and another one is sessionejbclient.jar. In sessionejb.jar contains home ,remote ,session bean class and deployment descriptor.In sessionejbclient.jar contains home,remote and client program. Both jar files are included in class path of environment variable( i am using Standalone server).
    Plese guide me how to run an session ejb client correctly.
    Regards
    Jaiganesh

    Both jar files are
    included in class path of environment variable( i am
    using Standalone server).did u include both these jars in the "weblogic's class path" ?
    in that case, it obviously wont work.
    what u need is an understanding of the following topics (i have described them briefly, but for details u can always check the documentation of weblogic):
    1. Class loaders in weblogic: there are various levels of class loaders. at the top is the weblogic's class loader. below it are various EARs' class-loaders. and so on....
    2. Packaging. You must ensure that in the same class loader, there are not two classes from 2 different jars.
    hope that helps

  • How to access the client PCs via RDP FROM Windows Server 2003

    Hopefully this is not an ignorant question, but every thread I've read focuses on client PCs not being able to access the terminal server. I have the opposite problem. I am working remotely and have full access to the servers (some of which are virtuals).
    I need to be able to connect to the various workstations, but I cannot.  Is this just a setting I have misconfigured?  Is there any software I can deploy to these PCs that will allow me to log in and update their workstations?
    Any help is sincerely appreciated.
    - Jeff

    Hi Jeff,
    Thank you for your posting in Windows Server Forum.
    You can able to take RDP for client system from server. But keep in mind that; client system can only allow 1 RDP session at a time for administrator purpose. For that you need to have permission for taking rdp session. 
    Also you need to verify that “Remote Desktop Service” service is running and also need to verify the below thread as per snap.
    In addition, if you want to manage all the server and client system, then you can use Remote Desktop Connection Manager to manage all the client and server remotely.
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • How to get the client identity from the certificate at server side

    hi, this is ravi kiran,
    I am working on a project which requires, receiving a signed file from the client side and verify whether the file is signed by a valid certificate that is there in the servers keystore.
    How can i get the client certificate at server side and check with the certificates already present in the servers keystore.
    i have no idea how to do this
    can any one help me
    thanx in advance

    Hi Ravi, did you get any answer to your question ?
    I'm also after a similar problem, please share your solution, if you have any.

Maybe you are looking for

  • I would like to inquiry about the video tuitorial for new macbook pro user

    i"m a new user of macbook pro so i would request your support to give me the tuitorial video or any manual to acknowledge the system and how to use the macbook pro with high efficiency. <Edited by Host> Thank you very mufh. Kpleang

  • How to set up a csf file in Bridge from my printer-supplied icc?

    We are a small magazine sending PDF files to a printer out of state (printing on a heat-set web press with a newish stocatto system). We are PC using CS2. We have gotten inconsistent color from our printer using Adobe recommended color settings in CS

  • Error in the pl/sql block using associative arrays

    Hi I tried the following block of code using associative arrays. DECLARE    TYPE NumTab IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;    CURSOR c1 IS SELECT empno FROM emp;    empnos NumTab;    rows   NATURAL := 10; BEGIN    OPEN c1;    FOR i in empnos

  • Integration Directory configurations for IDOC - XI - File

    Hi all, I have a scenario as above: IDOC-XI-FILE The IDOCs come from an R/3 system - NHGDDBS01. I've configured 2 BS: 1) BS_NHGDDBS01 -> TS: NHGDDBS01, type: WebAS ABAP -> SWCV: BASIS 6.20 2) BS_DEV1_NAUTICUS_OOTS -> TS: TS_DEV1_NAUTICUS_OOTS, type:T

  • Totem/Xine Working with Xv

    It is possible to get totem working with Xv instead of Xshm for better performance.  On my pc fullscreen performance with Xshm (the arch linux default) is jerky and basically unwatchable.  Xv is a lot better, requiring 30-40% cpu instead of 100%+ on