Questions tagged [wss]

WSS stands for Windows SharePoint Services, SharePoint Server 2007's "little" brother. It forms the basis for the full blown server product. As of SharePoint Server 2010 it is called SharePoint Server Foundation.

https://en.wikipedia.org/wiki/Microsoft_SharePoint_Foundation

695 questions
10
votes
2 answers

WebSocket Error in connection establishment: net::ERR_CONNECTION_CLOSED

I am getting this error when I attempt to establish a wss connection with my server: WebSocket connection to 'wss://mydomain:3000/' failed: Error in connection establishment: net::ERR_CONNECTION_CLOSED I currently have a apache2 virtual host…
crmepham
  • 4,676
  • 19
  • 80
  • 155
10
votes
4 answers

get users by group in sharepoint

can anyone show me how to get the users within a certain group using sharepoint? so i have a list that contains users and or groups. i want to retrieve all users in that list. is there a way to differentiate between whether the list item is a group…
Adyt
  • 1,442
  • 7
  • 26
  • 38
10
votes
4 answers

How to store user-specific data in SharePoint

I have some user-specific data that I need to store in SharePoint and make accessible to the user through custom webparts. Let's say a list of favorite URLs. What would be the most straightforward way to store this information? Some builtin…
Paul-Jan
  • 16,746
  • 1
  • 63
  • 95
9
votes
1 answer

nginx ws invalid URL prefix

First time with nginx. I have a nodejs WebSocket server listening at ws://service_name:3600. I'm using docker-compose: version: "2" services: # stuff service_name: image: imagename ports: - 3600:3600 links: #…
andr
  • 93
  • 2
  • 4
9
votes
2 answers

Firefox can't establish a connection to WSS

I have a websocket server hostet with Spring Boot Websockets. Safari, Chrome and Edge can connect, but Firefox can't. Error: Firefox kann keine Verbindung zu dem Server unter wss://MY_DOMAIN/growth-websocket/933/omw002tp/websocket aufbauen. (=…
Timo Zikeli
  • 166
  • 1
  • 3
  • 7
9
votes
2 answers

How best to convert a SharePoint multi-user field string into an array of SPUsers?

I'm writing an ItemAdding handler for a SharePoint list, and the list contains multi-user fields. Since the SPItem is not actually available at this point, I think I'm relegated to using the string that comes back from the…
Chris Farmer
  • 24,974
  • 34
  • 121
  • 164
9
votes
0 answers

Error with SOAP - uri' option is required in nonWSDL mode

I have the following code error when trying to test communication Web Service: Fatal error: Uncaught SoapFault exception: [Client] SoapClient::SoapClient(): 'uri' option is required in nonWSDL mode in…
Barbatos
  • 101
  • 1
  • 8
9
votes
0 answers

WebSockets TLS ERR_CONNECTION_RESET

I have a WPF app running as a "Server" which sends data to the browser via WebSockets The "Server" sends this data over http://localhost:8181 to my website succesfully. The problem is: I recently updated my website to be accessible over HTTPS but…
user3771123
  • 101
  • 3
9
votes
3 answers

Android library for WSS (Secure Web Socket)

Im trying to connect to WSS (client+server certificate authentication + Corporate Proxy Authentication+Self Signed Certificate Chain) from Android. I tried Autobhan library, Koush AsyncIO, SecureWebSocket, Autobahn library with TLS support And few…
Prasad.CH
  • 492
  • 1
  • 5
  • 25
8
votes
3 answers

Debugging Sharepoint timer jobs

I am creating my first Timer Job and want to debug it. I have installed the timer job through a feature, and added it to a webapplication's JobDefinitions collection, and added a SPMinuteSchedule to run every 5 minutes (for testing purposes). Then,…
Colin
  • 10,630
  • 28
  • 36
8
votes
1 answer

Error in establishing websocket connection

I am using ws npm in the server side, websocket in the client side. When running this code from node-js it works fine, but running it from the browser gives the following error: failed: Error in connection establishment:…
HaYa Abu Al Halawa
  • 257
  • 1
  • 3
  • 11
8
votes
0 answers

Firefox can't establish a connection to the server at wss://my_ip_address

I have an issue with Firefox and WSS. This is my scenario: a web app deployed on a Server A (internal ip: 192.168.x.y) in HTTPS on port 8843 a socket deployed on Server B (internal ip: 192.168.j.k), in HTTPS on the same port 8843 HTTPS are…
Ale C
  • 111
  • 1
  • 4
8
votes
3 answers

RoR 5.0.0 ActionCable wss WebSocket handshake: Unexpected response code: 301

Hello I'm trying to serve a simple chat using ror 5.0.0 beta (with puma) working on production mode (in localhost there are no problems). This is my Nginx configuration: upstream websocket { server 127.0.0.1:28080; } server { listen 443; …
Jim Tebstone
  • 552
  • 6
  • 13
8
votes
2 answers

WSS/TLS websocket connection with Swift iOS

SOLVED (following answer) I am using Starscream library to create a safe websocket wss in the test server we have a self-signed certificate and I find it impossible to make the connection. var socket = WebSocket(url: NSURL(scheme: "wss", host:…
Ch4vi
  • 391
  • 1
  • 5
  • 18
8
votes
4 answers

Update Sharepoint List Item

I got following error... System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.SharePoint.SPListItem.get_UniqueId() at ConsoleApplication1.Program.Main(String[] args) in Program.cs:line 21 running…
K-M
  • 660
  • 3
  • 13
  • 27
1
2
3
46 47