问题标签 [azure-connect]

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.

0 投票
1 回答
639 浏览

azure-mobile-services - Microsoft 帐户上的 Azure 移动服务单点登录

我已经使用 WL api 实现了单点登录,但直到最近我才意识到我需要在此基础上调用 mobileService.login 才能使用 Azure 移动服务的良好身份验证功能。

我跟着这个教程

http://www.windowsazure.com/en-us/develop/mobile/tutorials/single-sign-on-windows-8-js/#add-authentication

并添加了这段代码:

但是在这条线上

我的 session.authentication_token 未定义。(我有一个 access_token)

如果我不通过令牌,每次启动应用程序时都会提示我登录,这违背了集成登录的目的。

有任何想法吗?

0 投票
2 回答
124 浏览

azure - 无法在管理门户中启用 Azure Connect

我是 Windows Azure 平台的新手,我正在尝试设置 Azure 负载测试。我已经设置了存储帐户、托管服务和虚拟网络。但是,我在网络 -> 虚拟网络下找不到连接选项卡。已经安装了用于 VS 2010 的先决条件,即 Windows Azure SDK 和 Windows Azure 工具。我的本地机器操作系统是 64 位 Windows 7。

0 投票
0 回答
897 浏览

node.js - 从 Heroku 上的 Node 应用程序连接到在 Windows Azure 上运行的 MongoDB

我创建了一个使用 mongodb 数据库的节点应用程序,但我不知道如何连接到在虚拟机上运行的数据库。因为穷,我决定把我的mongodb数据库放在Windows Azure上的虚拟机上。我的 Node 应用程序托管在 heroku 服务器上,现在我想将两者连接在一起。如何将节点应用程序连接到 mongodb 数据库?

这是我用来创建我的 mongodb 数据库的指南:http: //docs.mongodb.org/ecosystem/tutorial/install-mongodb-on-linux-in-azure/

我猜当我调用“mongoose.connect([URL])”时,我需要将从上面的指南中获得的连接 URL (mongodb://mongodbrs.cloudapp.net:27018) 放入我的节点应用程序中。这是正确的吗?如果是这样,我将如何使用 Windows azure 虚拟机进行身份验证?

#穷人问题

0 投票
2 回答
657 浏览

azure - Azure 虚拟机中 MS SQL 的性能

我在Azure 虚拟机中安装了SQL Server。打开 1433 端口,在防火墙中创建规则。

之后,我创建了Web 角色并通过Azure Connect连接到 SQL Server 。

所有作品。但是性能很差:虚拟机和 Web 角色之间 ping 500-900 毫秒,简单的存储过程工作 5-7 秒。

  • 如何提高性能?
  • 如果我将使用虚拟网络,性能会提高吗?

解决方案

我创建了虚拟网络,结果是最好的!

0 投票
1 回答
1580 浏览

azure - How to setup Azure Connect?

I'm trying to setup Azure Connect so my worker role in the cloud can access my SQL Server database on my private premises.

I've followed the articles here, here and here, but they all seem outdated.

Furthermore, i'm using Visual Studio 2012, and there is no "Virtual Network" tab on the project properties, on anything related to "Azure Connect".

I'm assuming it's been rebranded as the "Virtual Network" tab in the management portal?

Can anyone help?

0 投票
2 回答
493 浏览

azure-sql-database - 如何为 Windows sql azure 创建 Pear MDB2 sqlsrv 连接?

我想使用 PEAR MDB2 sqlsrv 驱动程序连接 windows sql azure 数据库。

我可以使用这个连接非联合数据库

sqlsrv://username@server:password@server.database.windows.net:1433/mydatabase

但是对于联合数据库,我需要设置

"MultipleActiveResultSets" => 假

这也与连接字符串..

我怎样才能通过这个额外的参数..请帮助我


sqlsrv://username@server:password@server.database.windows.net:1433/mydatabase?op‌​tions="MultipleActiveResultSets=false"

这是发送额外值的正确方法吗?

0 投票
3 回答
13808 浏览

azure - 如何查找或更改我的 Windows Azure 密码和登录名?

这对我来说真的是个大问题 - 丑陋的 UI,我看不到新虚拟机实例的 ssh 连接要求。是否可以更改密码?无法从我的 manage.windowsazure.com 面板输入密码和登录名。

0 投票
1 回答
6360 浏览

authentication - 如何从 Windows azure Active Directory 身份验证的 oauth2.0 身份验证中注销

我们将 auth2.0 用于 Windows azure Active Directory 身份验证,其中身份验证在https://login.microsoftonline.com/login.srf?wa=wsignin1.0&wtrealm= ...... 成功验证后我们正在重定向到我们的网站。为了注销站点,我们删除了我们站点上生成的所有 cookie 并再次重定向到 login.microsoftonline.com/login.srf?wa=wsignin1.0&wtrealm=....... url,但此时我们没有得到任何登录凭据屏幕并使用访问令牌重定向到我们的网站。注销需要什么流程。因为如果我们删除所有 cookie 或关闭浏览器并重新打开站点,并将我们重定向到 login.microsoftonline.com/login.srf?wa=wsignin1.0&wtrealm=........ url。

我们正在使用以下代码进行注销过程

0 投票
1 回答
960 浏览

azure - 在 Windows Azure 上创建两个具有相同专用端口的端点

我有一个在 8080 端口上运行的 apache 服务器。我创建了这个端点:

8080转发到8080

但是当我尝试创建这个时:

80转发到8080

我收到一条错误消息,指出私有端口和协议与另一个端点冲突。如何让两个端点转发到同一个专用端口?

0 投票
1 回答
1018 浏览

ubuntu - Azure Linux 服务器没有响应

我在我的 linux azure 服务器上安装了 Lamp 服务器和 phpmyadmin,但 phpmyadmin 无法正常工作。我重新启动了系统,现在我无法连接到它。腻子返回错误说“连接被拒绝”。即使我无法从命令提示符 ping 此服务器。

这个论坛(http://www.windowsazure.com/en-us/manage/linux/how-to-guides/ssh-into-linux/)也说我必须获得一个私钥进行身份验证。如果是这种情况,我可以从哪里使用我的 Windows 系统获取私钥?任何帮助将不胜感激。