Problem in getting Actual ip of client

Hi friends,
I am jr in java programming.. I am developing an application with JSP for remote desktop view.. in which it uses remote client address to serve the desktop..
The problem here is I am getting the static ip provided to client by his ISP, and main problem occuring when two different clients from the same LAN are acceing my JSP,, I am getting two users with same static ip address and while the time of showing desktop of those systems, I am getting only their gateway systems desktop on which proxy is running..
I dont know how to resolve this ip conflict problem
any body plz help me
Thanks in advance
Rama shankar
[email protected]

K.Ramesh wrote:
hi,
getParameter Funtion will return only value of <option> tag
<option value="optionvalue">optionview</option>request.getParameter("selectname"); // this ll give optionvalue, not optionview
try this one.It may be helpful to uThis answer makes no sense.

Similar Messages

  • Problem with getting actual value in Row row=iter.getCurrentRow();

    hi,
    the use case is as follows:
    in master-details, on detail table there are 2 columns with checkbox and username.
    when user clicks checks, the username text item is populated with current user value in respective row.
    <af:column sortProperty="#{bindings.DcaRegisterLinesV1.hints.Selected.name}" filterable="true"
    sortable="true" headerText="#{bindings.DcaRegisterLinesV1.hints.Selected.label}" id="c1"
    width="30">
    <af:selectBooleanCheckbox value="#{row.bindings.Selected.inputValue}"
    label="#{row.bindings.Selected.label}" autoSubmit="true"
    valueChangeListener="#{registerBean.socSelectedChangeListener}"
    shortDesc="#{bindings.DcaRegisterLinesV1.hints.Selected.tooltip}" id="sbc1">
    <!--af:setPropertyListener from="#{securityContext.userName}"
    to="#{bindings.ProcessedUser.inputValue}"
    type="attributeChange"/-->
    </af:selectBooleanCheckbox>
    </af:column>
    <af:column headerText="#{bindings.DcaRegisterLinesV1.hints.ProcessedUser.label}" id="c17" width="80"
    sortProperty="#{bindings.DcaRegisterLinesV1.hints.ProcessedUser.name}" filterable="true"
    sortable="true">
    <af:outputText value="#{row.ProcessedUser}" id="ot17"/>
    </af:column>
    the bean's code is below:
    public void socSelectedChangeListener(ValueChangeEvent valueChangeEvent) {
    BindingContainer dcbindings = getBindings();
    AttributeBinding at;
    DCBindingContainer dc=(DCBindingContainer) dcbindings;
    DCIteratorBinding iter=dc.findIteratorBinding("DcaRegisterLinesV1Iterator");
    BindingContext bindingctx = BindingContext.getCurrent();
    BindingContainer bindings = (BindingContainer)bindingctx.getCurrentBindingsEntry();
    Row row=iter.getCurrentRow();
    String AgreementId=row.getAttribute("AgreementId").toString();
    System.out.println(" AgreementId="+AgreementId);
    it always prints the first row's values.
    even though i click on different rows on the table prior clicking checkbox.
    what's wrong? seems like the model is not refreshed because what? autosubmit=true ?..
    how can i get the actual row values?
    please help
    the

    Hi,
    lets clean up your code first:
    public void socSelectedChangeListener(ValueChangeEvent valueChangeEvent) {
    BindingContainer dcbindings = getBindings();
    //AttributeBinding at;
    DCBindingContainer dc=(DCBindingContainer) dcbindings;
    DCIteratorBinding iter=dc.findIteratorBinding("DcaRegisterLinesV1Iterator");
    //BindingContext bindingctx = BindingContext.getCurrent();
    //BindingContainer bindings = (BindingContainer)bindingctx.getCurrentBindingsEntry();
    Row row=iter.getCurrentRow();
    String AgreementId=row.getAttribute("AgreementId").toString();
    System.out.println(" AgreementId="+AgreementId);No to the possible problem. Check if the table SelectListener is set. It should have an EL string that ends with ".makeCurrent". This however makes only sense for single row select cases.
    Frank

  • Problem in get streaming attachment in client side

    Dear friends,
    I am trying to create a client program which received a streaming attachment.
    i am using Jdeveloper-- Id ,Oc4j-- application server,Ubuntu---Os.
    i think i have a problem in---
    Vector params = new Vector();
    params.addElement(new Parameter("atts", oracle.webservices.attachments.Attachments.class, atts, null));
    call.setParams(params);
    those lines.
    i am geting these errors----
    [SOAPException: faultCode=SOAP-ENV:Client; msg=No Serializer found to serialize a &apos;oracle.webservices.attachments.Attachments&apos; using encoding style &apos;http://schemas.xmlsoap.org/soap/encoding/&apos;.; targetException=java.lang.IllegalArgumentException: No Serializer found to serialize a 'oracle.webservices.attachments.Attachments' using encoding style 'http://schemas.xmlsoap.org/soap/encoding/'.]
         at org.apache.soap.rpc.Call.invoke(Call.java:308)
         at etrans.TripBean.a.ClientGateWay.caller(ClientGateWay.java:64)
         at etrans.TripBean.a.ClientProgram.main(ClientProgram.java:10)
    when i comment this
    //params.addElement(new Parameter("atts", oracle.webservices.attachments.Attachments.class, atts, null));
    --------- i am geting errors
    ava.lang.Exception: Expected request attachments
         at etrans.TripBean.a.ClientGateWay.caller(ClientGateWay.java:78)
         at etrans.TripBean.a.ClientProgram.main(ClientProgram.java:10)
    please help.

    Hello,
    How did you get this code generated?
    Did you write all by hand or you are generating a proxy?
    Can you send me the full code, client and server at tugdual[dot]grall[at]oracle[dot]com. ?
    Regards
    Tugdual Grall

  • Problem with getting actual data from Detail in Master/Detail

    Hi.
    I'm using master-detail tables (based on Read-Only view objects connected with view link).
    In those tables some columns are inputText, so that user can change data for the use of stored procedure only (I don't want to change data showed in tables, just need a possibility to modify it before passing arguments to procedure)
    The problem is when I get data from rows from detail view (Read Only with attributes set to "updatable always") it's not the data user entered in the table (there is no problem in master table) but the data fetched from database.
    This is the way I do it in backing been:
    Row[] masterRows = view.getAllRowsInRange();
    for (int i = 0; i < masterRows .length; i++){
      MasterRowImpl row = (MasterRowImpl )masterRows;
    System.out.println("Group name:" + row.getGroup())
    RowIterator rowIterator = row.getDetailsView();
    while(rowIterator.hasNext()){
    DetailsViewRowImpl detailRow = (DetailsViewRowImpl )rowIterator.next();
    System.out.println("User name: " + detailRow.getName())
    So if (for example) in database I have Group1, with 3 detail rows: John1,John2,John3;
    and user in Tables displayedon page changes it like this:
    Group1_changed, John1, John2_blah, John333
    After executing the code above I get:
    Group name: Group1_changed
    User name: John1
    User name: John2
    User name: John3
    Is it a normal behaviour?
    ps. When I use entity based view objects there is no problem, but I want to use ReadOnly View Objects.

    this is my function that reads the data:
    while( ( ch = dis.read() ) != -1 ){
    mess.append((char)ch);
              licz++;
              if(licz>prog){
                   licz=0;
                   //gauge.setValue();
    when i use just mess.append(dis.readUTF()))
    i get en exception:
    java.io.EOFException
         at java.io.DataInputStream.readFully(+45)
         at java.io.DataInputStream.readUTF(+32)
         at java.io.DataInputStream.readUTF(+4)
         at KConnection.KConnector.connect(+137)
         at SerwisMain.download(+25)
         at SerwisMain.ok(+415)
         at KGUI.KInput.commandAction(+209)
         at javax.microedition.lcdui.Display$DisplayAccessor.commandAction(+152)
         at com.sun.kvem.midp.lcdui.EmulEventHandler$EventLoop.run(+459)

  • I know many have this issue but i can't find a solution to the problem. i get message saying insuffisiant disk space in the volume iPhoto library and i have plenty of space available. i have the new macbook pro with retina display.

    I know many have this issue but i can't find a solution to the problem. i get message saying insuffisiant disk space in the volume iPhoto library and i have plenty of space available. i have the new macbook pro with retina display. i have never seen this message before and i have 2 other macbooks and have had many other also. i am assuming this is a problem with the new macbook retina. does anyone know the exact fix to this issue? i have seen many sugestions to try to fix this issue but none have solved the issue for anyone that i can find in the Apple Support Community. thank for looking into this in advance.
    ******A true apple fan********

    Actually your suggestions are the ones that i have tried. i have seen that you have tried to help others with this issue and the only one that i could find that said they found the problem said that it was an ilife update issue and it fixed it and i have no available updates. i know it has to do with something in photo stream because it happens when i create a new library and it is loading the photos but i get the message before i reach the maximum 1000 photos. so i've tried updating, new library(first backing up photos and then deleting them from iPhoto), reinstalling OSX many times, running disc utilities. I called Apple the first day i had this issue and i was the first person to call them for support with the retina display and i actually had it escalated to a senior advisor and we thought we fixed the problem but we did not. i am pretty fluent in dealing with troubleshooting these type of issues and this is the first time i'm reaching out to the community. i figured now that the retina has been out some time now that there would be an obvious answer to this issue. thanks for the quick reply.
    Bebers5

  • Problem with getting exact font

    Hello there,
    I am facing strange problem regarding getting exact document font. My sample code is-
             var fontsArr = document.fonts;
             for(var cnt = 0; cnt < fontsArr.length; cnt++){
                var font = fontsArr[cnt];
                alert(font.location); // added for test purpose
         I have  used "Arial-Regular" font in my document. Now when run above code; it alerts as - 
              C:\WINDOWS\Fonts\ariali.ttf   // This is location of Arial-Italic file !!!!!
         I cant understand this problem why it is giving me location of other file when the actual font is available in the location.
    Thanks in advance.

    Hello,
    @Jump_over
    No change. It giving me alert as -
    Arial-Regular
    C:\WINDOWS\Fonts\ariali.ttf
    Cant figure out the problem 

  • Problem with getting resized image's bytes

    I've got a problem with getting correct bytes of a newly resized image. The flow is that I retrive an image from the filesystem. Due to the fact that it is large I resize it to a 50x50px thumbnail. I can display this thumbnail in #benchmark1 (see code below). Unfortunately something's wrong with my imageToBytes funtion which returns reasonably small size of image but is totally useless - I can't make an image of it anymore so at #benchmark2 the application either crashes or keeps freezing. I saved this byte array on my disk and tried to preview under Windows how does it look but I got a message "Preview unavailabe". I did some digging in the Internet and I supposed that it's because I don't use any jpg or png encoders to save the file. Actually I think that it's not the case, as the bytes returned from method imageToBytes look weird - I cannot even make a new image of them and display it without any saving in memory.
                                  byte[] bytes = FileHandler.readFile (
                                          FileHandler.PHOTOS_PATH, fileName);
                                  Image img2 = Image.createImage (bytes, 0, bytes.length);
                                  img2 = ImageHandler.getInstance ().resize (img2);
                                                    //#benchmark1
                                  bytes = ImageUtils.imageToBytes (img2);
                                  img2 = Image.createImage (bytes, 0, bytes.length);
                                                    //#benchmark2my imageToBytes function is as follows:
         public static byte[] imageToBytes (Image img)
              int[] imgRgbData = new int[img.getWidth () * img.getHeight ()];
              byte[] imageData = null;
              try
                   img.getRGB (imgRgbData, 0, img.getWidth (), 0, 0, img.getWidth (),
                           img.getHeight ());
              catch (Exception e)
              ByteArrayOutputStream baos = new ByteArrayOutputStream ();
              DataOutputStream dos = new DataOutputStream (baos);
              try
                   for (int i = 0; i < imgRgbData.length; i++)
                        dos.writeInt (imgRgbData);
                   imageData = baos.toByteArray ();
                   baos.close ();
                   dos.close ();
              catch (Exception e)
              return imageData;
    I've run totally out of any idea what's wrong, please help!
    Edited by: crawlie on Jul 17, 2010 6:21 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hey Crawlie,
    Please note that simply writing int values into ByteArrayOutputStream will not suffice. Please have a look at the following conversion from int pixel value into byte[4]:
    public static final byte[] intToByteArray(int value) {
            return new byte[] {
                    (byte)(value >>> 24),
                    (byte)(value >>> 16),
                    (byte)(value >>> 8),
                    (byte)value
    }Good Luck!
    Daniel

  • Problem in getting previous screen in Classic report.

    Hello everyone,
                          I am facing a serious problem in getting the previous screen in classical report.
    let me tell you in detail.
    When i run the report, i will have a selection screen with some checkboxes and select-options. Now in the report i have functionality to get some more select-options from user selection. Here i am calling the pop-up screen, wherein if user selects checkboxes, then those fields will be visible on the default selection screen.
    To display them i am using Modif-id concept. Depending on the checkbox values, i am setting up the variables. Using those variables i am modifying screen.
    Now suppose user has got some extra fields and run the report. It will get the output in the desired format.
    Now the problem is when i am pressing 'BACK' button on the report output. The fields which are appended using modif-id are getting cleared. After that what i have is only the default selection-screen.
    I want those fields to be restored. How do i go for it. Please help me out.
    thanks in advance.

    Hi thanks for reply.
                               Actually code is too big to post. But have you understood my problem. Some part of code ia am sending.
    AT SELECTION-SCREEN OUTPUT.
    IF SY-UCOMM <> 'ONLI' AND SY-UCOMM <> 'FLDS' AND SY-UCOMM <> 'OK' AND
    SY-DYNNR <> '0100' AND SY-UCOMM = ' '.
      LEAVE TO SCREEN 1000.
    ENDIF.
    Now i want to know, whether i could get bcak those fields which which are appended using Modif-id,
    how do i get the information about screen fiedls which was there after leaving the screen.
    Thanks.

  • Could not get system landscape directory client - NWDS 7.31 SP 09

    Hi Experts,
    We are unable to import development configurations from NWDI 7.4 to NWDS 7.31 for one of the developer's id. Other developers are able to import the
    configuration successfully in NWDS and are able to create projects without any issues. In fact, I am able to import the development configurations from his Id on my machine.
    The error message that is appearing is as follows: Could not get system landscape directory client.
    PFB the NWDS logs:
    null
    Error
    Tue Jan 06 12:48:58 IST 2015
    List Development Configurations failed      [Error: com.sap.ide.dii05.ui.internal.sld.SldContext  Thread[ModalContext,6,main]]
    com.sap.lcr.api.cimclient.LcrException: com.sap.lcr.api.cimclient.CIMClientException: HTTP response code: 407 (Proxy Authentication Required ( Forefront TMG requires authorization to fulfill the request. Access to the Web Proxy filter is denied.  ))
    at com.sap.lcr.api.cimclient.HttpRequestSender.newClientException(HttpRequestSender.java:719)
    at com.sap.lcr.api.cimclient.HttpRequestSender.processResponse(HttpRequestSender.java:608)
    at com.sap.lcr.api.cimclient.HttpRequestSender.send(HttpRequestSender.java:352)
    at com.sap.lcr.api.cimclient.CIMOMClient.sendImpl(CIMOMClient.java:205)
    at com.sap.lcr.api.cimclient.CIMOMClient.send(CIMOMClient.java:153)
    at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstancesImpl(CIMOMClient.java:450)
    at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstances(CIMOMClient.java:754)
    at com.sap.lcr.api.cimclient.CIMClient.enumerateInstances(CIMClient.java:989)
    at com.sap.lcr.api.sapmodel.JavaCIMObjectAccessor.enumerateInstances(JavaCIMObjectAccessor.java:213)
    at com.sap.lcr.api.sapmodel.SAP_DesignTimeConfigurationAccessor.enumerateInstances(SAP_DesignTimeConfigurationAccessor.java:164)
    at com.sap.ide.dii05.lib.internal.sld.SldBasicContext.listRemoteDevConfNames(SldBasicContext.java:197)
    at com.sap.ide.dii05.ui.internal.devconf.wizard.DevConfImportSldPage$6.run(DevConfImportSldPage.java:293)
    at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121)
    NWDS version: 7.31 SP 09
    Error Screenshot -
    Any pointers will be highly appreciated.
    BR,
    Anurag

    Hi,
    we had some issues recently with this, and the trace also mentions proxy issues. Could you please try direct connection in that preferences  (in other words do not use proxy settings in NWDS) ?
    Is it possible that there is some kind of web-filter application installed that is blocking the request?
    I'd suggest to google for this error:
    407 (Proxy Authentication Required ( Forefront TMG requires authorization to fulfill the request. Access to the Web Proxy filter is denied.  ))
    Perhaps the problem is not even sap related.
    Is Microsoft Forefront TMG (Threat Management Gateway after some googleing) perhaps configured in the way that it is not allowing this request ? Perhaps the IT guys of your company could look into this.
    Microsoft Forefront Threat Management Gateway - Wikipedia, the free encyclopedia
    12209 Forefront TMG requires authorization to fulfill the request. Access to the Web Proxy filter is denied.
    Cheers,
    Ervin

  • Problem using get-credential on a runbook

    Hi all,
    I'm new on powershell scripting.
    i need to do a script to start/stop/status windows service (ej Oracle Listener) after/previus poweron/poweroff a VM.
    the script then i put on the runbook 
    workflow MyStartAzureVM
        Param
            [Parameter(Mandatory=$true)]
            [String]
            $vmName,       
    [Parameter(Mandatory=$true)]
            [String]
            $cloudServiceName 
        # Specify Azure Subscription Name
        $subName = 'Enterprise'   
        #please enter your own automation user here. See this blog for help: http://www.russellmccloy.com/2014/12/stop-azurevm-using-azure-automation.html
        $cred = Get-AutomationPSCredential -Name "admazure"
        Add-AzureAccount -Credential $cred
        Select-AzureSubscription -SubscriptionName $subName 
        $vm = Get-AzureVM -ServiceName $cloudServiceName -Name $vmName 
        Write-Output "$vm"
        Write-Output "vm.InstanceStatus"
        if ( $vm.InstanceStatus -eq 'StoppedDeallocated' ) {
            Start-AzureVM -ServiceName $vm.ServiceName -Name $vm.Name     
        #Verifico listener y si esta bajo lo subo.
        Write-Output "flag Antes del get-service"
     ###### in here a have the problem ###########   
        #$lst_status = Get-Service -PSComputerName SRVAZUCLK -name OracleOraDB12Home1TNSListenerLISTENER_WOMDB |select Status
        $lst_status = 'Stopped'
        Write-Output "$lst_status"
        ###### in here a have the problem ###########   
        if ( $lst_status -eq 'Stopped' ) {
        InlineScript {Invoke-Command -ComputerName SRVAZUCLK  {start-service -name OracleOraDB12Home1TNSListenerLISTENER_WOMDB}}
         Write-Output "flag despues del invoke"   
    but i have this error.
    1/29/2015 4:04:12 PM, Error: [SRVAZUCLK Connecting to remote server SRVAZUCLK failed with the following error message : The WinRM 
    client cannot process the request. If the authentication scheme is different from Kerberos, or if the client computer 
    is not joined to a domain, then HTTPS transport must be used or the destination machine must be added to the 
    TrustedHosts configuration setting. Use winrm.cmd to configure TrustedHosts. Note that computers in the TrustedHosts 
    list might not be authenticated. You can get more information about that by running the following command: winrm help 
    config. For more information, see the about_Remote_Troubleshooting Help topic.
        + CategoryInfo          : OpenError: (SRVAZUCLK:String) [], PSRemotingTransportException
        + FullyQualifiedErrorId : ServerNotTrusted,PSSessionStateBroken
    1/29/2015 4:04:12 PM, Output
    i add the server to the trusted server but i'm steel geting this error.
    on the VM SRVAZUCLK azure powershell console
    PS C:\> Get-Item WSMan:\localhost\Client\TrustedHosts
       WSManConfig: Microsoft.WSMan.Management\WSMan::localhost\Client
    Type            Name                           SourceOfValue   Value
    System.String   TrustedHosts                                   *
    PS C:\>
    i tried to user the get-credencial, but in get-credential you most enter the password.
    when a put get-credential into the runbook i get this error.
    1/30/2015 10:33:03 AM, Error: Get-Credential : Cannot process command because of one or more missing mandatory parameters: Credential.
    At MyStartAzureVM:45 char:45

        + CategoryInfo          : InvalidArgument: (:) [Get-Credential], ParameterBindingException
        + FullyQualifiedErrorId : MissingMandatoryParameter,Microsoft.PowerShell.Commands.GetCredentialCommand
    1/30/2015 10:33:03 AM, Output
    1/30/2015 10:33:03 AM, Error: Invoke-Command : Cannot process argument transformation on parameter 'Credential'. A command that prompts the user 
    failed because the host program or the command type does not support user interaction. The host was attempting to 
    request confirmation with the following message: Enter your credentials.
    At MyStartAzureVM:49 char:49

        + CategoryInfo          : InvalidData: (:) [Invoke-Command], ParameterBindingArgumentTransformationException
        + FullyQualifiedErrorId : ParameterArgumentTransformationError,Microsoft.PowerShell.Commands.InvokeCommandCommand
    1/30/2015 10:33:03 AM, Output
    can i enter the password by parameter?? i cant find out how do that.
    Thanks again.
    Pablo

    Hi Pablo,
    You need to pass a credential to Invoke-Command, which you should store and retrieve from an Automation credential asset (use Get-AutomationPSCredential to retrieve it within a runbook), similar to what you are doing with credential asset "admazure."
    See
    https://technet.microsoft.com/en-us/library/dn919926.aspx for more details.
    For a good sample on how to invoke a command on an Azure VM from Azure Automation, take a look at this runbook: https://gallery.technet.microsoft.com/scriptcenter/How-to-Use-a-PowerShell-59b2e28c.

  • Problems with the build-IN SNTP-Client on cRIO9014&cRIO9012

    Hi out there,
    I have a problem using the build-IN SNTP-Client of a cRIO-9014 (and a cRIO-9012).
    It seems that the cRIO sometimes gets another time (e.g. 28.01.1920  12:03:00) other than it should get (e.g. 31.08.2014 09:59:00).
    I've found this problem in our measurement-files. They had some unusual timestamps (as showed in the following example).
    To prevent the SNTP-Client from doing too many damages to our measurement-files, I built a time-validator (with a range of 5 min), which checks one of my servers (and let it write every time change to a log file).
    The Log-File looks like (Where "$Message" is a custom-message. It is unrelated to the problem, but occurs every minute):
    31.08.2014          09:58:00 $Message
    31.08.2014          09:59:00 $Message
    31.08.2014          10:20:00 Setting Time from 28.01.1920 12:14:09 to: 31.08.2014 10:20:00
    31.08.2014          10:21:00 $Message
    31.08.2014          10:22:00 $Message
    31.08.2014          10:54:00 $Message
    31.08.2014          10:55:00 $Message
    31.08.2014          10:59:00 $Message
    31.08.2014          11:00:00 $Message
    As you can see, the cRIO loses its time somewhere between 09:59:00 and 10:00:00(UTC) and it has been set back at 10:58:XX (UTC). It is shown with the gap between the messages at 10:55:00 and 10:59:00.
    The configuration for the timesync was:
    [TIME SYNC]
    source.rtc.enable=True
    source_priority=sntp;rtc;
    source.sntp.enable=true
    source.sntp.address=192.53.103.108
    source.sntp.interval=60
    source.sntp.port=123
    source.sntp.verbose=false
    source.sntp.log=false
    sntp.address is a public  German time-server, hosted by our national institute.
    I've set sntp.verbose and sntp.log to TRUE for more information, but have to wait some time for a logfile.
    The network has the following scheme:
    cRIO -> UMTS-Modem -> ISP-VPN -> Internet
    Does anyone have had this problem and/or know, how to fix it?
    Thanks for your help!
    Cateros

    Hi!
    The problem happens sporadically, at first, we didn't even notice it, just that there are files missing and we got the strange logs. Now, with the workaround, we can finally trace the problem (and in some cases restore our measurement).
    What do you mean with "connectthe cRIO directly to a router?"? Could you please explain it?
    In the enclosure are more networkdevices, but only the cRIO uses the connection to the internet.
    The "UMTS Modem" has also routing capacities, which we use to remote control both of the RIOs.
    Thanks for your reply
    Cateros

  • CIC0 - get actual org unit of user

    Hi,
    Does anybody knows how to get actual org unit of agent in CIC0, which he has choosen when logging to CIC0?
    CIC_GET_ORG_UNIT reads only first of all user's assignments, and I need the one that he has choosen
    Regards

    Hi Radek, how are you?
    Hi normally use that one, and I had no problems. It returns to me the actual org unit of choosen profile, at CIC0.
    That function reads internal table CIC_OBJECTS, which was multiple entries. This multiple entries are the hierarchical upper level's of the choosen profile at organization model, like the position, org unit, etc. Since it returns the first 'O' (org unit) entry, it will return to you always the first upper org unit of choosen profile.
    Can you re-check?
    Kind regards,
    Garcia
    Edited by: Bruno Garcia on Jul 26, 2010 2:53 PM

  • I am facing problem to get text file from application sever

    Hi This is lokesh.
    Actually my requirement is to craete sales orders by getting file from other server.for that i have used shell script to connect that server.Ok i am connecting to that different server(not sap server) successfully.
    But my problem is getting text file from application SERVER.
    That different server people will send the file name as 'DDHHMMSS' (Days,Hours,Minutes,Seconds).
    Just suppose if they will send today means that file name will come as 20103025. and with in half an hour if they again send that file file means that file name as '20110025'.
    like that file name is always varies.So how can i read that type of text files from the application server.
    and one more thing that is there chance to read morethan one text file from application server.
    Pls guide me if u know the solution.PLs this requirement is urgent.
    Regards,
    Lokeshgoud

    Hi..,
    <b>Just execute this program ... this is for the files received in JUST 3 MINS...</b>
    change it according to your requirement !!
    data time type sy-uzeit value '100000'. <i>"<<----start time</i>
    data file(8) type c value '20'.
    do 180 times. <i>" <<----- for 3 minutes</i>
    add sy-index to time.
    concatenate file time into file.
    write / file.
    OPEN DATASET FILE FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC EQ 0.
    PERFORM READ_DATASET.
    ENDIF.
    file = '20'.
    time = '100000'.
    ENDDO.
    <b>form read_dataset.
    read the file here with the file name <b>FILE</b>.
    endform.</b>
    regards,
    sai ramesh

  • Get actual visible width of an groupitem

    Hi Experts,
    Actually i am in the middle of a big problem.
    Problem: To get the top, left and width of an groupitem without Clipping mask. Actually the group has Clipping mask. But i need only the width of the selection (without Clipping mask). I got these properties in scripting but including the clipping mask. The GUI itself shows different (i.e. Info -->: X:0 mm, Y:0 mm, W:full width [including clipping mask]. Transform palette -->: X:43.00, Y:22.0, W:64 [excluding clipping mask])
    How to get the properties without clipping mask??.
    Please help...
    With best.
    Abdul

    loop thru all pathItems in the group and check for their "clipping" property,
    var idoc = app.activeDocument;
    var igroup = idoc.groupItems[0];
    for (i=0; i<igroup.pathItems.length; i++) {
        var ipath = igroup.pathItems[i];
        if (ipath.clipping) {
            alert(ipath.width);
            break;

  • How to get actual value from LOV list

    Like Subject says: How to get actual value from LOV list. Any help will be appreciated.
    Thanks.

    Thanks Shay, I did it with bind variable because I'm not using JSF. Is there any chance to post solution using standard JSTL or HTML expression. I have something like this: LOV displays some Companies names:
    <html:select property="UserJobCompanyId"
                             disabled="${!bindings[\'UserJobCompanyId\'].updateable}"
                             onchange="submitform();">
                  <html:optionsCollection label="prompt" value="index" property="UserJobCompanyId.displayData"/>                                                     
                </html:select>and I want to get CompanyID of selected Company.
    Thanks, again.

Maybe you are looking for

  • Making a outline around a person in a clip

    I am trying to make a perfect outline around a persons body in a clip and to make a freeze frame of just the person . I know this would be really easy in photo shop. Can anyone help me do this in Fcp or After Effects? Stephen....

  • 4S trouble no ring sound

    My phone suddenly quit ringing AND texts and alarms only vibrate.   I've checked the settings/sounds and the slide bar on the side.   A symbol also comes up next to the battery charge at the top right corner that is a lock with a circle.   I don't kn

  • IPhoto 11 personal profile metadata

    My own mug, in iPhoto 11's Faces, displays a long-gone email address. I just noticed this, and my attempts to change it, or find assistance in an Apple forum, have been unsuccessful.  My AppleID and iCloud accounts were updated to the new info a few

  • Can't see my phone on "find my phone", how do I fix this please?

    I first set up my phone to be found on the "find my phone" app/feature when I got it. A few weeks later I signed in into mobile me and couldn't see my phone> It said no device set or something like that I went in my phone to made sure the app was on

  • Support configuring PlayBook on a Microsoft VPN with default settings

    We have a Microsoft VPN running at work. I can connect to it from any Windows 7 PC with the default VPN settings. How can I configure the PlayBook to connect to the VPN. I have had no success after trying various settings.