问题标签 [jaggery-js]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - WSO2 Enterprise Store:从 Javascript 调用服务
我正在测试 Enterprise Store 并设法使用 ws.WSRequest() 从自定义粗略文件调用管理服务;现在我正在尝试使用 $ajax 调用的简单 javascript 代码做同样的事情,我设法调用 172.27.11.44:9443/admin/services/AuthenticationAdmin/getAuthenticatorName 但没有成功调用 172.27.11.44:9443/admin/services/例如 AuthenticationAdmin/login 唯一的区别在于消息有效负载 使用以下消息
我收到以下错误 ArrayIndexOutOfBoundException : 3 但相同的有效负载适用于 SOAP UI 有人能指点一下吗?
javascript - How to delete json element using Jaggery?
Im kind a new to jaggery(http://jaggeryjs.org/) and I'm implementing a sample site using this technology. I have the following file in my file directory
employees.json (note: ignore the validation of the data)
I displayed this data using html table below and i included function to delete the json element within that row itself.
index.jag(note: this is a part of that code)
as you can see my delete function is wrong because i could find any resource document that guid me to delete json element i.
Can some help me to delete this json element using Jaggery.
logging - 更改调试级别 wso2 emm jaggery 应用程序
我正在修改 WSO2 EMM 服务器的 emm jaggery 应用程序,并且我正在尝试查看调试消息,我已经修改了 jaggery.conf 文件中的“logLevel”:“debug”属性,重新启动了服务器但我在 wso2carbon.log 文件中仍然看不到任何内容。
我怎样才能看到这些消息?
我直接在 /repository/deployment/server/jaggeryapps/emm 修改源代码
我会非常感谢你的帮助
加布里埃尔。
wso2 - Error when accessing ESB Proxy with Jaggery WSStub
I created a web service and was able to send requests to it from a serverside Jaggery.js script with no problem. Then I created a WSDL Proxy Service inside WSO2 ESB and tested it using the "Try it!" feature.
After I redirected my serverside script from the original web service to its proxy inside ESB, I got the error in System Logs:
The endpoint reference (EPR) for the Operation not found is /services/BpmAdderProcessProxy.BpmAdderProcessProxyHttpSoap11Endpoint and the WSA Action = urn:anonOutInOpResponse. If this EPR was previously reachable, please contact the server administrator.
To see in detail what was happening I activated the "SOAP Message Tracer" of the ESB. Suddenly my serverside script could access the webservice via my ESB proxy. Then I deactivated the "SOAP Message Tracer" and the error message was back again. Is my serverside script correct? Or does the debugging tool modify behavior of debugged code?
I'm a JavaScript developer. Actually Jaggery and UES are targeted at people like me. I'm not supposed to look inside Java code, am I? Is there a forum where JavaScript developers discuss WSO2 UES and Jaggery?
My serverside code is as follows:
javascript - Firebase JWT AUTH 与 JaggeryJS 服务器端 Javascript(不是 Node.js)
我正在尝试使用服务器端 javascript 语言为 Firebase 身份验证创建 JWT:jaggeryJS。
下面我将概述
- 我创建 JWT 的方法
- 前端响应。
1 我的 JWT 创建方法
HmacSHA256 函数来自 Google 的 CryptoJS 库,Base64.encode 如 [此处][3] 所述,但添加了第二个参数以允许网络安全转义。
2 前端响应。
var dataRef = new Firebase(" https://intense-heat-2343.firebaseio.com ");
var AUTH_TOKEN = "...." //“jwtToken”上方打印的内容
dataRef.auth(AUTH_TOKEN, function(error) { if(error) { console.log("登录失败!", error); } else { console.log("登录成功!"); } });
控制台输出:
登录失败!错误{代码:“INVALID_TOKEN”,堆栈:(...),消息:“INVALID_TOKEN:无法解析身份验证令牌。”}
当我直接传递我的秘密时,我能够成功进行身份验证。任何帮助表示赞赏。谢谢!
mysql - Jaggery.js 中的会话管理
我正在尝试使用Jaggery 框架模块,但我遇到了问题,managing the sessions.
例如,假设用户正在登录然后注销,但即使在那之后,当他在浏览器中按下后退按钮时,也会将用户带回内部页。
在这里,我在单击注销时破坏了会话,session.invalidate();
但随后用户可以遍历回来。
有谁知道如何解决这个问题并管理会话。谢谢 !
mysql - 无法将数据传输到 mySQL 数据库
我有一个signup.jag (粗略的页面)供用户注册。我有一个用于 javascript 验证的signup.js (javascript) 。
我想通过 java 即 jdbc 将用户信息存储在 mysql 数据库中,为此我编写了以下文件名sigunp.java的代码:
但是当我启动jaggery 服务器并提交数据时,它显示错误 404。
jquery - 如何使用 Jaggery 获取 XML 并添加到数据表中
我正在尝试使用 wsrequest 来调用数据服务并将结果显示在数据表中。我已经收到了响应(按照 jaggery docs page 示例),但我真正想要的是接收 XML,然后创建一个表来逐一列出记录。
如何在粗糖中实现这一点?它需要是JSON吗?
javascript - 在javascript中调用一个粗略的数组
我有一个包含数组的 jag 文件。在那个 jag 文件里面我也有一个 javascript 函数,我想做的是调用那个 javascript 里面的数组
在同一个文件中,
我想读取 generateResponse 函数中的数组 typeid 。