Citrixwi channel using netlets

I have Portal 6.0 SRA running with the Citrixwi channel from citrix installed. We are trying to get this running using netlets as a proof of concept.
I can see the published apps in the channel, but they will not launch.
I have changed and added all the rewriter rules, javascript, and modified NFuse.conf to use alternate address and IPv4-port.
My citrix admin tells me that altaddress is set to- default - 127.0.0.1:11001 on the server. (I have only one server in the test farm that is used as the data collector and citrix box.) He said he ran altaddr /set 127.0.0.1:11001 then rebooted the box for good measure. Then ran altaddr to check that it was there.
I can connect to the citrix box on localhost port 11001 for testing, but when I run from portal I am getting the following:
main bodyjava.lang.Exception: 1st ica attempt - java.lang.Exception: url2java.lang.Exception: parser errorNFuse_Application=Notepad&NFuse_User=username&NFuse_Domain=$domain&NFuse_Password=password&NFuse_LogonMode=Explicit&NFuse_CitrixServer=server.domain.net&NFuse_CitrixServerPort=80&NFuse_Transport=HTTP The MetaFrame server farm reported that the alternate address cannot be found.
Is there something that I may have missed, or my citrix admin?

Did you map the 11001 port in the Citrix channel configuration: you need both a netlet rule (to create a listener port) and then a Citrix channel rule to map the port to a backend citrix server.
I can confirm we're using it with the alternate address set to 127.0.0.1 ok.
Still the problem is not yet to the Citrix connection. It is still the citrix channel who has a problem generating the ICA file in my opinion. If you look at the code of routeica.jsp then you will see that it is like a hack . Try the first time (it can work or not).

Similar Messages

  • Citrixwi channel with 2 farms

    Hi,
    I'd like to configure my Citrixwi Channel so that I could launch applications from 2 different farms.
    So far we had a single farm and everything was working fine. We used the Secure Mode with Netlet. Here is how it was setup:
    Identity Management > SRA Configuration > Netlet : I created a "Citrix" rule. Map Local Port to Destination Server Port: 1494 crpctx 1494 and 8080 crpctx 80
    Identity Mangement > Portal Desktop > CitrixwiChannel > XMLservers : Admin|http://crpctx.crp-sante.healthnet.lu
    Identity Mangement > Portal Desktop > CitrixwiChannel > NetletRules : 9001|129.152.130.103|1494. this is the default value and I don't think this does anything...
    Now what I need to do is add a second farm.
    So I added an XMLserver : Identity Mangement > Portal Desktop > CitrixwiChannel > XMLservers : BAM|http://modctx.crp-sante.healthnet.lu
    Now I can browse the applications of my 2 farms on the portal. at least this works... but I can't launch any application from the second farm. When I try I get the following message : "You do not have access to logon to this session"
    If someone managed somehow to get this working, please let me kown how you did it...
    Thanks

    Hi!
    You do not create netletrules for the citrixprovider, you enter them in citrix itself.
    Simply create in
    Identity Mangement > Portal Desktop > CitrixwiChannel > NetletRules:
    1495|http://modctx.crp-sante.healthnet.lu|1494
    1494|http://crpctx.crp-sante.healthnet.lu|1494
    and remove the rule in the netlet configuration. You have to be careful to always use either the full qualified name or the "shortname" (crpctx)
    Another important thing for troubleshooting:
    Link .ica files to notepad.
    This way the file gets downloaded and opens in notepad. Then you can see to which port/server citrix tries to connect.
    The connection should go to the correct tunnel, 1494 for crpctx and 1495 for modctx.
    hth
    Chris

  • How to programmatically read/write the range of a fieldpoint AI channel using LV

    Is there a way to programmatically read/write the range of a fieldpoint AI channel using LV ? The example on NI site only permit you to have the name of the device and channels, not the actual set of the range of measure. Anybody has a VI (LV5.1 please)to share?
    Thank you very much

    If you are using the FieldPoint VI's (Open, Create Tag, Read, Write, Advise), you do not have the ability to change the range of a channel. If you have a FP-1000 or FP-1001, you can use the Optomux commands as described in the FP-1000/1001 Programmers Reference Manual (FieldPoint Optomux VI's are available at ftp://ftp.ni.com/support/fieldpoint/LVFPOpto/ ).
    Alternatively, if you have an ethernet network module and LabVIEW 6i or later, you can use the ethernet configuration VI's that ship with FieldPoint Explorer 3.0.1.
    Regards,
    Aaron

  • Creation of new internal delivery channel using AQ

    Hi,
    I wanted to route one of Trading partner data to a different queue.(no want to use existing queues - IP_IN /IP_OUT queue).
    This needs to create a new delivery channel using AQ in B2B.
    I have gone thru the steps & entered all entries, but I am not able to find any queues created in B2B schema.
    Do I need to create a queue using PL/SL in B2B to make it available as internal delivery channel or this setup itself will create a queue in B2B?
    PFA the entirs:
    for transport parameters
    - transport server (B2B server IP)
    - Protocol as AQ
    -URI - b2b.<uri_name> (name of Queue, wanted to create)
    - Hostname
    - Port
    -SID - b2b
    -consumer - b2buser
    - receiptient - null
    -Polling interval - 6000
    Transport server details:
    Host name - (IP)
    IP - Host IP
    username -
    Pswd - for B2B schema
    Any pointers will be a great help.
    Regards,
    MS

    As mentioned by TH in the above post, first thing is to create the data type that is used for messages - IP_MESSAGE_TYPE. This data type will already be present in the B2B database and could be reused.
    For a new data type you could do the following.
    ==============================================================
    Create a new data type using the following
    ==============================================================
    create type IP_MSG_TYPE as OBJECT (
         MSG_ID VARCHAR2(128),
         INREPLYTO_MSG_ID VARCHAR2(128),
         FROM_PARTY VARCHAR2(512),
         TO_PARTY VARCHAR2(512),
         ACTION_NAME VARCHAR2(512),
         DOCTYPE_NAME VARCHAR2(512),
         DOCTYPE_REVISION VARCHAR2(512),
         MSG_TYPE INT,
         PAYLOAD CLOB,
         ATTACHMENT BLOB
    Once you have created a new Data type ( or are reusing the existing data type), you need to create Queue Table that will hold the Outbound and Inbound message queues. The existing Queue table is "IP_QTAB" which can again be reused.
    For new Queue table you could do the following
    ==============================================================
    Create a new Queue Table using the following
    ==============================================================
    execute dbms_aqadm.create_queue_table (     queue_table => 'MY_QTAB',
                             queue_payload_type => 'IP_MSG_TYPE',
                             multiple_consumers => FALSE);
    If you need to reuse the datatype change the queue_payload_type to 'IP_MESSAGE_TYPE'.
    Once we have the Queue Table that will hold the queues, we need to add and start the queues that are to be used for the inbound and outbound messages.
    ==============================================================
    Create the new Queues into the Queue Table using the following
    ==============================================================
    execute dbms_aqadm.create_queue (queue_name => 'B2B.MY_OUT_QUEUE', queue_table => 'B2B.MY_QTAB');
    execute dbms_aqadm.create_queue (queue_name => 'B2B.MY_IN_QUEUE', queue_table => 'B2B.MY_QTAB');
    execute dbms_aqadm.start_queue(queue_name => 'B2B.MY_OUT_QUEUE', dequeue => TRUE, enqueue => TRUE);
    execute dbms_aqadm.start_queue(queue_name => 'B2B.MY_IN_QUEUE', dequeue => TRUE, enqueue => TRUE);
    If you are reusing the queue table IP_QTAB for creation of new queues, then reference that for the queue_table in above commands.
    You need to reference the queue_name eg. B2B.My_OUT_QUEUE in the B2B UI screen.
    Hope this helps.
    AKT

  • Error trying to call channel using accessor

    Hello All,
    Messages are failing while accessor is trying to call channel
    Please help me figure out a fix for the problem. Hope that the following trace information helps.
    <Trace level="1" type="T">Interface Mapping http://imprintlabs.com/I33A_Goods_Receipt/XI IM_A1_ZWMMBIDMASS01_to_SCPM_ZWMMBIDMASS01</Trace>
      <Trace level="1" type="T">*** START APPLICATION TRACE ***</Trace>
      <Trace level="1" type="T">ValueMapping Exception - List ID 44 not found in the Integration Directory Value Mapping Table.</Trace>
      <Trace level="1" type="T">Turn on Logging.</Trace>
      <Trace level="1" type="T">Hash is null - need to lookup values from DB</Trace>
      <Trace level="1" type="T">Exception: trying to get System Accessor</Trace>
      <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
      <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
      <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
      <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
      <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
      <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
      <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
      <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
      <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
      <Trace level="1" type="T">Exception: error trying to call channel using accessor</Trace>
      <Trace level="1" type="T">*** END APPLICATION TRACE ***</Trace>
    <Trace level="1" type="T">Runtime exception occurred during execution of application mapping program com/sap/xi/tf/_MM_A1_ZWMMBIDMASS01_to_SCPM_ZWMMBIDMASS01_: com.sap.aii.utilxi.misc.api.BaseRuntimeException; RuntimeException in Message-Mapping transformation: Runtime exception during processing target field mapping /ZWMMBIDMASS01/IDOC/EDI_DC40/SERIAL. The message is: Exception:[java.lang.RuntimeException: stdLookup- Unable to get lookup values] in class
    com.sap.xi.tf._MM_A1_ZWMMBIDMASS01_to_SCPM_ZWMMBIDMASS01_ method
    Trace level="1" type="System_Error">Error exception return from pipeline processing!</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
    - <!--  ************************************
      -->
    - <Trace level="1" type="B" name="interface activity determination">
      <Trace level="1" type="T">Version 006</Trace>
      <Trace level="1" type="T">Message status 012</Trace>
      <Trace level="1" type="T">Interface action ARCH</Trace>
      <Trace level="1" type="T">(must be INIT for a new determination)</Trace>
      <Trace level="1" type="T">Set interface action ARCH into MAST</Trace>
      </Trace>
      </SAP:Trace>
    regards,
    Roshni

    Hello Ramesh/Satish
    The payload was processed and this time the message got through. The value mapping exception did occur, but it there was no System Accessor Error.
    Trace level="1" type="T">*** START APPLICATION TRACE ***</Trace>
      <Trace level="1" type="T">ValueMapping Exception - List ID 44 not found in the Integration Directory Value Mapping Table.</Trace>
      <Trace level="1" type="T">Turn on Logging.</Trace>
      <Trace level="1" type="T">Hash is null - need to lookup values from DB</Trace>
      <Trace level="1" type="T">Content Type text/xml</Trace>
    Although the problem has been resolved I still wonder what caused the accessor error.

  • Finding which channels uses which Queue names

    Hi,
    Does anybody know wether there Is a simple way in PI to see if several Communication Channels uses the same JMS Queue Connection Parameters.
    I would like to be shure which channel will receive the message when I put in on the MQ queue.
    So how - If possible at all, can I see if more than one CC has been set up with the same Connection Parameters ?
    Thanks
    Peter

    Hi Peter,
    Right now we donu2019t have that much options in PI to check how many JMS communication channels are using particular MQ.
    We donu2019t have that facility in PI..
    There is way to serch objects in PI by using menu..
    Object  Find
    And few advance search ..
    But in your case I think you directly go to coomunication channel list which is there on left tree and go one by one for all JMS communication channel..
    No other way..
    Thanks,
    Bhupesh

  • Continuous DAQ with multiple Channels using 6023E

    I am trying to countinuously aquire data from 8 channels using a 6023E (without loosing data). For some reason it allways gives me error -10092. Meaning the card requires a certain time between each scan.
    If i set the scan rate to something that works, I loose
    data. Does anyone know how to do this right without loosing data whilst using double buffering or is this
    not possible?
    Thanks

    Ok I got somehow further.
    My problem was understanding the relationship between sampling rate and scanning rate.
    with E series the sampling rate is not the max sampling rate for a given channel but the overall sampling rate for A/D conversion. Further more
    in order to avoid error -10092 you have to set the
    scan rate to be slower than the sample rate:
    One way is scanrate=samplerate/(NumberofChannelsUsed+1)
    why this is necessary, i dont know?
    so if you get 2 channels rate divisor 1,2 yields
    SampleRate Channel1= scanrate/1
    SampleRate Channel1= scanrate/2
    ie. samplerate=100000 (10kHz)
    3 channelsUsed -> ScanRate=25000 (25kHz)
    divisors for each channel 1,2,1
    means
    channel1 samplerate=25 kHz
    channel2 samplerate=12,5 kHz
    channel3 samplerate=25 kHz
    w
    ith this i get a what looks like a seamless aquisition from Halfbuffer to Halfbuffer.
    But I am not sure if all i mentioned is correct?

  • How to view channels used by other local wireless networks?

    I use a wireless airport network in my office, with my Airport Express (802.11g) base station about 10 feet from my iMac. I get a lot of interference (from other networks or cordless phones) and despite interference robustness being on, my airport signal gets dropped fairly often -- and with it, I lose my Internet access and wireless printer.
    There are about 15 other local wireless networks (owned by other businesses). I thought I might improve my interference robustness by switching my wireless channel to a channel used by the least number of other networks.
    Now, I seem to remember running into an (Apple) app somewhere that showed these local wireless networks with their channels. But now I can't find it again, so I can't tell which channel is least used. I hope someone can help me find that app or functionality again!
    Thanks.

    Thanks for the suggestion; I checked it out and found some questionable reviews on VersionTracker for iStumbler so I'm hesitant to jump right in (does it still fill up the Console log?)
    In any case, I seem to remember finding channel information using some other application or preferences pane or something already on my system, but now I can't remember where. Is there any app that comes with OS X that shows channels on local wireless networks? I can't find this feature in Airport Utility.
    Thanks for any assistance.

  • Help needed to debug Communication Channel using Seeburger modules

    Hi ALL
    Can you please, help debug the following communication channel using File adapter & seeBurger module.
    Adapter Framework caught exception: I/O operation failed : java.lang.ClassNotFoundException: com.sap.engine.messaging.impl.spi.transport.PasswordCredentialImpl -
    Loader Info -
    ClassLoader name: [sap.com/com.sap.aii.af.app] Living status: alive Direct parent loaders:   [system:Frame]   [service:servlet_jsp]   [service:ejb]   [library:com.sap.xi.util.misc]   [service:com.sap.aii.adapter.xi.svc] Resources:   /usr/sap/KPX/DVEBMGS00/j2ee/cluster/apps/sap.com/com.sap.aii.af.app/EJBContainer/applicationjars/com.sap.aii.af.ejb.jar   /usr/sap/KPX/DVEBMGS00/j2ee/cluster/apps/sap.com/com.sap.aii.af.app/servlet_jsp/AdapterFramework/root/WEB-INF/classes   /usr/sap/KPX/DVEBMGS00/j2ee/cluster/apps/sap.com/com.sap.aii.af.app/servlet_jsp/AdapterFramework/root/WEB-INF/lib/com.sap.aii.af_api.jar -
    Delivering the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.engine.services.rmi_p4.exception.P4BaseRuntimeException: I/O operation failed : java.lang.ClassNotFoundException: com.sap.engine.messaging.impl.spi.transport.PasswordCredentialImpl -
    Loader Info -
    ClassLoader name: [sap.com/com.sap.aii.af.app] Living status: alive Direct parent loaders:   [system:Frame]   [service:servlet_jsp]   [service:ejb]   [library:com.sap.xi.util.misc]   [service:com.sap.aii.adapter.xi.svc] Resources:   /usr/sap/KPX/DVEBMGS00/j2ee/cluster/apps/sap.com/com.sap.aii.af.app/EJBContainer/applicationjars/com.sap.aii.af.ejb.jar   /usr/sap/KPX/DVEBMGS00/j2ee/cluster/apps/sap.com/com.sap.aii.af.app/servlet_jsp/AdapterFramework/root/WEB-INF/classes   /usr/sap/KPX/DVEBMGS00/j2ee/cluster/apps/sap.com/com.sap.aii.af.app/servlet_jsp/AdapterFramework/root/WEB-INF/lib/com.sap.aii.af_api.jar
    Your help is greatly appreciated!
    Thank you,
    Patrick

    Hi Patrick,
    It seems that your seeburger instalation was not successfull.
    Try installing it again and make all the libraries are there.
    Regards,
    Luismier
    Edited by: Luismier on Aug 26, 2009 10:57 PM
    Edited by: Luismier on Aug 26, 2009 11:16 PM

  • I am measuring mV on 8 channels using 2 NI 9239's and want to find the mean of each channel

    I'm using 2 NI 9239's to capture the voltages at 8 point on a test fixture. The voltages are very small (a few mV). I want to take an average of 1k samples from each channel and use these to calculate the resistivity of the sample under test. 
    What is the easiest method to precisely measure 8 channels?

    Let's start from the beginning.  Do you know how to read 1k samples from 8 channels using a single DAQmx Task?  Once you have that, then use a FOR loop to do a mean on each channel's data.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • No audio from second Channel using Webcam Capture with ASIO source

    I am trialing elements version 10 as I am looking for a capture / recording / editing solution for making music videos. I want to be able to record from my webcam and also record two audio streams silmutaneously.
    I am using a logitech webcam pro 9000 and a line6 Ux2 Audio recording Sound device. The UX2 is an ASIO compatible device that allows two streams to be recorded; in my case guitar and Microphone for voice. I am able to do this in ASIO comaptible audio editing software.
    So I have tried selecting the Audio device settings prior to starting a capture but each time I start a capture the audio device reverts to standard windows Realtek audio device. I then select the Line6 Device in the capture window and procede to record but I only get video and one audio channel. Is there a way to record live from webcam AND get both audio channels using ASIO driver?
    Cheers
    Greg

    Only if your camcorder records in stereo. Otherwise, you will only get one channel of audio and you will need to use the Fill Left or Fill Right audio effect to spread the audio across both.

  • Does fibre channel use both ports on the same drive bay

    I would like to know if Fibre Channel uses both of the fibre ports when they are connected to the same fibre channel drive bay. (dual port communication)

    I would like to know if Fibre Channel uses both of the fibre ports when they are connected to the same fibre channel drive bay. (dual port communication)

  • [svn:bz-trunk] 21154: Made sure the long-polling channel uses the new unlimited persistent connection limit as well when there 's no known user agent.

    Revision: 21154
    Revision: 21154
    Author:   [email protected]
    Date:     2011-04-27 07:16:48 -0700 (Wed, 27 Apr 2011)
    Log Message:
    Made sure the long-polling channel uses the new unlimited persistent connection limit as well when there's no known user agent.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/BasePollingHTTPEndpoint.java

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • How can I optimally stream data to disk at 5 MS/s on 4 channels using a PCI-6110?

    I am using a PCI-6110 to acquire data streaming from a camera. Data arrives on all four analog input channels at 5 MHz. An A2D clock is attached to PFI8, also originating from the camera and operating at 5 MHz. Finally, there is a Valid-data signal from the camera that signals when the data stream coming in on the four analog channels is actual data (each Validate pulse is about 132 samples wide). This is attached to PFI0. Ideally, I would like to have a program that captures data at the full rate and is correctly synchronized with the Valid-data line. It should also be able to stream to disk for several seconds at least before pausing for the buffer.
    Though I'm something of an inexper
    ienced programmer, I have attempted programs both in LabView and C (using DAQmx) to resolve this, but I have experienced much slower behavior than I'd like. In LabView, this seems to be the result of slow streaming to disk, such that I have to pause and reset the task every frame (132x512 samples per channel). Using DAQmx in C, I have found it necessary to restart the task after every line (132 samples per channel) in order to correctly trigger from the Validata pulse. Both are far from optimal. I would appreciate any advice that those of you with more experience reading at very high rates from this card may have to offer.
    Thanks,
    Steven Israel
    Duke University

    I'm not sure if I fully understand your application, but maybe some of these hints will help.
    First your streaming to disk rate is going to vary widely depending on your system. Sometimes using a faster processor helps, but most of the time using a faster hard drive will give you the best performance increase.
    Second, writing less data will often have a dramatic impact in streaming to disk applications. If you're reading back scaled data, I would strongly recommend switching to unscaled or raw reads and storing off the scaling constants so you can scale the data off line. This could reduce the required streaming to disk bandwidth by a factor of 4 alone.
    Third, since the 6110 is a 12 bit device, you can try compressing two 12 bit samples into one 24 b
    it piece of data. This will allow you to store in three bytes what used to take four.
    Last, you might consider using your signal on PFI0 as a pause trigger. Depending on the frequency of the pulses on your Valid-data signal, this could significantly reduce the required bandwidth of both the PCI bus and your hard drive. However, since the 6110 uses pipelined ADCs, you need to be careful if the time between valid data pulses is greater than one millisecond. This would violate the minimum sampling frequency of the board and the points in the pipeline that are returned after unpausing (3 in this case) might not be digitized at the full accuracy specification for the device. Because of the pipelining, you also need to be careful how you correlate the data. The first time you unpause for the Valid-data pulse, the first three points will be garbage points. The second and subsequent times you unpause, the first three points are really the last three points from the previous Valid-dat
    a pulse. See the Device Considerations->Timing chapter in the NI-DAQmx Help file for more information on timing considerations with pipelined ADCs.
    I hope this information helps. Good luck!

  • How to Change Wi-Fi Channel Used by Wireless Direct on HP Officejet Pro 8600 Premium?

    I would like to change the Wi-Fi channel that is used by Wireless Direct between my Lenovo laptop and my HP Officejet Pro 8600 Premium to reduce interference from other nearby users of Ch. 6 in my condo complex. (I am not using a wireless router setup to connect to the printer.)
    Is this possible?  If so, how?

    Ah... ok.  You are using the Wireless Direct with the printer.  You computer is wireless to channel 6.  That is all you can do unless you changed the router's wireless channel which will only automatically switch on your computer. 
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

Maybe you are looking for

  • HT5096 How can I move my Time Capsule Backup to an External Hard Drive?

    Hi I have run out of space on my Time Capsule so have decided to change my backup drive to an external hard drive of 4TB. I moved the Sparse Disk Image Bundle from the Time Capsule to the new drive and then changed Time Machine preferences to use the

  • Stability problem with Jdeveloper while working with BPM studio

    I am frequently facing this problem while working with Jdeveloper. I get the  message " an unexpected error has occurred in Jdevloper . Jdevloper memory setting in my case is 1000MB.  Any Any solution for this issue? Here is the details of error orac

  • EAP-TLS and ACS 5.1 with AD

    Hello, I want to set up the ACS 5.1 for dot1x-Port authentication. I want to make a machine authentication against an AD-Domain and I got the following error Message: 24435  Machine Groups retrieval from Active Directory succeeded 24100  Some of the

  • Unable to start em after deploying SOA composites

    Hi I have installed SOA 11.1.1.1.3 and cretaed the repositories. I have created a new domain soa_domain which supports SOA,Enterprise Manager,BAM. The first time I started the server, it started successfully and I was able to deploy two SOA composite

  • Java Dictionary and Text

    Hello,   I'm creating an application that requires me to store a large amount of text (around 5000 characters).  The first part of the dilema is how I should persist the data in the java dictionary.  Should I just create one large field?  Or do I nee