[android-developers] Re: Acessing web services with ksoap

2008-09-25 Thread Laguiz

hi all, I saw on http://ksoap2.sourceforge.net/ that last news was
posted in 2006... Does ksoap2 is still managed?

On 22 sep, 13:12, Mark Murphy [EMAIL PROTECTED] wrote:
 stanchat wrote:
  I sort of new to this and downloaded the following jars.  Where is the
  actual source code located?  I do not see a package with src and lib.

 http://ksoap2.sourceforge.net/

 Click on either Browse Source (if you want to peruse it online) or SVN
 Access (if you want to do a Subversion checkout) in the navigation bar
 on the left.

 --
 Mark Murphy (a Commons Guy)http://commonsware.com
 _The Busy Coder's Guide to Android Development_ Version 1.2 Published!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Acessing web services with ksoap

2008-09-22 Thread Mark Murphy

stanchat wrote:
 I sort of new to this and downloaded the following jars.  Where is the
 actual source code located?  I do not see a package with src and lib.

http://ksoap2.sourceforge.net/

Click on either Browse Source (if you want to peruse it online) or SVN 
Access (if you want to do a Subversion checkout) in the navigation bar 
on the left.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ Version 1.2 Published!

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Acessing web services with ksoap

2008-09-21 Thread stanchat

Does anyone know the link to get the ksoap2 souce code?

On Sep 10, 2:41 pm, Luciano [EMAIL PROTECTED] wrote:
 In fact I quit using thatksoapmodified library from Tuxpan and I
 used the original ksoap2 library. So I had to modify the source code
 of HttpTransport class:
 Original
             connection =
                 (HttpConnection) Connector.open(
                     url,
                     Connector.READ_WRITE,
                     true);
 Modified
             connection =
                                 (HttpURLConnection) new 
 URL(url).openConnection();

 So it's work!

 On Sep 1, 7:30 am, cbraun75 [EMAIL PROTECTED] wrote:



  Have you solved it? I have the same problem.
  Thanx

  Christian

  On 21 Aug., 07:16, Luciano [EMAIL PROTECTED] wrote:

   Hi all

   I'm usingksoaplibrary modified by Jorge at Tuxpan (http://
   groups.google.com/group/android-developers/msg/4e86059309d7b10f) for
   acessing web services. But now with the new SDK it doesn't work
   anymore because of changes in Apache HTTP Client (http://
   code.google.com/android/migrating/m5-0.9/changes-overview.html#TOC-
   Network). Anyone resolved this issue?

   Thanks in advance,
   Luciano- Hide quoted text -

 - Show quoted text -

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Acessing web services with ksoap

2008-09-21 Thread Mark Murphy

stanchat wrote:
 Does anyone know the link to get the ksoap2 souce code?

http://ksoap2.sourceforge.net/

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
Warescription: All titles, revisions,  ebook formats, just $35/year

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Acessing web services with ksoap

2008-09-21 Thread stanchat

I sort of new to this and downloaded the following jars.  Where is the
actual source code located?  I do not see a package with src and lib.

  ksoap2-j2me-core-2.1.2.jar
  ksoap2-j2me-extras-2.1.2.jar
  ksoap2-j2me-nodeps-2.1.2.jar
  ksoap2-j2se-full-2.1.2.jar

On Sep 21, 3:45 pm, Mark Murphy [EMAIL PROTECTED] wrote:
 stanchat wrote:
  Does anyone know the link to get the ksoap2 souce code?

 http://ksoap2.sourceforge.net/

 --
 Mark Murphy (a Commons Guy)http://commonsware.com
 Warescription: All titles, revisions,  ebook formats, just $35/year
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Acessing web services with ksoap

2008-09-10 Thread Luciano

In fact I quit using that ksoap modified library from Tuxpan and I
used the original ksoap2 library. So I had to modify the source code
of HttpTransport class:
Original
connection =
(HttpConnection) Connector.open(
url,
Connector.READ_WRITE,
true);
Modified
connection =
(HttpURLConnection) new 
URL(url).openConnection();

So it's work!

On Sep 1, 7:30 am, cbraun75 [EMAIL PROTECTED] wrote:
 Have you solved it? I have the same problem.
 Thanx

 Christian

 On 21 Aug., 07:16, Luciano [EMAIL PROTECTED] wrote:

  Hi all

  I'm usingksoaplibrary modified by Jorge at Tuxpan (http://
  groups.google.com/group/android-developers/msg/4e86059309d7b10f) for
  acessing web services. But now with the new SDK it doesn't work
  anymore because of changes in Apache HTTP Client (http://
  code.google.com/android/migrating/m5-0.9/changes-overview.html#TOC-
  Network). Anyone resolved this issue?

  Thanks in advance,
  Luciano
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Acessing web services with ksoap

2008-09-01 Thread cbraun75

Have you solved it? I have the same problem.
Thanx

Christian

On 21 Aug., 07:16, Luciano [EMAIL PROTECTED] wrote:
 Hi all

 I'm usingksoaplibrary modified by Jorge at Tuxpan (http://
 groups.google.com/group/android-developers/msg/4e86059309d7b10f) for
 acessing web services. But now with the new SDK it doesn't work
 anymore because of changes in Apache HTTP Client (http://
 code.google.com/android/migrating/m5-0.9/changes-overview.html#TOC-
 Network). Anyone resolved this issue?

 Thanks in advance,
 Luciano
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---