Hi,

Sounds like you are talking about writing a crawler, basically :-). To
input Username/Password between your app and the web server you will
likely need to construct a Post, containing the UID and Password, to
send to the Roger's Wireless login URL. To get back the info you read
the results of the Post and parse out the info from the returned HTML.
(There may also be ssl involved if you want to keep the uid/pwd
encrypted on the wire).

If you are lucky there might be a web service interface to Roger's
Wireless(Canada) in which case you may be able to use JSON or XML or
something else to wrap up the communications in a more structured
form.

If there is no web services interface and you will be using the
crawler style interface you will use the org.apache.http.* interfaces
to deal with the http communications. These packages are all in the
Android system.

If you have a web services interface you will also use org.w3c.dom.*
interfaces for XML parsing. Of if it is JSON you can use the open-
source json. Interfaces (the sources of which you will need to include
in your app).

The interfaces for the DOM are in the Android system. JSON is not and
will need to be included in your app.


On Dec 22, 9:52 am, Warren <[email protected]> wrote:
> The droidfanz website offers a download section full of unauthorized
> paid app downloads. I found my app there along with about 300 others.
> If you have a popular paid app, you may want to check if yours is
> listed. You can't see inside the site until you register.
>
> I'm seeing a lot of posts with cracked apps being wrongfully offered
> for free or for sale. It is frustrating as a developer because I don't
> want to impose cumbersome anti-theft systems on users. I've always
> taken the approach that it's better not to annoy real, paying users to
> avoid a small amount of theft. But with the amount of similar posts
> lately, it seems that the problem may be worse than what I assumed.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
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

Reply via email to