通过 oracle 形式的其他参数传递特殊值
尊敬的先生, 我需要通过 url 传递一些特殊字符。示例 url 如下所示
http:///forms/frmservlet?config=portal&pv_app_user_name=&pv_flg=Y&pv_app_code=&pv_passwd=¤§¸´žf&pv_emailid=&PV_PFLG=Y
您可以吗请查看 pv_passwd 部分。这里我为我的应用程序身份验证传递一些特殊字符。 这里我的问题是,如果我传递这个值(1),它在表单参数中的显示不同。如果我们显示参数值,它会显示一些不同的字符。
我们需要在配置部分进行任何设置吗?您能帮忙解决上述问题吗?
问候 马修
Dear Sir,
I need to pass some special characters through the url. The sample url will look like below
http:///forms/frmservlet?config=portal&pv_app_user_name=&pv_flg=Y&pv_app_code=&pv_passwd=¹¨§¸¯žf&pv_emailid=&PV_PFLG=Y
Can you please have a look on the pv_passwd section.Here i am passing some special characters for my application authentication.
Here my problem is, if i pass this value(¹¨§¸¯žf) , its appearing differently in the forms parameter. if we display the parameter value, its showing some different characters.
Is there any setting we need to do it in the configuration section. can you please help on the above query?
Regards
Mathew
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用此格式:
由于“otherparams=param1=....”构造,它是一种非典型的 url 语法,但它工作得很好。然后,您需要配置接收表单以将 url 参数分配给表单参数以使其可访问,如下所示:
如果需要传递多个参数,请使用加号“+”连接。例如:
Use this format:
It is a non typical url syntax because of 'otherparams=param1=....' construction but it works perfectly. Then you need to configure the receiving form to assing the url parameter to a form parameter to be accesible like this:
If you need to pass more than one parameter concatenate with a plus "+" sign. For example:
(我会将其作为评论,因为它并不是真正的答案,而是一个建议 - 没有足够的代表来发表评论!)
我进行了快速测试,并且能够从参数,其值没有改变。
没有任何其他信息
我会检查注册表 (Windows)
HKEY_LOCAL_MACHINE/SOFTWARE/Oracle/*ORACLE_HOME* (*ORACLE_HOME* 在不同系统上会有所不同 - 通常您需要引用您的开发套件或 Forms 服务器安装的注册表)
键,用于名为 NLS_LANG 的参数。
在 *nix 上,这是一个环境变量 - NLS_LANG。
我的设置为AMERICAN_AMERICA.WE8MSWIN1252。如果您的设置不同,您会得到不同的结果,因为它将使用不同的字符编码。
去字符集吧!
(I would have made this a comment as it isn't really an answer, but a suggestion - not enough rep to comment!)
I ran a quick test, and was able to display this string from a parameter with no change to its value.
Without any other information
I would check the registry (Windows)
HKEY_LOCAL_MACHINE/SOFTWARE/Oracle/*ORACLE_HOME* (*ORACLE_HOME* will be different on different systems - usually you want the one that refers to your development suite or Forms server installation)
key for a parameter called NLS_LANG.
On *nix this is an environment variable - NLS_LANG.
Mine is set to AMERICAN_AMERICA.WE8MSWIN1252. You would have different results if yours is set differently, as it will use different character encoding.
Go character sets!