In Identity TVM registration, Instead of redirecting the user to Identity TVM register.jsp to register, can I directly get username and password of user through my application(Because user must register to use my application) and send them to Identity TVM registration to get registered. If yes, how to do it?
AWS Identity TVM registration from android
244 Views Asked by Prabhu M At
1
There are 1 best solutions below
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in AMAZON-WEB-SERVICES
- "Access Denied" - User's Permissions to S3 Bucket
- Cohort analysis with Amazon Redshift / PostgreSQL
- Using Amazon KMS service on Heroku
- can't ssh in after cloning an EC2 instance on Amazon AWS
- Using HDFS with Apache Spark on Amazon EC2
- How can I access Mule ESB Community edition via browser?
- AWS EC2: Migrating from Windows to Linux Server
- AWS ELB Load Balancer: is it possible to set multiple session cookies?
- AWS Flow Framework: Can we run activity worker and activity task on different EC2 instances
- Unable to access files from public s3 bucket with boto
- Cloudfront stream only part of the video
- s3cmd not working as cron-task when echos/dates are added
- How to deploy django 1.8 on Elastic Beanstalk using Docker
- InstanceProfile is required for creating cluster - create python function to install module
- How to fix WordPress HTTPS issues when behind an Amazon Load Balancer?
Related Questions in IDENTITY
- LDAP Directory Synchronization Tools
- how google manage one account for multiple sites like Youtube, google drive, gmail
- Bulk User Creation in OwinContext (Performance)
- The page isn't redirecting properly when use Roles in Aothorizee
- Trying to rename several account types at once based on current displayName
- GetOwinContext through WCF throw nullreferenceException
- Checking objects for identity and Sonar issues
- MySql 5.5.40 stored procedure @@Identity
- Merge IdentityDbContext and DbContext ASP.NET MVC
- How to detect if the List contains itself in Java
- SQL : Accessing identity column value for current insertion
- How does the method Initialize(); work in the membership.cs class of asp.net?
- T-SQL Identity Seed Expression
- Syncope CSV connector not creating users
- Error When Converting Project from Code-first to Database-First
Related Questions in TVM
- iOS - Amazon s3 client using temporary credentials
- How to fix error that occurred while building CXX object CMakeFiles/tvm_objs.dir/src/target/llvm/codegen_llvm.cc.o?
- Clarification in understanding TorchScripts and JIT on PyTorch
- Compile tvm with bazel can't involve llvm
- MobilenetV3 Top 5 Accuracy issue
- AWS S3 Request Fails with credentials obtained from TVM Client
- AWS Identity Token Vending Machine - Android Code Error
- Amazon S3 - Token Vending Machines/IAM
- P/Y C/Y - Calculate future value (FV) from payments (PMT) with compounding period per year (C/Y)
- AWS Identity TVM registration from android
- import readline segfaults after import TVM on Ubuntu
- JSON parsing for tvm autotune output results in error
- GLBCX not found when importing TVM
- How can I cross-compile TVM for RISC-V on x86 Ubuntu 22.04.2 using LLVM and GCC toolchain?
- where to Start out with the TVM-VTA "versatile tensor accelerator"
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I had the same problem. The answer I came up with is to send an HTTP Post request from within your app that replicates what happens on the registration form.
You will need to create a new layout that captures the username and password (I copied the file login_menu.xml, renamed it register_menu.xml and changed some of the widget ids)
In the original Login.java file I changed the onclick action for the Register button to redirect to a new Activity that I called Register.java
In Register.java I use the register_menu.xml as the layout file and when a person clicks the register button the following code is run (It gets run from within an AsyncTask):
I picked up some of the code from other StackOverflow posts about how to generate an HTTP Post using Java (Java - sending HTTP parameters via POST method easily) and from the Android Dev site about network connection best practices (http://developer.android.com/training/basics/network-ops/connecting.html)
This should help you get started on your own implementation.