Hi Team,
I am working on a simple Web-hosted form with First Name, Last Name, Email Address, and Territory and Submit Button. Once we click on the Submit button, this information is POST'ed to the JSSP Page which is created and hosted in Adobe Campaign Classic. Now, This JSSP page contains the below code
<%
response.setContentType("text/html;charset=utf-8")
logonEscalation("webapp");
var rcp =
<recipient
_operation="insertOrUpdate"
_key="@email"
xtkschema="nms:recipient"
firstName={request.getParameter("firstName")}
lastName={request.getParameter("lastName")}
email={request.getParameter("email")}
territory={request.getParameter("territory")}>
</recipient>;
xtk.session.Write(rcp);
%>Loading...
<meta http-equiv="refresh" content="1; url=<%= request.getParameter("url")%>">
Issue:-
My Issue here is that I am able to submit the data without any trouble Not getting any error message and data is getting stored on Adobe Campaign DB, But if someone else is trying to post the data, they are getting the error message as below:-
Any thoughts what am I doing wrong here or what could be the reason.
Tagging community champs for any inputs..
Solved! Go to Solution.
Hi,
Change logonEscalation to admin. There are numerous problems here besides:
Thanks,
-Jon
Hi,
Change logonEscalation to admin. There are numerous problems here besides:
Thanks,
-Jon
Hi ,
Thanks for responding. Can you help me with logonEscalation(admin), as the page is getting redirected but no record is getting stored in Adobe Campaign DB. Your help would be really appreciated
Views
Replies
Total Likes
Whats wrong with using a webapp?
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies