Can fat-client  directly access Oracle DB through firewall?

My java application(thin driver) can not access Oracle9i DB behind a firewall, even if the firewall open the port 1521 of the DB server.
The application is C/S architecture.
How can I config the DBserver or firewall to resovle the problem?
Or, it can not work in C/S mode?

See Re: Remote connectivity behind a firewall

Similar Messages

  • C# Code that can add user directly to the AD through custom share Point form

    Hi
    Here is my requirement. Can anyone resolve??? 
    Trying to build a Visual web Part in which system administrator can add user directly to the AD through custom share Point form.
    Please help in doing this...

    Hi
    Use DirectoryEntries.Add Method
    https://msdn.microsoft.com/en-us/library/system.directoryservices.directoryentries.add.aspx
    Or
    www.codeproject.com/Articles/18102/Howto-Almost-Everything-In-Active-Directory-via-C
    Or.
    www.morgantechspace.com/2013/10/create-new-active-directory-user-in-c.html?m=1
    Regards, Rajendra Singh If a post answers your question, please click Mark As Answer on that ost and Vote as Helpful http://sharepointundefind.wordpress.com/

  • Error while accessing Oracle DB through IS

    Hi All,
    I am facing an issue while accessing any of the database in Oracle. It has successfully created the connection in IS but it throws SQL Syntax error when I try to access that. Can anybody help me who have faced the similar issue? Appreciate the help. I am using Oracle 11g.
    Thanks,
    MS Ansari

    Hi Ansari,
    Have you tried to access the same database through Data Services in IS Server? If not, try to create DataStore to connect the database and create a test ETL job to read data from the table.
    If you already have Profiler configuration setup, try to do profiling a table (from this database) in DS, let see how it works. If you not find any issue here, then there will be problem in IS side.
    Thanks,
    Ramakrishna Kamurthy

  • Can iPads and Smartphones Access Remote Desktop Through "Access Anywhere" RDWeb?

    Is Remote Desktop Gateway required to log into a Windows 7 workstation remotely or can you connect from a mobile device using only the "Acess Anywhere" features built into Essentials Sever 2012 R2 using the Microsoft Remote Desktop App in downloaded
    from the app store?

    Hi,
    Thank you for posting in Windows Server Forum.
    Yeah we can access RD Web by using MRD for MAC, IOS and Android. Just we need to install the application on respective device and can access by Remote Resource. Please follow TechNet article where you can find the details.
    Microsoft Remote Desktop Clients
    http://technet.microsoft.com/en-us/library/dn473009.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • Can my client have access to Business Catalyst tools?

    Hi,
    I am going to build a web site for my brother's business and host it on Business Catalyst.  I would like to set this up so my brother has access to the Business Catalyst tools and pays for the account.  All I want to do is maintain the web site itself.  Can things be set up this way?  Thanks.
    Barbara Parkman

    Hi Barbara,
    Each site plan has starts with a number of 3 site admin accounts, which can be upgraded. To this extent:
    - If you have/are going to set-up your own partner portal account, when going live with your brother's site you will be able to choose to have him billed directly.
      You will always be able to access the site, without affecting the number of admin accounts available for the respective site plan.
    - If you set him up with his own free partner portal account he can choose whatever billing method preffered (billing the site owner or the partner portal user will mean your brother either way)
      You wll need one of the 3 admin accounts setup for accessing/developing the site. Having removed that account you'll than have lost all control over the site.
    Kind Regards,
    Alex

  • Do I need additional Driver/Clients when accessing Oracle from CSharp ?

    I am trying to connect from within a CSharp program to Oracle database 10g Express.
    I coded in CSharp:
    using System.Data.OracleClient;
    but this line gives an unresolve error: Type or namespace missing ...?
    As far as I thought VisualStudio 2005 provides a standard client for Oracle database.
    How do I enable it ?
    Or do I need some additional files from Oracle to get it working ?

    You may find useful these links from the Oracle technology corner >
    http://www.oracle.com/technology/sample_code/tech/windows/ole_db/oledb92/index.html
    http://www.oracle.com/technology/sample_code/tech/windows/ole_db/oledb8/index.html
    Regards.

  • Can I get direct access to scanlines or rectangles of pixels when creating a video filter?

    Maybe I overlooked something, but all the examples in the AE 7 and AE CS3 SDKs that modify the video content, seem to do so through some per-pixel-callback function.
    For several applications I have in mind this would be rather slow. Can't I setup a filter to process whole scanlines of pixels or pixel blocks at once? (of course within the region of interest)
    More specifically, take the Gamma example. Here's where the actual magic happens:
    static PF_Err
    GammaFunc (
    A_long refcon,
    A_long x,
    A_long y,
    PF_Pixel *inP,
    PF_Pixel *outP)
    PF_Err err = PF_Err_NONE;
    GammaInfo *giP = (GammaInfo*)refcon;
    if (giP){
    outP->alpha = inP->alpha;
    outP->red = giP->lut[ inP->red ];
    outP->green = giP->lut[ inP->green ];
    outP->blue = giP->lut[ inP->blue ];
    } else {
    err = PF_Err_BAD_CALLBACK_PARAM;
    return err;
    This is done for each individual pixel.
    I would rather have something where I don't receive pointers to single input and output pixels, but pointers to input and output BUFFERS (and corresponding width, height and stride or pitch) so I can process multiple pixels in one for loop.
    Is that possible?

    When your entry gets called with cmd == PF_Cmd_RENDER, like here:
    PF_Err EntryPointFunc
      PF_Cmd   cmd,
      PF_InData  *in_data,
      PF_OutData  *out_data,
      PF_ParamDef  *params[],
      PF_LayerDef  *output
    Then params[0] is the "input" layer (it's a built-in param, of type Layer), and output is the "output" layer. Layers include all the pixel data. You can look at the pixel data in memory; here's a macro I use to find a particular pixel location.
    #define PIXELPTR(_wld,_x,_y) ((PF_Pixel *)((int)_wld->data + (_y) * _wld->rowbytes) + (_x))
    Where _wld is a PF_LayerDef. That macro is for the 8-bit case, by the way.

  • Tunneling vs. Web Service to access EJB's through firewall

    I need to be able to access EJB's from a client application when the server is
    behind a firewall. Seems like I have two options:
    1) Use WebLogic's built-in http-tunneling support.
    2) Use WebLogic to generate a web service for each bean and then modify the client
    application to use the generated SOAP stubs instead of having direct EJB references.
    Now I know either option will result in slower performance as compared to direct
    EJB references, but I'm not sure which is worse. Has BEA done any comparison
    of the two approaches to know which one is expected to perform better than the
    other? Any guidence someone can provide is greatly appreciated.
    thanks,
    Dan

    Rob Woollen <[email protected]> wrote:
    It depends :>
    If performance is your primary concern that it would be best to
    benchmark both. I suspect the performance difference will greatly
    depend on what types you are marshalling.Yep, I was curious about the same thing and tried some benchmarking - depending
    on what was marshalled, or course, SOAP performance hit vs binary protocol was
    not as bad as i expected it to be.
    However, a web service client would offer some nice advantages. Your
    client application would be a lot more flexible.But there will be some functionality loss over RMI.
    -- Rob
    Dan Branley wrote:
    I need to be able to access EJB's from a client application when the server is
    behind a firewall. Seems like I have two options:
    1) Use WebLogic's built-in http-tunneling support.
    2) Use WebLogic to generate a web service for each bean and then modify the client
    application to use the generated SOAP stubs instead of having direct EJB references.
    Now I know either option will result in slower performance as compared to direct
    EJB references, but I'm not sure which is worse. Has BEA done any comparison
    of the two approaches to know which one is expected to perform better than the
    other? Any guidence someone can provide is greatly appreciated.
    thanks,
    Dan
    Dimitri

  • Problems accessing Grid Console through firewall

    I am trying to set up my Grid console to be accessible pubically. My Network admin add a entry to the CSS for a public IP and site oms.domain.com which points to http://host:7777/em. I have been unable to get this to work though. I can get to the console localy on 7777 and 4889 but not using this public address.
    I tried to add a proxy server to the OMS for the oms.doamin.com on prot 80 but this does not seem to have any affect.
    Anybody have any luck configuring the console like this?
    Thanks,
    Brian

    Reinstall the OMS just so I can access it through a firewall? The oms.domain.com address is registered in the CSS and points to my hostname:7777/em why would I need to reinstall? I figured there was just a config file within Apache that I would need to update to tell Apache to allow connections from the public address. Seems overkill to reinstall everything. This OMS is monitoring a couple hundred targets at this point. Reconfiguring all that would be slightly painfull.
    Any other suggestions?

  • Can lync client use internet proxy settings to proxy edge servers, if direct access is not reachable?

    Hi everybody I am trying to Login with my lync Client out of my organization. So I am using lync as a remote user. I am in another organization, and I am using their coporate lan wired and wireless, but I cannot Login to lync in my organization.
    I see that I cannot Access my edge Server on port 443 to authenticate directly, I know that Client in this organization use Internet Proxy to browse the Internet. they have a .pac in their ie Settings.
    my question is; can lync Client use Internet Proxy Settings to reach the Destination? I mean the Access edge on port 443?
    or it can use only Client direct Access to reach the edge Servers?
    I Think that the answer is that I use tcp protocol and not http, and maybe that is the reason why I cannot use the Internet Explorer Proxy Settings to reach the Access edge Servers, different maybe is the case I Need to reach the reverse Proxy for live Meetings.
    Hope my question is clear.
    Thanks

    Proxy settings are used to tell Internet Explorer the network address of an intermediary server (known as a proxy server) that is used between the browser and the Internet on some networks.
    Lync client doesn’t use Internet Proxy Setting. You need to access the Edge service directly.
    Lisa Zheng
    TechNet Community Support

  • Can midlet directly access a database?

    I'm creating a midlet that connects to a database. Do i need to go through a server and then access the database or can i directly access the database through the midlet?
    Does anyone have a sample code that have a midlet interacts directly with a database? Or is it impposible to do so without going through a web server.
    Blaise,

    Your message arrived at the rigth address :)
    I am experienced in J2ME programming and made several projects with it including my graduation thesis . (you can check http://2m.turkmenweb.com for my J2ME projects).
    You can directly acces from MIDlet DB, but it is not so reccomended, since mobile devices have certain limitations. When we had to use DB in our J2ME projects(with MIDP1.0 and MIDP2.0) we achieved it by collaboration of JSP with our MIDlet.. That is MIDlet was only sending a URL to Tomcat Server (JSP server) i.e. http://someurl.com/show?task=topusers, and this URL was parsed by a Servlet which was making all needed conenctions to DB.
    I also know that there are K editions (very small) of DBMS built especially for mobile devices. You can use them also .. I guess Oracle has such a thing..
    Good luck!
    Muhammed Mamedov
    [email protected]

  • How to Access oracle DB table through SAP..problem in code

    Hello Guys
             I have to Access oracle table through SAP and need to create a report.
    From Some source I got the following code .  But it's not working , I am not able to update the table as well not able to access the data from table.
    Can some one provide me the necessary help.
    REPORT  ZORACLE.
    INCLUDE ole2incl.
    DATA: con TYPE ole2_object,
    rec TYPE ole2_object.
    DATA SQL(1023).
    DATA: BEGIN OF SPL OCCURS 0,
    VAL(1023),
    END OF SPL.
    DATA: BEGIN OF I1 OCCURS 0,
    F1(10) ,
    F2 TYPE I,
    END OF I1.
    IF con-header IS INITIAL OR con-handle = -1.
    CREATE OBJECT con 'ADODB.Connection'.
    IF NOT sy-subrc = 0.
    EXIT.
    ENDIF.
    CREATE OBJECT REC 'ADODB.Recordset'.
    IF NOT sy-subrc = 0.
    EXIT.
    ENDIF.
    ENDIF.
    MDB connetion infomations ....
    break-point.
    CONCATENATE 'Provider=' '''OraOLEDB.Oracle''' ';'
    INTO SQL.
    CONCATENATE SQL 'Password=' '''prodx''' ';'
    INTO SQL.
    CONCATENATE SQL 'User ID=' '''prod''' ';'
    INTO SQL.
    CONCATENATE SQL 'Data Source=' '''sterlite''' ';'
    INTO SQL.
    CONCATENATE SQL 'Mode=' '''Share Deny None'''
    INTO SQL.
    MDB connection ...
    CALL METHOD OF CON 'Open'
    EXPORTING #1 = SQL.
    Query (insert) statement ...
    SQL = 'insert into ofusers values('.
    CONCATENATE SQL '''Atul''' ',' '''121''' ')' INTO SQL.
    Query run ...
    CALL METHOD OF REC 'Open'
    EXPORTING #1 = SQL
    #2 = CON
    #3 = '1'.
    Query (select) statement ...
    SQL = 'select * from ofusers'.
    Query run ...
    CALL METHOD OF REC 'Open'
    EXPORTING #1 = SQL
    #2 = CON
    #3 = '1'.
    Selecting MDB record into SAP internal table ...
    DO.
        CALL METHOD OF REC 'getstring' = SQL
        EXPORTING #1 = '2' "Do not modify!
        #2 = 1 "Do not modify!
        #3 = '|' "Do not modify!
        #4 = '|'. "Do not modify!
        IF sy-SUBRC EQ 0.
            REFRESH SPL. CLEAR SPL.
            SPLIT SQL AT '|' INTO TABLE SPL.
            LOOP AT SPL.
              CASE SY-TABIX.
                WHEN 1.
                  I1-F1 = SPL-VAL.
                WHEN OTHERS.
                  I1-F2 = SPL-VAL.
              ENDCASE.
            ENDLOOP.
              APPEND I1. CLEAR I1.
            ELSE.
              EXIT.
        ENDIF.
    ENDDO.
    Result writing ...
    LOOP AT I1.
      WRITE: AT /1(10) I1-F1,
      AT (10) I1-F2.
    ENDLOOP.
    connetion close & destroy
    FREE OBJECT con.
    FREE OBJECT rec.
    Thanks in Advance
    Swati Namdeo

    Hi swati,
    1. for this u will also require help of basis team.
    2. these are the steps.
    a) make an entry in DBCON
    b) make connection string
    (on the physical application server,
    so that it can connect to secondary database)
    (this will be done by basis team,
    in which, they will specify the
    IP address of the secondary database server,
    the DATABASE ID, and the port number)
    c) then using open sql / native sql,
    we can use the secondary database connection,
    just like normal.
    d) if we use open sql,
    then there must be Y/Z table on
    sap as well as secondary database,
    and the field names , their type all should be identical.
    regards,
    amit m.

  • How to start to use Oracle client to access Database ?

    Folks,
    Hello. I have just installed Oracle Client into directory /home/myOracle/Oracle_Client. But I don't know how to start and configure the client to access Oracle Database.
    Can any folk tell me how to start to use Oracle client to access Database ?

    user13764998 wrote:
    I have earlier managed to install the Oracle Client (32-bit) in 32-bit clients and servers Oracle Client 10.
    The reason that it went well before was the exellent setup and configurationprograms we got with that version.It seems you are confusing the "full" Datbase Client with Instant Client.
    Now I'm trying to install the Oracle Instant Client 11g R2 both 32-bit and 64 (of the latest revision) on a 64-bit Windows 2008 Server .
    I have managed to install the driver but the setup doesn't give me any Net Configuration Assistant or Net Manager to help with the configuration.What setup? Are you not using just the zip files?
    What are you installing exactly, i.e. what install media (file) did you download?
    So I haven't succeded in configuring it despite I I read the readme-info that comes with the Instant Client files.There's not much to configure - that's sort of the point of Instant Client. Just drop a few files in a folder, set PATH and off you go.
    Doesn't <instant client dir>\sqlplus user@'hostname/servicename' work?

  • Cannot view history of direct access users connecting to Forefront UAG

    Hi, I'm trying to get a list of the users that have been connecting through UAG Direct Access for the past month. I've tried using the methods shown in the technet articles about monitoring of UAG Direct Access either using Powershell or the TMG event loggin
    console, using this links:
    http://technet.microsoft.com/en-us/library/gg313776.aspx
    http://technet.microsoft.com/en-us/library/gg313783.aspx
    Using the TMG event logging I see a lot of data from a few days back, even if the filter is set to 30 days, and the log is supposed to be up to 8GB in size before overwriting. The info that it shows is only about sessions to the portal trunk and not direct
    access. I know this because on the UAGModuleID column there is no there are no "connected" or "managed" sessions, all are SessionMgr, UserMgr, Filter and RDG mainly.
    Through powershell I tried running the following commands after importing the module according to the article:
    Get-Directaccessusers -showhistory $true and no results are shown.
    Get-Directaccessusers -showhistory $true -starttime "1/6/2015 8:00AM" and no results shown
    Get-Directaccessusers -showhistory $true -starttime "1/6/2015" no results
    Get-Directaccessusers -showhistory $true -starttime "1/2/2015 8:00AM" -Endtime "1/11/2015 8:00PM" no results
    Get-Directaccessusers -showhistory $true -username user = no results.
    Get-Directaccessusers -username user = no results
    the only command that shows any data is just Get-Directaccessusers but that shows the current Direct Access users, no history.
    I checked the Registry HKEY_LOCAL_MACHINE\SOFTWARE\WhaleCom\e-Gap\von\MonitorMgr\sql-builtin-log registry key and it is on 1.
    Any ideas on how can I get more history data on the direct access users connecting through UAG?
    Please let me know.
    Appreciated it.
    Thank you!
    Eduardo Rojas

    Russel,
    the problem has been solved now! The final thing missing was just a check in a  checkbox.
    Below a comprehensive explanation that may help others.
    We basically did what you proposed:
    We sent a ping from one of the DA-Clients to the TS-Farm members. Since we got replies, we knew that IPv6 communication generally is okay. The answer received was an IPv6. In this scenario we had not yet given any IPv6 to the farm-members! Thus we knew it must
    be comming from the DA DNS-Proxy. There are a number of DA-GPOs and one of them is dictating the net portion of the IPv6 to be used in DA-communication, appended by a hex-translation of the target computers IPv4. Therefore the DA DNS-Proxy is taking the GPO-set
    IPv6-value, adds the IPv4 in hex and sends it  back as an ICMP echo.
    With this in place and working correctly one can ping any domain host from any DA-Client. This is configured when initially setting up DA and is handled by the wizzard. Once DA is installed this should all be in place without extra user interaction.
    We then took those IPv6 answeres and turned them into fixed IPv6es of the farm-members (each member its own IPv6). So far so good, but this is where it still did not work. Evaluation of the Connection Broker log showed that the redirect reply still included
    only the IPv4 of the target farm-member. With that (after a short while) we realized that one has to set a
    check in the Connection Brokers Settings, so that the IPv6 LAN-Connection will be used for redirects as well and not only the IPv4 LAN-connection..... How stupid is that? :-)
    But as we all know - in dealing with server configuration - you should always "know before you go". But even though you may think you do, when finally arriving you know you didn't.... And that's what we call experinece.
    Thanks to Russel for your interest and help.
    Brgds Ralf

  • Logical link / Work center for directly accessing "Business Activities"

    Hi All,
    We are upgrading from CRM 5.0 to CRM 2007. One unique challenge that I have encountered is the access to search, change or create - BUSINESS ACTIVITIES (Leading Transaction category: BUS2000126) in the CRM Web UI. We would like to directly access Business activities through a work center -> Logical link or a Logical link, in the SALESPRO business role.
    This is available in the IC_AGENT business role. But you need to create a preceding Interaction record and then create a followup activity -> Business activity. We do not want to do this. We want to be able to access the business activites directly. For example, Leads and Opportunities can be accessed directly through the work Center: "Sales Cycle".
    Does anyone know if there is a work center that I can use in SALESPRO business role that will give me direct access to Business Activities . I can use the transaction launcher to access the HTML version of the winclient transaction (T Code: (CRMD_BUS2000126) but I do not want to use the transaction launcher. Any ideas?

    Well I am pretty Serious?!!!
    The standard SAP delivered "ACTIVITIES" WORK CENTER has the following Logical links for CREATE:
    Activity
    Activity Scheduling
    Activity Template
    Appointment
    E-Mail
    Interaction Log
    Task
    Visit Plan
    And when you use the Activity create - you ONLY have the option to create:
    Interaction log - Channel report
    Interaction log - Partner report
    Task - Approve
    Task - Recurring Task
    I would expect to see more than this. There are other BUS2000126 Business Activity transaction types which are enable to be maintained online in SPRO. But they do not show up here. I can use the Search - Activity logical link and then use Activity Type to find the other Transaction types. But not in Create. I can control the transaction types that can be displayed for Leads and Opportunities. It doesn't seem to work for Activities!!!!
    Is this part of standard CRM 2007 SALESPRO delivered role functionality??? I have SAP_ALL and SAP_NEW and have access to the other Business activities in my security role. My Ophthamologist did confirm that my eyes are doing fine so far. So this has something to do with the way this 'Work Center' has been designed. Apart physiological/anatomical impediments what am I missing???
    Thanks,
    Ramesh

Maybe you are looking for

  • "Unable to load network list" on new sim card overseas on unlocked iphone 4

    I recently bought an Iphone4 (unlocked) from australia. While traveling overseas I inserted a new sim and got the message "unable to load network list", and could not activate my new sim card. Could not find the answer on the discussion board here bu

  • Receiver adapter problem urgent

    Hi all, I am doing file to file scenior  . at receiver side adapter , the cc showing status " Message processing started" with message id from past 2 hours . in audit log last status is : "The message was successfully retrieved from the receive queue

  • My old posted messages are not shown

    Hi I posted some queries on sep4th and 5th but those are not shown now on 6th sep. prasanth a.s.

  • Changing in memory zfs arc c,p,c_max

    Im running u5 (5/8) and would like to use mdb -kw to change the c p c_max on the arc. I can read the values "::arc -a", and can read the ::zfs_params and update "zfs_arc_max/D" "zfs_arc_max/Z 0x100000000" but this is not reflected in "::arc -a" and w

  • Modifying the MSP Integration

    We are on Financials 9.0 bundle 9, Tools 8.49.06. It was our intent to use the Integration Architecture for Microsoft Projects 2002 to import Resource Schedules. But, the delivered integration does not support the budgeting feature that we require. T