Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Sockets and Internet Protocols
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
Helidon Revealed: A Practical Guide to Oracle’s Microservices Framework
this week in the
Java in General
forum!
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
Tim Cooke
paul wheaton
Liutauras Vilda
Ron McLeod
Sheriffs:
Jeanne Boyarsky
Devaka Cooray
Paul Clapham
Saloon Keepers:
Scott Selikoff
Tim Holloway
Piet Souris
Mikalai Zaikin
Frits Walraven
Bartenders:
Stephan van Hulst
Carey Brown
Forum:
Sockets and Internet Protocols
problem streaming with mms:// protocol
Naveen Mishra
Ranch Hand
Posts: 75
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi All.
I'm trying writng code to download an asf file from the url with protocol
mms://
I'm using javaMMS library for the purpose.
I am not able to establish connection..
my code looks like this one ....
System.setProperty("java.protocol.handler.pkgs", "unclealex"); URL url = new URL("mms://someurl"); //have tried with setting proxy as well ...this way // System.setProperty("http.proxyPort","3128"); // System.setProperty("http.proxyHost","192.168.1.100"); // // and this way also... //SocketAddress addr = new InetSocketAddress("192.168.1.100",3128); //Proxy proxy = new Proxy(Proxy.Type.SOCKS, addr); //URLConnection conn = (MMSConnection)url.openConnection(proxy); // error .. java.lang.UnsupportedOperationException:Method not implemented. URLConnection conn = (MMSConnection)url.openConnection(); // also tried with MMSConnection conn=(MMSConnection)url.openConnection(); // the code works upto this point ... // when attemp to connect is made ..it fails ... conn.connect(); // fails here ... java.io.EOFException : : :
Some hints please ...
Today you are you, that is turer than true. There is no one alive who is youer than you! - Seuss. Tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Https post, through Proxy settings
Proxy behavior freaky
Https post, through Proxy settings
I tried to send an xml to an url its ,
Problem in proxy settings
More...