Questions tagged [padarn]

Padarn is a small-footprint ASP.NET web server designed for embedded applications.

Padarn is a small-footprint ASP.NET web server designed for embedded applications.

https://www.opennetcf.com/Products/Padarn.aspx

9 questions
1
vote
1 answer

Padarn Requirements for SSL on Windows CE

I am attempting to setup my Padarn site to support SSL, but am receiving an error when I deploy to my WinCE device. The error states: This device does not have the necessary CE image components to support SSL. The vendor of my device (Comfile)…
Jed
  • 10,649
  • 19
  • 81
  • 125
1
vote
1 answer

Padarn Master Pages (or how do I include .aspx pages)

Does Padarn support the concept of .NET Master Pages and/or the concept of Classic ASP #include? I would like to reuse my .aspx pages in other .aspx pages as well as implement a single Header & Footer for the web site. It appears as though Padarn…
Jed
  • 10,649
  • 19
  • 81
  • 125
1
vote
1 answer

Padarn Opennetcf RESTful Services

Hi I'm evaluating Padarn for my project and I implemented a very simple RESTful example(POST & GET). I need Padarn for my WIN CE 5.0 or 6.0 web project and I bought a license. The RESTful service works well, but it's performance is not good…
Taha Arian
  • 21
  • 3
1
vote
1 answer

Padarn OpennetCF Socket Connection is Closed

I'm evaluating Padarn for my project and I'm trying to implement a very simple example. I need Padarn for my WIN CE 5.0 or 6.0 web project and I bought a license This is my configuration part : static void Main(string[] args) { …
Taha Arian
  • 21
  • 3
1
vote
2 answers

Padarn Session for many users

I'm evaluating Padarn for my project and I'm trying to implement a very simple authentication scheme: namespace SampleSite { public class Login : Page { protected void Page_Load(object sender, EventArgs e) { if…
Eduardo Wada
  • 2,606
  • 19
  • 31
0
votes
1 answer

How to deploy a class library project without deploying the project's .dll

In Visual Studio 2008, is there a way to deploy a Class Library Project without deploying the project's DLL? Background: I am using OpenNETCF's Padarn web server. OpenNETCF recommends that we design the Padarn web solution into three different…
Jed
  • 10,649
  • 19
  • 81
  • 125
0
votes
1 answer

Calling Code Behind Methods in Padarn

Does Padarn support the call to methods that exist in the Code Behind from the ASPX page? For example (pseudo): MyPage.cs Code Behind. protected string GetData() { return("Here's the data"); } MyPage.aspx calls the GetData() method that lives in…
Jed
  • 10,649
  • 19
  • 81
  • 125
0
votes
1 answer

Padarn Web Server Project Throwing Exception

I'm testing our OpenNetCF's Padarn Web Server. In one of their Hands-On-Labs (HOL P101), an exception is being thrown at private WebServer m_padarnServer = new WebServer(); The exception reads, "Exception in ConfigSectionHandler". If you have…
Jed
  • 10,649
  • 19
  • 81
  • 125
0
votes
1 answer

Padarn OpenNetCF System.Argument.Exception when starting the server

I'm getting a "OpenNetCf - Argument Exception" when I try to start the server on the desktop (windows 8.1) Srvr = new OpenNETCF.Web.Server.WebServer(); Srvr.Start(); However, I can't see a problem with the config file. Any suggestions would be…