Connect to a terminalserver farm with session broker


 
Thread Tools Search this Thread
Operating Systems Solaris Connect to a terminalserver farm with session broker
# 1  
Old 10-25-2010
Connect to a terminalserver farm with session broker

Hello...

I've got a problem accessing the Solaris OS using rdesktop on a terminalserver farm with TS Session Broker and W2K8R2 with NLB.

I get the following error message:
Code:
user@xxx [15:42] /h/user/Desktop 150 > rdesktop terminalserver

WARNING: Remote desktop does not support colour depth 24; falling back to 16
WARNING: rdp_in_unistr: iconv fail, errno 88
WARNING: server sent an unexpectedly long string, truncating
Segmentation fault (core dumped)

Does anyone know this problem?

I have the problem with opensolaris, opensuse ...

Many thanks for your help.

Regards Christian

Last edited by Scott; 10-25-2010 at 07:12 AM.. Reason: Please use code tags
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Build Farm

Hi guys, How we can build a build farm? I mean is there any software to do this? (2 Replies)
Discussion started by: majid.merkava
2 Replies

2. Solaris

Difference between the desktop session and console session

what is the difference between desktop session and console session in solaris as i am wondering we use option -text for the former and -nowin for the later (1 Reply)
Discussion started by: kishanreddy
1 Replies

3. Solaris

rdesktop zugriff auf W2K8R2 Farm mit NLB und Session Broke - server sent an unexpectedly long string

Hallo :-) Ich habe da ein Problem beim Zugriff von Solaris mittels rdesktop auf eine TS Farm unter W2K8R2 mit NLB und Session Broker. Ich bekomme folgende Fehlermeldung: user@sunray2xxx /h/user/Desktop 150 > rdesktop terminalserver WARNING: Remote desktop does not support colour... (1 Reply)
Discussion started by: chrischi1978
1 Replies

4. UNIX for Advanced & Expert Users

Xserver connect and run CDE session from Windows PC

Hope someone can help. I have 5 Unix Tru64 ver 4.0/5.1B, boxes and I'm trying to connect and run CDE session from my PC. I have tried using Reflections, and Xming with no luck. Can someone tell me what exactly needs to be running on the Tru64 boxes in order for this to work. Along with what or how... (4 Replies)
Discussion started by: Troberts50
4 Replies

5. Solaris

I am not able to login in gnome session and java session in Sun solaris 9& 10

I am not able to login in gnome session and java session in Sun solaris 9& 10 respectively through xmanager as a nis user, I am able to login in common desktop , but gnome session its not allowing , when I have given login credentials, its coming back to login screen, what shoul I do to allow nis... (0 Replies)
Discussion started by: durgaprasadr13
0 Replies

6. Shell Programming and Scripting

Hiding Directories on a Session by Session basis

Hi, Apologies if anyone has read my recent post on the same subject in the Linux forum, just thought actually the solution might more likely come from scripting. Essentially, I am trying to restrict access to directories based on the user's name AND their location on a session-by-session... (3 Replies)
Discussion started by: en7smb
3 Replies

7. Shell Programming and Scripting

sqlplus session being able to see unix variables session within a script

Hi there. How do I make the DB connection see the parameter variables passed to the unix script ? The code snippet below isn't working properly. sqlplus << EOF user1@db1/pass1 BEGIN PACKAGE1.perform_updates($1,$2,$3); END; EOF Thanks in advance, Abrahao. (2 Replies)
Discussion started by: 435 Gavea
2 Replies
Login or Register to Ask a Question
STOMP_CONNECT(3)							 1							  STOMP_CONNECT(3)

Stomp::__construct - Opens a connection

       Object oriented style (constructor):

SYNOPSIS
public Stomp::__construct ([string $broker = ini_get("stomp.default_broker_uri")], [string $username], [string $password], [array $headers]) DESCRIPTION
Procedural style: resource stomp_connect ([string $broker = ini_get("stomp.default_broker_uri")], [string $username], [string $password], [array $head- ers]) Opens a connection to a stomp compliant Message Broker. PARAMETERS
o $broker - The broker URI o $username - The username. o $password - The password. o $headers -Associative array containing the additional headers (example: receipt). RETURN VALUES
Note A transaction header may be specified, indicating that the message acknowledgment should be part of the named transaction. CHANGELOG
+--------+-----------------------------------+ |Version | | | | | | | Description | | | | +--------+-----------------------------------+ | 1.0.1 | | | | | | | The $headers parameter was added | | | | +--------+-----------------------------------+ EXAMPLES
Example #1 Object oriented style <?php /* connection */ try { $stomp = new Stomp('tcp://localhost:61613'); } catch(StompException $e) { die('Connection failed: ' . $e->getMessage()); } /* close connection */ unset($stomp); ?> Example #2 Procedural style <?php /* connection */ $link = stomp_connect('ssl://localhost:61612'); /* check connection */ if (!$link) { die('Connection failed: ' . stomp_connect_error()); } /* close connection */ stomp_close($link); ?> PHP Documentation Group STOMP_CONNECT(3)