通过 oracle 形式的其他参数传递特殊值

发布于 2024-10-11 12:05:04 字数 355 浏览 2 评论 0原文

尊敬的先生, 我需要通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谈下烟灰 2024-10-18 12:05:04

使用此格式:

http:///localhost:port/frmservlet?config=portal&otherparams=param1=firstparamvaluehere

由于“otherparams=param1=....”构造,它是一种非典型的 url 语法,但它工作得很好。然后,您需要配置接收表单以将 url 参数分配给表单参数以使其可访问,如下所示:

:参数.param1

如果需要传递多个参数,请使用加号“+”连接。例如:

http:///localhost:port/frmservlet?config=portal&otherparams=param1=firstparamvaluehere+param2=secondparamvaluehere+param3=....

Use this format:

http:///localhost:port/frmservlet?config=portal&otherparams=param1=firstparamvaluehere

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:

:parameter.param1

If you need to pass more than one parameter concatenate with a plus "+" sign. For example:

http:///localhost:port/frmservlet?config=portal&otherparams=param1=firstparamvaluehere+param2=secondparamvaluehere+param3=....
等风也等你 2024-10-18 12:05:04

我会将其作为评论,因为它并不是真正的答案,而是一个建议 - 没有足够的代表来发表评论!

我进行了快速测试,并且能够从参数,其值没有改变。

没有任何其他信息
我会检查注册表 (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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文