Setting IP address by Client?

Call to getRemoteAddr() method in the body of either doGet(...) or doPost(...) methods of Servlet returns IP address of the client.
If the Client is java application, can an arbitrary IP number be set to the request sent to the Servlet?

If the Client is java application, can an arbitrary IP
number be set to the request sent to the Servlet?No. The IP address returned by getRemoteAddr() will always be the IP address of the client machine.

Similar Messages

  • Set Ip address

    Hi everyone, i´m doing a DHCP service, but i have a problem, i can´t set the new IP address that the server give to client, i have treat with different classes, but the only thing that i can do is get de Ip address, but i need to set it in the client machine.
    any idea?
    thanks

    Then you should either pick another language or pick another project. Java is totally unsuitable for this task. You'd have to either call native libraries or invoke a platform-specific executable.

  • Exception setting SOAP address to $CHANGE-WHEN-DEPLOY$:

    Am trying to call the Credit Rating Service using the 10.1.2 version of BPEL engine using the JDeveloper Designer. Have no problems calling the Credit Rating Service through the console tester but when my BPEL process called SynchBPELProcess2 calls the credit rating service I get the following error:
    Your test request generated the following exception/fault:
    com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.oracle.com/bpel/extension}bindingFault}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    parts: {{summary=exception setting SOAP address to $CHANGE-WHEN-DEPLOY$: no protocol: $CHANGE-WHEN-DEPLOY$; nested exception is:
         java.net.MalformedURLException: no protocol: $CHANGE-WHEN-DEPLOY$}}
    Is there some additional configuration that needs to be done to get around this or am I missing a step somewhere. Ran into this while going step by step with the Order booking tutorial and so decided to try with a separate project.
    BPEL File Attached below:
    <!--
    // Oracle JDeveloper BPEL Designer
    // Created: Tue Apr 12 18:57:43 GMT+05:30 2005
    // Author: 121401
    // Purpose: Synchronous BPEL Process
    -->
    <process name="SynchBPELProcess2" targetNamespace="http://xmlns.oracle.com/SynchBPELProcess2" xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20" xmlns:ns1="http://services.otn.com" xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:bpelx="http://schemas.oracle.com/bpel/extension" xmlns:client="http://xmlns.oracle.com/SynchBPELProcess2" xmlns:ora="http://schemas.oracle.com/xpath/extension" xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"><!-- ================================================================= --><!-- PARTNERLINKS --><!-- List of services participating in this BPEL process --><!-- ================================================================= -->
    <partnerLinks><!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
    <partnerLink name="client" partnerLinkType="client:SynchBPELProcess2" myRole="SynchBPELProcess2Provider"/>
    <partnerLink name="CreditRatingService" partnerLinkType="ns1:CreditRatingService" partnerRole="CreditRatingServiceProvider"/>
    </partnerLinks><!-- ================================================================= --><!-- VARIABLES --><!-- List of messages and XML documents used within this BPEL process --><!-- ================================================================= -->
    <variables><!-- Reference to the message passed as input during initiation -->
    <variable name="inputVariable" messageType="client:SynchBPELProcess2RequestMessage"/><!--
    Reference to the message that will be returned to the requester
    -->
    <variable name="outputVariable" messageType="client:SynchBPELProcess2ResponseMessage"/>
    <variable name="invokeCR_process_InputVariable" messageType="ns1:CreditRatingServiceRequestMessage"/>
    <variable name="invokeCR_process_OutputVariable" messageType="ns1:CreditRatingServiceResponseMessage"/>
    </variables><!-- ================================================================= --><!-- ORCHESTRATION LOGIC --><!-- Set of activities coordinating the flow of messages across the --><!-- services integrated within this business process --><!-- ================================================================= -->
    <sequence name="main"><!-- Receive input from requestor.
    Note: This maps to operation defined in SynchBPELProcess2.wsdl
    -->
    <receive name="receiveInput" partnerLink="client" portType="client:SynchBPELProcess2" operation="process" variable="inputVariable" createInstance="yes"/><!-- Generate reply to synchronous request -->
    <assign name="Assign_1">
    <copy>
    <from variable="inputVariable" part="payload" query="/client:SynchBPELProcess2ProcessRequest/client:input"/>
    <to variable="invokeCR_process_InputVariable" part="payload" query="/ns1:ssn"/>
    </copy>
    </assign>
    <invoke name="invokeCR" partnerLink="CreditRatingService" portType="ns1:CreditRatingService" operation="process" inputVariable="invokeCR_process_InputVariable" outputVariable="invokeCR_process_OutputVariable"/>
    <reply name="replyOutput" partnerLink="client" portType="client:SynchBPELProcess2" operation="process" variable="outputVariable"/>
    <assign name="Assign_2">
    <copy>
    <from variable="invokeCR_process_OutputVariable" part="payload" query="/ns1:rating"/>
    <to variable="outputVariable" part="payload" query="/client:SynchBPELProcess2ProcessResponse/client:result"/>
    </copy>
    </assign>
    </sequence>
    </process>
    WSDL Attached below :
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="SynchBPELProcess2"
    targetNamespace="http://xmlns.oracle.com/SynchBPELProcess2"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:client="http://xmlns.oracle.com/SynchBPELProcess2"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         TYPE DEFINITION - List of services participating in this BPEL process
         The default output of the BPEL designer uses strings as input and
         output to the BPEL Process. But you can define or import any XML
         Schema type and us them as part of the message types.
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <types>
              <schema attributeFormDefault="qualified"
                   elementFormDefault="qualified"
                   targetNamespace="http://xmlns.oracle.com/SynchBPELProcess2"
                   xmlns="http://www.w3.org/2001/XMLSchema">
                   <element name="SynchBPELProcess2ProcessRequest">
                        <complexType>
                             <sequence>
                                  <element name="input" type="string"/>
                             </sequence>
                        </complexType>
                   </element>
                   <element name="SynchBPELProcess2ProcessResponse">
                        <complexType>
                             <sequence>
                                  <element name="result" type="string"/>
                             </sequence>
                        </complexType>
                   </element>
              </schema>
         </types>
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         MESSAGE TYPE DEFINITION - Definition of the message types used as
         part of the port type defintions
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <message name="SynchBPELProcess2RequestMessage">
              <part name="payload" element="client:SynchBPELProcess2ProcessRequest"/>
         </message>
         <message name="SynchBPELProcess2ResponseMessage">
              <part name="payload" element="client:SynchBPELProcess2ProcessResponse"/>
         </message>
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         PORT TYPE DEFINITION - A port type groups a set of operations into
         a logical service unit.
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <!-- portType implemented by the SynchBPELProcess2 BPEL process -->
         <portType name="SynchBPELProcess2">
              <operation name="process">
                   <input message="client:SynchBPELProcess2RequestMessage" />
                   <output message="client:SynchBPELProcess2ResponseMessage"/>
              </operation>
         </portType>
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         PARTNER LINK TYPE DEFINITION
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <plnk:partnerLinkType name="SynchBPELProcess2">
              <plnk:role name="SynchBPELProcess2Provider">
                   <plnk:portType name="client:SynchBPELProcess2"/>
              </plnk:role>
         </plnk:partnerLinkType>
    </definitions>

    Lasts monday I downloaded a version (10.1.2 release, not preview/beta 3) which has the same filename and file size of the 10.1.2 GA release which is available right now.
    I don't think the problem is in the PM, because i can run bpelc/obant to build my processes. however when i build them with the Eclipse plugin, it won't change the location of the wsdl (keep saying $CHANGE_WHEN_DEPLOY$).

  • Using a variable in netsh command to set ip address on NIC

    hi friends
    i wrote an script which gets an input & use that variable to set ip address on NIC. but actually it doesn't set ip address. may you please help me.
    my script contains:
    $VMNumber=Read-Host "please enter your VM number (for example 2)"
    Netsh interface ipv4 set address NIC static 192.168.1.$VMNumber

    1. I do not thing that the use of netsh is a right way.
    2. You will need a table with MAC address in first column and IP address in second to correctly map IP address to computer. MAC addresses are unique identification.
    3. Follow this article including comments and adapt scripts to your task
    http://www.powershellpro.com/powershell-tutorial-introduction/powershell-wmi-methods/
    HTH
    Milos
    hi Milos
    thank a lot for your useful answer.
    but let me say that my need has nothing to do with MAC address.
    in my test lab, i need an script which asks the administrators to enter their VM number & it saves this input as a variable & set is as the last octet in their VM IPV4 Address.
    so can we tell it as a rule that variables we create in powershell, can't be used inside non cmdlets (inside legacy cmd commands) ?

  • I have an Apple ID with a single  e mail address. I want to set multiple addresses in the same ID. Can I? If so how?

    I have an Apple ID with a single  e mail address. I want to set multiple addresses in the same ID. Can I? If so how?

    Howdy there johnzcarp,
    As I understand it you want to have more than 1 email address under your Apple ID. You can have what are called Alternate Email addresses associated with your Apple ID and this article will help you get those setup:
    Manage your Apple ID primary, rescue, alternate, and notification email addresses
    Alternate email address
    You can add one or more alternate email addresses for use with Apple services such as Game Center, FaceTime, Find My Friends, iMessage, and OS X notifications.
    Go to My Apple ID (appleid.apple.com).
    Select “Manage your Apple ID” and sign in.
    Add an alternate address:
    Select Add Email Address, then enter your alternate address. Apple will send a verification email to that address. Didn't receive the email?
    Follow the instructions in the email to verify the address.
    Edit an alternate address:
    Select Edit next to the address, then enter the new address. Apple will send a verification email to that address. Didn't receive the email?
    Follow the instructions in the email to verify the address.
    Delete an alternate address: Select Delete next to the address.
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • "command disabled" when setting IP address on AIR-LAP1252G-A-K9

    Hi, I am trying to set ip address on cisco ap AIR-LAP1252G-A-K9 using the "lwapp" command but get message "command is disabled"
    I am connecting via console cable to ap. I have already reset ap to defaults.
    Not sure why I'm getting this error "command disabled" Any help would be much appreciated. Thanks

    This is a hidden command so don't try using a ?  Since your ap is a 1252, like Rasika mentioned, use lawapp instead of capwap.... you need to erase the nvram.
    The other way is this method:
    Hold reset for over 30 seconds to get to ROMMON
    ap:delete flash:private-config
    ap:delete flash:private-multiple-fs
    ap:boot
    Your AP will be factory default
    Thanks,
    Scott
    Help out other by using the rating system and marking answered questions as "Answered"

  • Unable to set ip address via enableStatic method on wmiobject

    hi friends
    i am creating a powershell script which performs many customization which one of them is setting ip address on my only network adapter which its default name is Ethernet in windows server 2012.
    (note: i do know there are new cmdlet to do this easily in PS 4.0, but i need to perform that via wim methods so that i be able to run that script on my win 2008 server as well), so i need something to work in both PS 2.0 & 4.0
    its about 3 hours i am struggling with codes but encounter different errors.
    because in get-wmiobject win32_networkAadapterconfiguration command, we don't have "NetConnectionID" which refers to displayname of the network adaptor, we cannot refer to that network adaptor directly in win32_networkAadapterconfiguration
    command.
    so after verifying , i found that index property exist in both win32_networkAadapter & win32_networkAadapterconfiguration commands via which i can reach what ia want
    i have to first create a $NIC variable using win32_networkAadapter & then use it in 2nd command on the basis of index, but i end up with the following error.
    where i am wrong in the code? any help please
    thanks in advanced

    hi friends
    i am creating a powershell script which performs many customization which one of them is setting ip address on my only network adapter which its default name is Ethernet in windows server 2012.
    (note: i do know there are new cmdlet to do this easily in PS 4.0, but i need to perform that via wim methods so that i be able to run that script on my win 2008 server as well), so i need something to work in both PS 2.0 & 4.0
    its about 3 hours i am struggling with codes but encounter different errors.
    because in get-wmiobject win32_networkAadapterconfiguration command, we don't have "NetConnectionID" which refers to displayname of the network adaptor, we cannot refer to that network adaptor directly in win32_networkAadapterconfiguration
    command.
    so after verifying , i found that index property exist in both win32_networkAadapter & win32_networkAadapterconfiguration commands via which i can reach what ia want
    i have to first create a $NIC variable using win32_networkAadapter & then use it in 2nd command on the basis of index, but i end up with the following error.
    img here
    where i am wrong in the code? any help please
    thanks in advanced
    >> where i am wrong in the code?
    Right at the beginning, where you assign the Format-Table's output to a variable.
    Cmdlets with the verb Format are intended to output data to the display only - there are few exceptions, but Format-Table is no exception.
    To understand what I'm telling you, run these commands after those in your question:
    $nic_index.gettype()
    and
    $nic_index[0].gettype()
    and see that this variable is not what you expect it to be.
    hi thanks, so what is the solution?

  • "Set IP Address.vi" crashes with Error 56 (timeout)

    I use a CompactRIO-9014 controller with LabVIEW 8.5 on a Windows Vista laptop. The cRIO communicates with the laptop over a crossover cable. I am trying to do system replication using the "Set IP Address.vi" to assign an IP address to my cRIO. The MAC address supplied to the VI is gathered correctly from the "Find All Targets.vi". The hostname used for the cRIO is the name assigned to it in Measurement and Automation Explorer. I downloaded the "Set IP Address.vi" from the LabVIEW Real-Time Module --System Replication Tools(Version 8.x), dated 08/17/2006. The same problem was located on www.ni.com > Search > Set IP Address.vi problems. There, a responder stated that the user should seek the most recent version of the System Replication Tools, and the problem should be therefore corrected. However, my 08/17/2006 version still has this error, and I cannot find a more recent version on www.ni.com.
    A sample program that exercises this VI is attached as Replicate 04.vi.
    Is there a user out there who has encountered this problem and found a solution?
    Thanks,
    Ben
    Attachments:
    Replicate 04.vi ‏25 KB

    Have you tried:
    ftp://ftp.ni.com/support/labview/labview_rt/SystemReplication/RTSystemReplication8x.zip
    it seens to be from 2008.

  • How to set endpoint address using UTL_DBWS

    Hi,
    I have been struggling to invoke a web service in the Oracle 10g database using UTL_DBWS. Now I reached a point where I need to set an endpoint address using UTL_DBWS to complete the invoking process, I try to use UTL_DBWS.Set_Target_Endpoint_Address to do this, but SQL*Plus is returning an error saying Set_Target_Endpoint_Address must be declared.
    Am I calling the wrong function? If so which function should I call to set endpoint address in UTL_DBWS? I have all the necessary jar files installed and the right grants to access this package.
    any hint would be appreciated.
    Thanks.

    Did you try using 'UTL_SMTP.WRITE_DATA'?
    Like:
    DECLARE
    con UTL_SMTP.CONNECTION;
    BEGIN
    con := UTL_SMTP.OPEN_CONNECTION('alpha.beta.com');
    UTL_SMTP.HELO(con, 'gamma.com');
    UTL_SMTP.MAIL(con, '[email protected]');
    UTL_SMTP.RCPT(con, '[email protected]');
    UTL_SMTP.OPEN_DATA(con);
    UTL_SMTP.WRITE_DATA(con,'Importance: HIGH'||UTL_TCP.CRLF);
    END;I have not tested the code. I am not sure if it is going to work in your case.

  • Setting up IC Web Client in CRM 5.0 SP06

    Hi Experts:
    I am trying to set up IC Web Client on our CRM server. The CRM consultants have already set this up in SE80. However, after calling the transaction CRM_IC, i enter the user name and password, but 60 seconds after that I get the time out error with the following message:
    Detail: Connection to partner timed out after 60s
    I beleive that this is happening because the following parameter hasn't been set up in the instance profile:
    icm/server_port_0 = PROT=HTTP, PORT 1080, TIMEOUT=30, PROCTIMEOUT=600
    However, I am not sure on the Port number, should it be 1080 or 80<Sys No.>
    Please let me know what I should do here
    Thanks
    Imran

    Arright:
    I had to add one parameter for the instance profile and modify another in the instance profile.  Please see OSS note 824554
    ADDED: Parameter Name: icm/host_name_full
    MODIFIED: icm/server_port_0 (SEE OSS Note for details)
    icm/server_port_0 = PROT=HTTP, PORT 1080, TIMEOUT=30, PROCTIMEOUT=600
    WE also noticed that the initial load of each item took a lot of time.  ~20 minutes.
    Please be advised that this is development environment.
    Once the initial objects were loaded..it works good.
    IK

  • Can I use RunState.ProcessModelClient.Data.Seq[0].Locals.MyVariable in batch model to set variables in a client sequence?

    I have used RunState.ProcessModelClient.Data.Seq["MainSequence"].Locals.MyVariable to set Locals variables in client sequences running in a sequential model but it doesn't seem to work with the batch model. Using a breakpoint I found that RunState.ProcessModelClient.Data.Seq is a container listing all of the sequences in the client sequence with the Main Sequence being index 0.
    I tried using RunState.ProcessModelClient.Data.Seq[0].Locals.MyVariable to set the variables in my client sequence and it worked fine.
    My question: is this method reliable or am I doing something that might cause problems down the road?
    Thanks,
    Steve

    A few issues from doing it this way-
    1- You should try an make your process model such that it can handle almost any sequence file thrown at it.  MainSequence may not a) contain that local variable and b) be at array element 0.  Unless you do some serious error checking then using your process model elsewhere will be a problem because it will throw errors.
    2- It all depends on where you are changing that variable at.  Remember with the Batch Model that you are dealing with multiple copies of your client sequence.  If you change a Locals in the process model which threads does it actually affect?
    3- Locals is to be used for the sole purpose of the sequence it resides in.  Just like in text based programming where you have a function call:
    MyFunc(int x, int y){
    string foo;
    foo is local and really shouldn't be changed outside of MyFunc.  x and y are parameters and should be how data is shared among different sequences in TestStand.  There are variables for bigger scopes as well (i.e. StationGlobals, FileGlobals). 
    I recommend using either a StationGlobal or passing the data as a parameter. 
    In the end you are the engineer and the flexibility that TestStand gives you makes it so you can do things however you want. 
    My 2 Cents,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • Send bulk mails to a set of addresses

    Hi,
    I need to start my coding with the independent tool notification engine. So I need to do a bit R & D into writing an application which sends bulk mails to a set of addresses (could be in thousands).So how to send mails to addresses so that the system does not hog, nor should it long time to send such mails.
    Any one got the solution, please help me.
    Thanks
    Ramya

    Hi,
    As Martin mentioned, you can use transport rule to achieve your requirement ,
    The following screenshot for you reference:
    Thanks.
    Niko Cheng
    TechNet Community Support

  • Can I set the address format for individual contacts?

    I have some foreign friends and would like to set the address format for their individual cards correctly. I can't seem to find a way to do this. I will be taken aback if this can't be done - I think the old Claris contact product did that.
    Anyone with any answer?
    Bryan

    Hi Bryan,
    When in edit mode, can you right click on the address field and change the country format there? I'm not on a Mac at the moment to double check, but that's what you do in OS 10.4 so I'd be surprised if it were changed in 10.5.
    Edit: Here's picture to demonstrate what I'm referring to:
    !http://www.ampersandbox.com/imprint/change-address-format.jpg!

  • WLST setting the address of a machine

    Can anyone explain the following to me:
    cd("/") # Go to domain root mbean
    machine=create("unix","UnixMachine")
    cmo=machine
    cmo.setAddress("1.1.1.1") # FAILS???!!?? WHY?
    cmo.setName("Success") # SUCCESS
    cmo.setNotes("It doesn't make much sense") # SUCCESS
    cmo.setPostBindGID("Success") # SUCCESS
    cmo.setPostBindEnabled(1) # SUCCESS
    cmo.setPostBindUID("Success") # SUCCESS
    cmo.setPostBindUIDEnabled(1) # SUCCESS
    Why does setAddress fail? Is this a bug/oversight or is it something i'm doing wrong? I would have thought you would be able to set any of the MBean attributes like this. is there anyway to set the address using cmo like the above?
    I can do this though:
    cd("/Machines/unix")
    set("Address","1.1.1.1")
    but i'd prefer not to.
    Edited by jstbriggs at 03/08/2007 1:51 AM

    Jacob Briggs <> wrote:
    Can anyone explain the following to me:
    cd("/") # Go to domain root mbean
    machine=create("unix","UnixMachine")
    cmo=machine
    cmo.setAddress("1.1.1.1") # FAILS???!!?? WHY?
    cmo.setName("Success") # SUCCESS
    cmo.setNotes("It doesn't make much sense") # SUCCESS
    cmo.setPostBindGID("Success") # SUCCESS
    cmo.setPostBindEnabled(1) # SUCCESS
    cmo.setPostBindUID("Success") # SUCCESS
    cmo.setPostBindUIDEnabled(1) # SUCCESS
    Why does setAddress fail? Is this a bug/oversight or is it something i'm
    doing wrong? I would have thought you would be able to set any of the
    MBean attributes like this. is there anyway to set the address using cmo
    like the above?
    I can do this though:
    cd("/Machines/unix")
    set("Address","1.1.1.1")
    but i'd prefer not to.I'm doing it with:
    set("ListenAddress","1.1.1.1")
    Why don't you prefer that if I may ask?
    B
    Schelstraete Bart
    [email protected]
    http://www.schelstraete.org

  • Can i install 10.2.0.4 patch set 14 on my client when SERVER is at 10.2.0.4

    ======================================================
    Can i install 10.2.0.4 patch set 14 on my client when SERVER is at 10.2.0.4 patchset 5?
    ======================================================
    We have a customer with DB on windows-2003 64 bit with following homes.
    At Server version:-
    DB version is 10.2.0.4 patchset 5,
    client1 is at 10.2.0.1.(patchset i am not sure)
    Client2 is at 10.2.0.4 patchset 5.
    Customer running some sqls which are taking more time from CLIENT2(10.2.0.4 patchset5) than CLIENT1(10.2.0.1). offcourse both CLIENTS connecting
    same DB. we identified a bug(6350579). This bug was resolved in 10.2.0.4 patch 14(7677781).
    Now my question is Can i apply this patch only at client side with out applying at DB level?
    I mean i will create one more new client called CLINET3 (with 10.2.0.4 and i will install 10.2.0.4 patchset14) and then run the SQLs from new client CLIENT3. is this supported method or not?
    Reason being customer does not want to install 10.2.0.4 patchset14 at DB since Customer is happy with DB performance.
    We are getting problem only when we connect to DB from cleint 10.2.0.4 patchset5. if we connect to DB from Client 10.2.0.1, SQL performance is very good.
    Please advise me on this.
    Regards
    Nagendra.

    You can upgrade your client with the latest patchset/bug fix (if you have tested it on some other machine and found that your issue has been resolved) but be prepared to handle any unusual errors that might arise due to this combination.
    Personally, I never prefer having a client running at a higher version than the server but there are some situations where we need to and we need to make sure that, even though Oracle must have tested certain scenarios, we do not run into errors. So test, test and test before changing anything in production.
    Edited by: Satish Kandi on Feb 9, 2009 6:26 PM
    Revised a bit.

Maybe you are looking for

  • Error during upgarding sneak preview  SP16 to SP18

    I have installed sneak preview SP16 which I am trying to upgrade to SP18. I get an error duing the step Deploy via J2EE/SDM. The SDM,server0 and dispatcher are all green in the MMC and the SDM is working in "integrated mode". The callSdmViaSapinst.lo

  • Need to/How to DEACTIVATE Win 7 from Bootcamp of previous Mac?

    Hello all, Planning to get a new MacBook air and planning to install previously owned Windows 7 on this new Mac. The Windows 7 is installed on my current (old) MBA which I plan to trade-in. Question: Do I need to "de-activare" Windows 7? How? Thanks

  • How can I get users who accessed the database during last one month

    Hi All, How can get the list of users who logged on to the database DBProd and made changes to the tables of particular schema during say last month and current month. Thanks & Regards.

  • Join Between W_PERSON_F and W_POSITION_D

    Hi, I want to join W_PERSON_F fact table and W_POSITION_D dimension table. Database: Siebel DB. Is there any direct join or we want to join through some other table? Thanks, Satheesh

  • Cannot discovery sun 7410 with opscenter 12,

    opscenter 12 cannot discovery sun 7410... (version 2010.08.17.4.2,1-1.37) under version 11v3 this asset was discovered and managed right away. find assets butt does discovery the asset, but trying to manage it yields the following output. any ideas?