Trouble creating an custome netlet channel

I am trying to create a channel that will have a certain number of application links appear on it. Each application link should open up a telnet netlet session with tghe appropriate server. Each link will call an applet and the applet will be responsible to opening up the telnet session with the corrent machine. I am able to open the correct netlet ports and have the reflection applet load for each application. But what the applet loads I am never able to connect to the server correctly. Either the telnet session tells me i am disconnected or i am left looking at a blank telnet screen. When i look at the java console i see that all of the correct ports have been opened. This is what the java console looks like:
Netlet Starting (16)
Netlet found IE
Netlet config: https://access.advocatehealth.com:443/http://portal-srv0.advocatehealth.com:8080/NetletConfig?func=loadResources
Netlet not using proxy (IE)
Netlet sessionID: nxpgxvjvugkkpkcnoc6q0rpq3q95r8304@[email protected]@8080@/Rzcyblrr
Netlet rule 0: local:2080 destination:algra1.chmc.advocatehealth.com:2080
Netlet rule 1: local:8030 destination:TARGET:23
Netlet rule 2: local:8000 destination:portal-srv0.advocatehealth.com:8080
Netlet rule 3: local:30010 destination:TARGET:23
Netlet rule 4: local:30000 destination:TARGET:23
Netlet config: https://access.advocatehealth.com:443/http://portal-srv0.advocatehealth.com:8080/NetletConfig?func=setLoaded
creating MSSecure
cache dir: C:\WINNT\Java\reflectionweb\cache
MY SESSION: Loading configuration [https://access.advocatehealth.com/http://portal-srv0.advocatehealth.com:8080/wrq/session/vt_telnet.config].
MY SESSION: Reflection v4.1.34.528 starting
Netlet got connection on port: 8030 from port:1416 to gateway:access.advocatehealth.com on port:443
Netlet showing port warning dialog:8030
Any help would be appreciated,

I see you have configured 5 netlet rules. All the netlet rules seem to have the same name what are your netlet rules ?
Also your applet would not have to connect to the server in a format like this ..
In the netlet channel you would have to go and add a target host for each of the netlet rules.
for rule 1 you would have to add a target machine name like hostname.domain.com then do a
telnet localhost 30000 and see if gets forward to that hostname.

Similar Messages

  • Trouble creating a custom combobox

    I'm building a custom component consisting of a combo box
    that autopopulates with a list of states. So far it works fine
    except I can't retreive the selected item from an instance when the
    user makes a new selection. I've tried setting a custom property
    & setting the value equal to the current selection using a
    "change" event handler on the combobox but I could only retreive
    the value that was selected when the component was initialized, not
    when a new item is selected. I've tried setting up the class in the
    .as file to extend the "mx.controls.ComboBox" class instead of the
    usual "mx.core.UIComponent". That exposed the normal combobox
    properties to the caller, but the "selectedItem.data" property
    always comes up blank. Has anyone dealt with this issue before?? If
    so, I REALLY hope you managed to resolve it!!

    I'm building a custom component consisting of a combo box
    that autopopulates with a list of states. So far it works fine
    except I can't retreive the selected item from an instance when the
    user makes a new selection. I've tried setting a custom property
    & setting the value equal to the current selection using a
    "change" event handler on the combobox but I could only retreive
    the value that was selected when the component was initialized, not
    when a new item is selected. I've tried setting up the class in the
    .as file to extend the "mx.controls.ComboBox" class instead of the
    usual "mx.core.UIComponent". That exposed the normal combobox
    properties to the caller, but the "selectedItem.data" property
    always comes up blank. Has anyone dealt with this issue before?? If
    so, I REALLY hope you managed to resolve it!!

  • How do you connect your photoshop elements on your computer to your account online? and how do you create a customized url? how does the gallery work and how do you access it? i have trouble signing in on my program from my computer to connect to the onli

    how do you connect your photoshop elements on your computer to your account online? and how do you create a customized url? how does the gallery work and how do you access it? i have trouble signing in on my program from my computer to connect to the online photoshop, and I really want to create my own customized url and post photos to my gallery and share them with the world, family, and friends, but i need help because i can't figure how to do any of this, would really appreciate feedback and assistance, thanks, - claire conlon

    To add to sig's reply, "calibrating" does not calibrate Lithiu-Ion batteries, it calibrates the charge reporting circuitry.  If you look at the effect of deep discharging Lithium-Ion batteries in the data from the independent test group, Battery University, you will see that doing so shortens the life of the battery significantly. It looks like an optimum balance between use and life is at a discharge level of 50%.

  • Trouble creating List of Channels in SunOne Portal

    Hi,
    I am trouble creating new channel withlist of all the channels availbale in the portal. If any body can help in this that will be really great.
    Thank you,

    Here is a set of Portal Server's tutorials:
    http://developers.sun.com/prodtech/portalserver/learning/tutorials/index.html
    And Portal Servers forums are available at:
    http://swforums.sun.com/jive/category.jspa?categoryID=2

  • Trouble creating custom AreaRenderer for AreaChart

    Quick first question: if I purchase the charting package, do
    I get the source code? That would certainly solve my problems.
    OK the real question: Does anyone have a quick example class
    that is a custom AreaRenderer for an AreaChart?
    I'm trying to create a custom AreaRenderer implementation.
    According to the docs, I need to implement the "AreaRenderer"
    interface (not IAreaRenderer (?)) which supposedly lives in
    mx.charts.renderers.interfaces but Flex Builder complains that the
    interface is not found.
    Link to the docs:
    http://livedocs.macromedia.com/flex/15/asdocs_en/mx/charts/renderers/interfaces/AreaRender er.html
    Alternatively I've tried simply extending AreaRenderer but
    the methods: beginDraw, draw and endDraw don't seem to be there or
    are not overridable?

    Ugh I always figure these things out just after I post. I've
    been banging my head on this for over a day too.
    Anyway, for anyone else all you do is extend ProgrammaticSkin
    and implement IDataRenderer. Here is my sample class:
    package
    import mx.core.IDataRenderer;
    import mx.skins.ProgrammaticSkin;
    import mx.charts.series.items.AreaSeriesItem;
    import mx.charts.series.renderData.AreaSeriesRenderData;
    import flash.display.Graphics;
    public class MyAreaRenderer extends ProgrammaticSkin
    implements IDataRenderer
    private var _data:AreaSeriesRenderData;
    public function get data():Object
    return _data;
    public function set data(d:Object):void
    _data = d as AreaSeriesRenderData;
    override protected function updateDisplayList(width:Number,
    height:Number):void
    super.updateDisplayList(width, height);
    var g:Graphics = graphics;
    g.clear();
    g.moveTo(width,height);
    g.beginFill(0xFF0000);
    for (var index:String in _data.filteredCache)
    var item:AreaSeriesItem = _data.filteredCache[index];
    g.lineTo(item.x, item.y);
    g.endFill();
    I'd still like to know if you get the source code to the
    charting package though.

  • Session Replication doesn't work when using a custom Unicast Channel

    Hello!
    After configure a WLS Cluster for an WebApp with session replication support enabled I faced some issues with cluster configuration.
    My LAB env used for this configurations is:
    One Solaris 10 SPARC box.
    -- One WLS 11g (10.3.6) domain with:
    ---- 4 Managed servers:
    ---- Admin server
    ---- server-1
    ---- server-2
    ---- Proxy Server (HttpClusterServlet)
    --- 1 Cluster composed by:
    ---- server-1
    ---- server-2In that setup I noticed if I define a custom network channel for servers ( server>protocols>channels ) in the cluster and set Cluster Messaging Mode as Unicast* in the Cluster config ( Cluster>Configuration>Messaging>Messaging Mode ), so the session state replication does not work.
    When I enable the cluster replication debug for managed servers the following messages appears:
    <> <> <1358966729933> <BEA-000000> <[roid:-1772481434088297851] Creating primary for application key /webapp>
    ####<Jan 23, 2013 4:45:29 PM BRST> <Debug> <ReplicationDetails> <de25503> <server-1> <[ACTIVE] ExecuteThread: '5' for queue: > 'weblogic.kernel.Default (self-tuning)'> <<ano
    nymous>> <> <> <1358966729958> <BEA-000000> *<Has secondary servers? false>*
    ####<Jan 23, 2013 4:45:29 PM BRST> <Debug> <ReplicationDetails> <de25503> <server-1> <[ACTIVE] ExecuteThread: '5' for queue: >'weblogic.kernel.Default (self-tuning)'> <<ano
    nymous>> <> <> <1358966729959> <BEA-000000> *<Current secondary server? null>*
    ####<Jan 23, 2013 4:45:29 PM BRST> <Debug> <Replication> <de25503> <server-1> <[ACTIVE] ExecuteThread: '5' for queue: >'weblogic.kernel.Default (self-tuning)'> <<anonymous>
    <> <> <1358966729959> <BEA-000000> <[roid:-1772481434088297851] Unable to create secondary on null>
    ####<Jan 23, 2013 4:45:31 PM BRST> <Debug> <ReplicationDetails> <de25503> <server-1> <[ACTIVE] ExecuteThread: '5' for queue: >'weblogic.kernel.Default (self-tuning)'> After eliminate all possible issues with my webapp (serialization, weblogic descriptor configuration, etc) and try many cluster network configurations I noticed that this problem only occurs when I use Unicast for Cluster's Messaging.
    At the end of the day I really would like to understand why the session replication only works for Cluster's Messaging using Multicast mode. I read a lot the WLS docs (specifically the cluster/network topics) [1][2], but I can't find an official explanation about this.
    Can someone help me understand this behavior?
    Many thanks.
    [1] http://docs.oracle.com/cd/E15523_01/web.1111/e13701/network.htm
    [2] http://docs.oracle.com/cd/E15523_01/web.1111/e13709/setup.htm

    I have Fluxbox started with Slim and .xinitrc. Dbus works only with:
    exec ck-launch-session startfluxbox
    you need run Openbox with ck-launch-session:
    exec ck-launch-session openbox-session
    Bye!!

  • Error while creating a customer

    Hi All,
    While creating a customer my client is getting an error message "Specify reference account number-Message no.F2065".
    Thanks in advance.
    Ramesh.

    Hi Dear,
    When ever creating the customer master you must select account Group
    1.Ex: Local, Foreign or One time customer etc. check which group your selecting here.
    2. Specify company code
    3. Specify Sales Area
    4. Also check common Master data for  Distribution channel  and Division
    MENUPATH: SPRO - IMG - SD - MASTER DATA - Define COMMON Dist Chanl & Divsion.
    Regards,
    MH

  • I would like to create a custom datagridview column containing text images and MS Word OLE objects

    I am an old time LabView programmer going back to 2.0.  But moved on with my career several years ago.  But here I am back attempting a custom column in dataviewgrid control.  .NET is hard.  My goal is to read in an MS Word document and parse it out to a custom column.  The column will contain regular old text, images and MS Word objects, sometimes called OLE objects.
    There is scant information on creating .NET and labview when it comes to form manipulation.  I have stuggled through the learning curve and now able to insert a text box column into a datagridview and add it to the form container and actually size it to the datagridview control.  I've added a menu, but still figuring out the layout class.  Did I say .NET is hard?
    I know there must be a custom column created and even found a C# example, sorta.  Trouble is the example uses easy stuff like override and private.  It will take me another 3 weeks for that, darnit I'm getting lazy.
    Does anybody out there have some example of a custom column in the datagridview?
    If you ask to post code.  I have nothing I would be proud to show.
    The sorta go by: http://www.codeproject.com/Articles/31823/RichTextBox-Cell-in-a-DataGridView

    This is what the progress looks like so far.  I broke the tasks down in sub VIs.  One to create a custom cell so I can add it to the column CellTemplate.  The other to add the column to the control.  My limited knowledge of .NET and the implementation in LV causes me to question the value of LV .NET.
    The coding to create a TextBoxCell override with ImageCell CellTemplate.  Honestly I'm guessing what to do, because the LV documentation on inheritance and overriding is poor at best.
    The column coding to add the cell to the custom column.
    Probe 19 always comes up with an error.  The error is the standard 1172 with no clue what is causing it.  The "index" will work on 0 or 1, I suspect bc the two cell types are 0 and 1 but nothing tells me that, just guessing.

  • " Could not create SSL/TLS secure channel " error with Webtest of VS 2013

    hello !
    I want to test my mvc web project with webtest tools of VS 2013 and I Record a test with Internet Explorer
    but when I run test appear this error for me at result of test run : Could not create SSL/TLS secure channel
    for some requested url , but i watch requests in developer tools of chrome browser and I don't see this error.
    i have ssl certificate on the server.
    thanks 

    Hi ArashGhf,
    >>but when I run test appear this error for me at result of test run : Could not create SSL/TLS secure channel
    Based on the error message, it looks like it might be a problem with your certificate not being set up correctly for web performance test.
    Therefore, I suggest you could refer the autom8dTest's suggestion to convert the Web performance test to coded web performance test and then add the WebTestRequest ClientCertificates property to the ClientCertificates collection after the request
    is set up.
    For more information, please refer to it.
    https://social.msdn.microsoft.com/Forums/en-US/49e8d188-90c3-4d72-b387-10b1d1adc4a0/ssl-in-webtests-request-failed?forum=vstswebtest
    Hope it help you!
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Create a custom widget

    I would like to create a "component" -- basically a drop-down menu.  Except that my drop-down menu will not select an item when a user clicks on it.  The user must click on it for 2 seconds and then it will be selected.  How can I create this custom widget/component?

    Thanks for your reply.  I was looking at AS 3 classes and in particular the Spark class DropDownList.  I am thinking of creating a class that extends from DropDownList.  Then overriding some method that will allow me to implement exactly when something should be selected (not just a click of the mouse but when the mouse is held down for 2 seconds).  I am just having trouble finding which method this would be, maybe a public or private method or an event.  I'm such a noob at this I'm sure this is obvious and either someone already knows it or it will catch their eye very quickly.  This is the link to the DropDownList in case someone wants to take a glance at it: class http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/DropDo wnList.html   I appreciate all your help.

  • Created a custom sound. How to save this "instrument" as a preset in Logic?

    I have created a custom sound using the ES2 plugin and I have added some effects to it. How do I save this new "instrument" as a preset? and can I chose what folder to put it in/create a new one?
    Thanks in advance,
    Chuck

    If you want to save an instrument patch together with plugins and so on, you should save it as a channel strip.
    Use the channel strip menu at the top of the channel object. There is a defined directory for user channel strips, but you can create folders within it and organise your channel strip settings as you like.
    These settings will show up in the channel strip menu, and the media browser too.

  • I'm having trouble getting a custom JPanel to display correctly...

    HI, I'm having trouble getting a custom JPanel to display correctly. I'm using the JPanel inside a JFrame to display some really custom graphs. The graphing side of this whole thing works flawlessly. The problem I'm having is that when I close the JFrame by using setVisible(false); and then openning it again using setVisible(true); all the information on it is garbage. There are buttons from the JFrame which orgininally opened it and it has trouble openning a second graph if I choose too. I also have the same problem if i move the frame off the screen and move it back. I'd really appreciate any help.
    Thanks!

    With option #1 -- I modified and rebuilt the 3rd-party JARs and referenced them in NetBeans. When I choose clean and build, the Ant processes results in an error: "jarsigner returns 1". So it doesn't seem to run at all.As long as you rebuilt the jars correctly without the original signature, I think it should work.
    An example of unsigning a jar using ant is here:
    http://frank.zinepal.com/unsign-a-jar-with-ant
    Do you think the multiple-JNLP idea would work if NetBeans didn't apply "my" signature to the 3rd-party JARs? Aside from manually copying the original JARs into the \dist directory, is there a better way to tell NetBeans to leave the 3rd-party JAR alone (ie, don't sign it again)?I think it's supposed to work (it's the mixed code signing situation I referred to in my prior post).
    For example, from your description it sounds like the default NetBeans build doesn't really support this style of deployment, so you would have to create a custom build which does what you need and is not triggered by NetBeans - which is doable, but annoying - it's sounds like you tried this, but were unable to get it to work as expected. For NetBeans specific help, you are better posting to a NetBeans forum (though you might be just the second person who has tried to do this with a JavaFX app).
    Also need to check the end user experience is acceptable too, because I think the dialog and warning handling for the mixed code situation is different.
    Look at the deployment guide section "Using <fx:resources> for Extension Descriptors" - I think it documents how to do what you want if you use a custom build file rather than letting NetBeans do the work:
    http://docs.oracle.com/javafx/2/deployment/javafx_ant_task_reference002.htm#CIABGCEE
    Hmm, a lot of running around to deploy an app which can open a file . . .

  • End User Doc. Create / Change Customer Master Data

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. >
    Hi Experts,
    I would appreciate, if anyone of you could forward me the end user documents for creating & changing customer master data.
    sonicasmailbox at rediff
    Points will be assigned.
    Regards
    Sonica

    Hi
    Refer to help.sap.com for creating customer master data.
    Copy this to word document and it will be become user manual.
    http://help.sap.com/saphelp_ides/helpdata/en/47/ef8c64124811d2806f0000e8a495b3/content.htm
    Additionally refer to this weblink
    http://web.mit.edu/cao/www/AR/ar1/ar_FD01.htm - This if for FICO only.
    Changing customer master record.
    Use T.Code XD02.
    Enter Customer No,Company code,Sales Org, Distribution channel and division and press Enter or
    Enter Customer no,company code and click on customer's sales area, you will see Sales Org, Distribution channel and division,select the Sales org,Sales Org, Distribution channel and division and press enter.
    You can make necessary changes to customer master
    Please let me know if you need more information.
    Asssign points if useful.
    Regards
    Sridhar M

  • Migration manager forgets to import custom IAC channel settings

    it looks after "migrating settings" from 10.5.8 to 10.6 that the Migration manager forgets to import custom IAC channel settings.
    cananybody tell me where they are stored and which files i would have to manually copy or do i have to re-create those IAC channels by hand?
    thanks for any input...

    Hi
    The value of the Channel Strip volume etc is not stored within the C Strip setting, as you have discovered.
    If you really wanted, you could add a Gain plug to the strip, with it set to give the correct output level with the Fader set to 0
    (Or just set the fader manually in MS)
    CCT

  • Trouble creating content presenter template

    I'm trying to create a template for the content presenter that will display a table view of files in a folder.
    I tried creating a custom template based off the sample list-detailed-tabular-view.jsff that was included. but I am having trouble figuring out what my error is.
    When I export the template I can successfully upload it to webcenter but when I try to apply the template to a content presenter the page goes blank and I have to go back to administration to disable the template to get the page to load again.
    After several failed attempts I even tried copying the sample table template directly without changing any of the code but when I apply it the page still goes blank and becomes inaccessible
    This only happens when I try to create a template that calls another single template. I was able to get a template working that was for a single item, but I need to get the documents under a folder to work...
    How can I troubleshoot whats causing the error? I am new so I have a feeling I may be missing some steps when creating,exporting, or uploading the template.
    Below are the sources for the 2 templates, do I have to create anything else besides a .jsff file?
    Single Item which works by it self:
    <?xml version = '1.0'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:dt="http://xmlns.oracle.com/webcenter/content/templates">
    <dt:contentTemplateDef var="node">
    <af:goImageLink text="#{node.name}"
    id="gil1" icon="#{node.primaryProperty.icon.smallIcon}"
    destination="#{node.primaryProperty.url}"
    targetFrame="_blank"
    shortDesc="#{not empty node.propertyMap['xComments'].value.stringValue ? node.propertyMap['xComments'].value.stringValue : node.primaryProperty.value.binaryValue.name}"
    rendered="#{not empty node}">
    <af:showPopupBehavior triggerType="mouseOver" popupId="::cpPopup"/>
    </af:goImageLink>
    <af:outputText id="emptyot" value="#{templateBundle.EMPTY_NODE}"
    rendered="#{empty node}"/>
    </dt:contentTemplateDef>
    </jsp:root>
    The Table Template that calls the single item (this is what seems to break the page when I activate it)
    <?xml version='1.0' encoding='utf-8'?>
    <!-- Test -->
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:dt="http://xmlns.oracle.com/webcenter/content/templates">
    <dt:contentListTemplateDef var="nodes">
    <jsp:include page="./support/miniView.jsff"/>
    <af:table rowSelection="none" columnSelection="none" columnStretching="column:c1"
    columnBandingInterval="0" rowBandingInterval="1" var="node" value="#{nodes}"
    summary="#{templateBundle.DEFAULT_TABULAR_LIST_TEMPLATE_DESC}" id="tblRslt"
    emptyText="#{templateBundle.EMPTY_NODES}" styleClass="AFStretchWidth"
    autoHeightRows="25">
    <af:column id="c1a" rowHeader="unstyled"
    headerText="#{null}"
    rendered="#{userPreferences.accessibilityMode=='screenReader'}">
    <af:outputText value="#{node.name}" id="ot1"/>
    </af:column>
    <af:column headerText="#{templateBundle.COLUMN_DOCUMENT}"
    sortable="true" align="left" minimumWidth="200"
    sortProperty="name" id="c1">
    <dt:contentTemplate node="#{node}"
    view="keith.list.item"
    nodesHint="#{nodes}" id="ct1"/>
    </af:column>
    <af:column headerText="#{templateBundle.COLUMN_MODIFIED_DATE}"
    sortProperty="modifiedDate" sortable="true" align="end"
    id="c2">
    <af:outputText value="#{node.modifiedDate}" id="ot2">
    <af:convertDateTime type="both"
    timeZone="#{generalSettings.userTimeZone}"/>
    </af:outputText>
    </af:column>
    <af:column headerText="#{templateBundle.COLUMN_MODIFIED_USERNAME}"
    sortProperty="modifiedBy" sortable="true" align="end"
    id="c3">
    <af:outputText value="#{node.modifiedBy}" id="ot3"/>
    </af:column>
    </af:table>
    </dt:contentListTemplateDef>
    </jsp:root>
    Also if anyone knows where I can find tutorials to learn how to create the templates that would be great.

    You may want to repost your question in the WebCenter Portal forum. The problem is likely not on the Content Server side.

Maybe you are looking for

  • Open url in a new browser via a button

    I have created a button within a region and set request='go'. I then have a branch that when request='go', it branches to a url. Is there a way to open a new window when it branches to that url? Basically, I'm trying to open a new browser to go to a

  • Process Controlled Workflow - PO approval badi implementaion missing

    Hi  , We are working in Purchase Order approval Workflow  (WS40000014). This is the given scenario  After each approval, total dollar amount of purchase order will be compared with Approval limit of approver maintained in the Position in the SRM Org

  • What SSD For Macbook Late 2007

    Hi all. As a second Mac ive just bought a second hand Macbook 2.2Ghz Core2Duo late 2007 model odd a friend for a very reasonable price. Ive already ordered some RAM to max it out as it only has the stock 1GB and 160Gb HDD. to go with the ram i would

  • Iphone will not turn on unless plugged into outlet, and then says activation needed

    It worked fine before class, when I left class to check my phone, it wouln't turn on. If I plug it into the wall outlet and it shows the red battery indicating it has no charge, then goes to the apple logo screen for a few minutes before turning on a

  • Distributed transaction (JDBC+JMS), durable MDB, NullPointException in weblogic

              I am cross posting to transaction & jms, sorry if this is a mistake...           We have a setup where JMS messages are published to a topic. The posting is transacted           (XA) and is a consequence of a CMP update so JMS and JDBC (Ora