473,657 Members | 2,507 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to deploy "Hello World" webservice on remote site?

I have a simple simple ws that runs fine locally. I'd like to put it up
on a public asp.net website as a test. All of the examples seem to stop
describing the creation of a bare bones ws with a local test. I'm not
sure what I need to put up on the public website, and where they should
be placed.

What I think is, the asmx file and the dll in the bin folder need to go
up to the public website. Is that all? And, where do they go? I guess
the asmx could go almost anywhere, but the dll in currently in the
project bin folder, and I don't think the website needs one of those?

Thanks
Nov 23 '05 #1
4 3871
In article <MP************ ************@ms news.microsoft. com>,
ki**@brick-like.com says...
I have a simple simple ws that runs fine locally. I'd like to put it up
on a public asp.net website as a test. All of the examples seem to stop
describing the creation of a bare bones ws with a local test. I'm not
sure what I need to put up on the public website, and where they should
be placed.

What I think is, the asmx file and the dll in the bin folder need to go
up to the public website. Is that all? And, where do they go? I guess
the asmx could go almost anywhere, but the dll in currently in the
project bin folder, and I don't think the website needs one of those?

Thanks

OK, I boldy went where I have never gone before...appare ntly the
web.config file, the .aspx file, and the bin folder with contents, all
placed in the root dir are sufficient.
Nov 23 '05 #2
In article <MP************ ************@ms news.microsoft. com>,
ki**@brick-like.com says...
I have a simple simple ws that runs fine locally. I'd like to put it up
on a public asp.net website as a test. All of the examples seem to stop
describing the creation of a bare bones ws with a local test. I'm not
sure what I need to put up on the public website, and where they should
be placed.

What I think is, the asmx file and the dll in the bin folder need to go
up to the public website. Is that all? And, where do they go? I guess
the asmx could go almost anywhere, but the dll in currently in the
project bin folder, and I don't think the website needs one of those?

Thanks

OK, I boldy went where I have never gone before...appare ntly the
web.config file, the .aspx file, and the bin folder with contents, all
placed in the root dir are sufficient.
Nov 23 '05 #3
kiln wrote:
In article <MP************ ************@ms news.microsoft. com>,
ki**@brick-like.com says...
I have a simple simple ws that runs fine locally. I'd like to put it up
on a public asp.net website as a test. All of the examples seem to stop
describing the creation of a bare bones ws with a local test. I'm not
sure what I need to put up on the public website, and where they should
be placed.

What I think is, the asmx file and the dll in the bin folder need to go
up to the public website. Is that all? And, where do they go? I guess
the asmx could go almost anywhere, but the dll in currently in the
project bin folder, and I don't think the website needs one of those?

Thanks


OK, I boldy went where I have never gone before...appare ntly the
web.config file, the .aspx file, and the bin folder with contents, all
placed in the root dir are sufficient.


If you're using VS.NET you can simply do a "Copy" under the "Project"
menu ( as long as the remote server is available on your network ). It
will let you automatically copy a whole project ( just the files need to
run the web application ) or just the files you want to update.

Nov 23 '05 #4
kiln wrote:
In article <MP************ ************@ms news.microsoft. com>,
ki**@brick-like.com says...
I have a simple simple ws that runs fine locally. I'd like to put it up
on a public asp.net website as a test. All of the examples seem to stop
describing the creation of a bare bones ws with a local test. I'm not
sure what I need to put up on the public website, and where they should
be placed.

What I think is, the asmx file and the dll in the bin folder need to go
up to the public website. Is that all? And, where do they go? I guess
the asmx could go almost anywhere, but the dll in currently in the
project bin folder, and I don't think the website needs one of those?

Thanks


OK, I boldy went where I have never gone before...appare ntly the
web.config file, the .aspx file, and the bin folder with contents, all
placed in the root dir are sufficient.


If you're using VS.NET you can simply do a "Copy" under the "Project"
menu ( as long as the remote server is available on your network ). It
will let you automatically copy a whole project ( just the files need to
run the web application ) or just the files you want to update.

Nov 23 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2187
by: ME | last post by:
I am trying to find a prewritten method for converting a string like this:"Hello World" to this "Hello\sWorld". I plan to use it to build a regular expression. Specifically I am looking for a method that can convert not just space (\s) but also any character that needs to be escaped in a given string. Thanks, Matt
6
4122
by: Matthew | last post by:
How would I go about creating a simple "hello world" program that will run in Unix. I am using MS Visual C++.
33
5559
by: ankursinha | last post by:
Hi, Is it possible to write a C program that prints "Hello World" on screen without having a single semi-colon in the entire program? The extra constraint here is that u r not allowed to use if,while,switch etc. So far,i figured this could be done by insertint the printf statement in main as shown: int main(int argc=printf("Hello world")
8
7575
by: vijay | last post by:
Hello, As the subject suggests, I need to print the string in the reverse order. I made the following program: # include<stdio.h> struct llnode { char *info;
5
1870
by: Greg Smith | last post by:
I am making the step from windows to web. The final destination is our production server running Server 2003 Web Edition. I am having problems using the BUILD | PUBLISH WEB SITE option. What are the basic steps to publish a simple web site? All examples I can find use the local server. I am looking for something like. 1. Create a "New web site" selecting the "File System" option.
4
6281
by: arnuld | last post by:
i am learning C and doing the exercise 1-1 of K&R2, where K&R ask to remove some parts of programme and experiment with error, so here i go: #include <stdio.h> int main () { printf('hello world\n'); }
0
1479
by: Gerardo Herzig | last post by:
Hi all. Im having some "problems" with a small concurrent plpython function. Based on a small example about concurrent programming, there is some code which works fine under python: #! /usr/bin/python import threading, random import time def myPrint(str):
3
2104
by: =?Utf-8?B?QkM=?= | last post by:
Hello, I just created a Hello World webservice in VB2005 (this is my first webservice ever). I ran it in debug mode and the page that came up said Hello World and said to change the webservice namespace from tempuri.org to something else so that the xml file could be created. I did that. Then it said to make a web reference (say what?) The only web reference I was able to make was to the local solution: Local Host. Then in the...
2
3044
by: Bill H | last post by:
Everyone probably started with the infamous print "hello world" as their 1st program. I am looking for a site online that basically does the same for php & database communication. A site that walks you through the basic fundementals on how to setup and access a simple database so I can experiment and get a feel for it before diving in deep. Is there anyplace like this out there? Bill H
0
8392
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8305
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8732
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8605
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6163
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4151
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.