473,662 Members | 2,352 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Transferring membership parameters

Hi everyone,

I have a client who wants a solution for the following problem. I'm not sure
that its possible but I'll ask anyway.

The client has joined godaddy's reseller plan. They've provided him with a
complete working site that can be viewed here:
https://www.securepaynet.net/gdshop/...38541&ci=3271&

Let's call this site 'godaddy's site'

I have no access to the code of the site nor to its database. Actually all I
can do is to add HTML code to some pages.

The client has another ASP base (.NET 3.5) application to which I have full
access (database and ftp). The site implements .NET membership system.

Let's call this site the 'Client Site'.

I need to creat a registration form on Client's Site. The form will
register the new member on both sites concurrently. The part that register
the new member on Client's Site is trivial, but I dont know if its possible
to do so on godaddy's site.

I'd appreciate if someone can inlight me on this issue.

Thanks,
David
Nov 19 '08 #1
1 1424
Hi David,

From your description, you're going to implement a web application which
work as a client, and it need to perform login/authentication against two
applications, one local app that you have API access for the authentication
db, while another application you can only access via browser ,correct?

As for the application which you can only access via webbrowser, I think
you should first try visiting its authentication or registering page to see
how it works, whether it require you to put some image based authenticode.
If not, you can consider writing some code(via the HttpWebRequest class in
.NET) to perform programmtic login or user registering.

Here are some reference about using HttpWebrequest to perform programitc
http post:

#Sample forms authentication test in C#
http://blogs.iis.net/ksingla/archive...uthentication-
test-in-c.aspx

#Working with HttpWebRequest and HttpWebResponse in ASP.NET
http://www.worldofasp.net/aspnet/Tut...with_HttpWebRe
quest_and_HttpW ebResponse_in_A SP.NET_114.aspx

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subs...#notifications.

Note: MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 2 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions. Issues of this
nature are best handled working with a dedicated Microsoft Support Engineer
by contacting Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/en-us/subs.../aa948874.aspx
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: =?Utf-8?B?Z29sZGVucmF 0ZQ==?= <go********@nos pam.nospam>
Subject: Transferring membership parameters
Date: Wed, 19 Nov 2008 15:29:01 -0800
>
Hi everyone,

I have a client who wants a solution for the following problem. I'm not
sure
>that its possible but I'll ask anyway.

The client has joined godaddy's reseller plan. They've provided him with a
complete working site that can be viewed here:
https://www.securepaynet.net/gdshop/...rog_id=438541&
ci=3271&
>
Let's call this site 'godaddy's site'

I have no access to the code of the site nor to its database. Actually all
I
>can do is to add HTML code to some pages.

The client has another ASP base (.NET 3.5) application to which I have
full
>access (database and ftp). The site implements .NET membership system.

Let's call this site the 'Client Site'.

I need to creat a registration form on Client's Site. The form will
register the new member on both sites concurrently. The part that register
the new member on Client's Site is trivial, but I dont know if its
possible
>to do so on godaddy's site.

I'd appreciate if someone can inlight me on this issue.

Thanks,
David
Nov 20 '08 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1539
by: Steven (remove wax and invalid for reply) | last post by:
Hello to all. I'm a member of this non-profit organization: http://www.hitagroup.org/ For several reasons, we need to move our web host and I got volunteered. The person who created it is no longer available; we don't have FTP access (at least for now); and I don't know ASP, only some HTML. So I started to convert the pages to that format. I started by saving an HTML version of the home page, and cleaning it
24
2268
by: Joseph Geretz | last post by:
Up to this point, our application has been using Windows File Sharing to transfer files to and from our application document repository. This approach does not lend itself toward a secure environment and so we are in the process of imposing a WebService gateway between our application client and the repository. (As a starting point, the WebService won't be a richly featured application server; business rules are still implemented in the...
3
2440
by: Morgan | last post by:
Sorry for cross post, forgot to include aspnet in orinal... Thanks in advance for any assistance. I'm in the process of implementing custom RoleProvider & Membership Provider objects and have run into a snag with the Membership Provider. It seems many of the MembershipUser properties are read-only. This seems, well stupid, IMO.
1
2672
by: Andy | last post by:
Hi, I was wondering if someone could advise on if the following is possible. I have one website that is available to the public using Forms authentication and the Membership class, it creates/stores user information in a SQL Server 2005 db. I have another website that will administer the first website, allowing admins to look at all of the users in the db and see specific info from the database.The admin site is more secure than the...
3
3277
by: ryan.mclean | last post by:
Hello everyone, I am wondering, can the membership provider be changed at runtime? Perhaps the connectionStringName? I would like to use a different database based on the server the site is on. I suppose that a custom provider could be used to accomplish this, is there another way?
3
1615
by: =?Utf-8?B?SGFyZHkgV2FuZw==?= | last post by:
Hi all, We currently have our own customer/login tables in our database linked with CustomerID columns of both tables. Some of the requirements of the system are 1) When I validate users, I need to pass more parameters than just username/password, for example customers are created for different clients, so I need to pass our ClientID with username/password together. We build one portal to support multiple clients. 2) When a customer...
0
1567
by: Fendi Baba | last post by:
I need to implement a login system using Asp.net 2.0 login module( membership provider) with password being case insensitive. I wrote a class Accessmembershipprovider.vb and below is my code. Somehow, it does seem that the validate users logic is picking this new code up. Can anyone tell me what I might have missed out? Regards ==================================================>
2
2765
by: GaryDean | last post by:
My ASP.Net application, that uses the SQL Membership Provider, runs fine on my development box (server2003) as long as I use the standard provider. But, in anticipation of deployment to other servers I am attempting to register another provider instance. I'm not sure this is the right deployment choice but I haven't found any guidelines on how to best deploy apps using the SQL Membership provider. I first attached...
8
3757
by: Nick | last post by:
Hi there, Membership.GetNumberOfUsersOnline() works great the first time, then jumps up to the number of users registered in the system. I have tried enumerating through each user individually and checking IsOnline which done likewise, first result was 4, then 22 every time after that and it's only be debugging locally using VS. Either I'm doing something seriously wrong or this function is a
0
8432
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8343
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8856
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8762
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8545
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6185
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5653
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4179
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2762
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.