Re: TypeError: could not convert 'AP' to type 'GArray_guchar_' when setting property 'NMSettingWireless.ssid'

2013-06-20 Thread Dan Williams
On Thu, 2013-06-20 at 16:52 +0200, Radek Vykydal wrote: > Hello, > > I am failing to construct connection argument for NMGtk.WifiDialog > in Python: > > I don't seem to be able to set 'ssid' property of wireless > setting(marked above): > s_wifi.set_property('ssid', ap.get_ssid()) > > getting:

Re: Interface Alias creation using NetworkManager

2013-06-20 Thread Dan Williams
On Thu, 2013-06-20 at 22:46 +0530, Girish Kumar Shetty wrote: > Dear Experts, > > I am quite new-bie for Network Manager and looking for some > information mentioned below, any help/pointers on these will be a great > help. > >- I am just wondering, Is there a way to create an Alias

Interface Alias creation using NetworkManager

2013-06-20 Thread Girish Kumar Shetty
Dear Experts, I am quite new-bie for Network Manager and looking for some information mentioned below, any help/pointers on these will be a great help. - I am just wondering, Is there a way to create an Alias for interface using Network Manager libraries( I mean, programmatically

Re: how to export wpa_supplicant.conf from networkmanager

2013-06-20 Thread Dan Williams
On Thu, 2013-06-20 at 17:26 +0800, Wayne wrote: > Hi! All, > Sorry to disturb. > I have a wili in office, the ubuntu can connect to it using networkmanger, > but my anroid phone can't. > The wpa_supplicant could be edited to enable the connection, but I don't > know how to write the configuration.

Re: unable to create networkmanager proxy using glib

2013-06-20 Thread Dan Williams
On Thu, 2013-06-20 at 14:26 +0530, satya gowtham kudupudi wrote: > This is c++ code ive written to get Modem capabilities. > > DBusGConnection *connection; > GError * error; > DBusGProxy *proxy; > char ** name_list; > char ** name_list_ptr; > g_type_init(); > error = NULL;

Re: how to export wpa_supplicant.conf from networkmanager

2013-06-20 Thread Pavel Simerda
- Original Message - > From: "Larry Finger" > To: "Wayne" > Cc: networkmanager-list@gnome.org > Sent: Thursday, June 20, 2013 4:48:07 PM > Subject: Re: how to export wpa_supplicant.conf from networkmanager > > On 06/20/2013 09:03 AM, Pavel Simerda wrote: > > - Original Message -

TypeError: could not convert 'AP' to type 'GArray_guchar_' when setting property 'NMSettingWireless.ssid'

2013-06-20 Thread Radek Vykydal
Hello, I am failing to construct connection argument for NMGtk.WifiDialog in Python: from gi.repository import NMGtk from gi.repository import NetworkManager ... snip, snip con = NetworkManager.Connection.new() s_con = NetworkManager.SettingConnection() uuid = NetworkManager.utils_uuid_genera

Re: how to export wpa_supplicant.conf from networkmanager

2013-06-20 Thread Larry Finger
On 06/20/2013 09:03 AM, Pavel Simerda wrote: - Original Message - From: "Wayne" To: networkmanager-list@gnome.org Sent: Thursday, June 20, 2013 11:26:42 AM Subject: how to export wpa_supplicant.conf from networkmanager Hi! All, Sorry to disturb. I have a wili in office, the ubuntu can

minor troubles with openconnect plugin

2013-06-20 Thread Guillaume Rousse
Hello list. I've got minor troubles with either the openconnect plugin, either with the gnome applet, I can't figure which one exactly. Basically, there isn't any 'VPN' section anymore in the applet menu under gnome 3, whereas there used to be. And the configuration menu doesn't allow either

Re: unable to create networkmanager proxy using glib

2013-06-20 Thread Pavel Simerda
- Original Message - > From: "satya gowtham kudupudi" > To: networkmanager-list@gnome.org > Sent: Thursday, June 20, 2013 10:56:45 AM > Subject: unable to create networkmanager proxy using glib > > This is c++ code ive written to get Modem capabilities. > > DBusGConnection *connection; >

Re: how to export wpa_supplicant.conf from networkmanager

2013-06-20 Thread Pavel Simerda
- Original Message - > From: "Wayne" > To: networkmanager-list@gnome.org > Sent: Thursday, June 20, 2013 11:26:42 AM > Subject: how to export wpa_supplicant.conf from networkmanager > > Hi! All, > Sorry to disturb. > I have a wili in office, the ubuntu can connect to it using networkmange

how to export wpa_supplicant.conf from networkmanager

2013-06-20 Thread Wayne
Hi! All, Sorry to disturb. I have a wili in office, the ubuntu can connect to it using networkmanger, but my anroid phone can't. The wpa_supplicant could be edited to enable the connection, but I don't know how to write the configuration. So my question is: could I export the wifi config from netw

unable to create networkmanager proxy using glib

2013-06-20 Thread satya gowtham kudupudi
This is c++ code ive written to get Modem capabilities. DBusGConnection *connection; GError * error; DBusGProxy *proxy; char ** name_list; char ** name_list_ptr; g_type_init(); error = NULL; connection = dbus_g_bus_get(DBUS_BUS_SESSION, &error); if (connection == NU