Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Password Encryption
 Login/Join
 
Member
posted
I created a login page in HTML Layout Painter and i would like to know how to encrypt the input going into a text box.


WebFOCUS 7.6.0
Windows
Output: Excel, HTML and PDF.
 
Posts: 15 | Registered: October 10, 2007Report This Post
Expert
posted Hide Post
<input type="password" name="IBIC_pass" size="20" value="">  


This should do it.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
 
Posts: 2723 | Location: Ann Arbor, MI | Registered: April 05, 2006Report This Post
Member
posted Hide Post
Thanks, that worked. But now when i pass the password back i get an "incorrect login".
do i have to decrypt it?
(i'm new at this can't you tell?)


WebFOCUS 7.6.0
Windows
Output: Excel, HTML and PDF.
 
Posts: 15 | Registered: October 10, 2007Report This Post
Expert
posted Hide Post
No, you don't need to decyrpt it.

Unfortunately, I don't know what else is going on in your environment. Are you logging onto the reporting server? Is the logon page set up correctly. Is OPSYS security turned on for your reporting server?

You might want to talk to your WebFOCUS admin about a couple of these things.

If you are running locally, you shouldn't need to run with security and then you wouldn't have to log on.

Sorry, Tami, but I don't have an easy answer to this one.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
 
Posts: 2723 | Location: Ann Arbor, MI | Registered: April 05, 2006Report This Post
Member
posted Hide Post
Thanks Ginny, i'm happy with the encryption! - i'll try to figure out the rest.
Happy Holidays!


WebFOCUS 7.6.0
Windows
Output: Excel, HTML and PDF.
 
Posts: 15 | Registered: October 10, 2007Report This Post
Expert
posted Hide Post
Tami K,

GOOGLE'd this:

Hide password input with Javascript

Found this:

Password example

Then I viewed source and copied this into WebFOCUS, with a slight modification:

  

<html>
<head>
<title>Keeping Compact Forms Accessible: Example #2: CSS added to markup.</title>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<style type="text/css" media="all">
body {
	font-size: 1em;
	font-family: arial,helvetica,sans-serif;
}

h1 {
	font-size:1.3em;
}

form#login {
	padding:6px;
	position:relative;
}

div#username,
div#password {
	position:relative;
	float:left;
	margin-right:3px;
}

input#username-field,
input#password-field {
	width:10em;
}

div.overlabel label {
	position:absolute;
	top:3px;
	left:5px;
	z-index:1;
	color:#999;
}
</style>

</head>
<body>

<h1>Keeping Compact Forms Accessible: Example #2: CSS added to markup.</h1>

<form id="login" action="#" method="post">
  <div id="username"> 	
    <label for="username-field" class="overlabel">Username</label>
    <input id="username-field" type="text" name="username" title="Username" value="" tabindex="1" />
  </div>
  <div id="password">
    <label for="password-field" class="overlabel">Password</label>
    <input id="password-field" type="password" name="password" title="Password" value="" tabindex="2" />
  </div>
  <div>
    <input type="submit" name="submit" value="Login" tabindex="3" />
  </div>
</form>

</body>
</html>



1st part is css
2nd part the input boxes must be in a form with method=post.

I am not a JSer, but, I tried this on 7.6.4 and it works; need to incorporate into WebFOCUS.


Hope this helps...


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
Member
posted Hide Post
i'll experiment with that, thanks!


WebFOCUS 7.6.0
Windows
Output: Excel, HTML and PDF.
 
Posts: 15 | Registered: October 10, 2007Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders