• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Liutauras Vilda
  • Ron McLeod
  • Jeanne Boyarsky
  • Paul Clapham
Sheriffs:
  • Junilu Lacar
  • Tim Cooke
Saloon Keepers:
  • Carey Brown
  • Stephan van Hulst
  • Tim Holloway
  • Peter Rooke
  • Himai Minh
Bartenders:
  • Piet Souris
  • Mikalai Zaikin

Network Connectivity Implementation as per JSR 180.

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Greetings all,
I am currently doing some readup on the JSR 180 SIP API
implementation. It clearly defines and describes all about
"javax.microedition.sip" package containing interfaces and
classes implementing SIP functionality.
In the GCF (Generic Connection Framework) to establish
connectivity with remote machine I use the foll.
StreamConnection sc = (StreamConnection) Connector.open("socket://127.0.0.1:9000");
But as per the JSR 180 developers importing javax.microedition.sip
will have to use the Connector.open() method but typecast it of
type SipClientConnection interface as follows:
SipClientConnection scc = (SipClientConnection) Connector.open("sip:alice@company.com:5060");
When I tried this out using J2ME Wireless Toolkit 1.0.4_01 it
compiled fine but I got ClassCastException during runtime which is
quite logical because javax.microedition.io does not know
interface SipClientConnection like it does StreamConnection.
Now I am stuck here wondering what to do?
Any suggesstions, advices, insights would be of great help!
Thanx,
adios & cheers!
LearningCurve.
 
author
Posts: 1436
6
Python TypeScript Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The Sun WTK (v1 or v2) does not implement the SIP API. I do not know any real device that implements this API -- maybe some Motorola devices do though. Does anyone know?
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic