| Crystal Reports Viewer Error (3 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Has anyone ever got this error?: Error: "Unable to find the report in the manifest resources. Please build the project, and try again." If so, does anyone know what might cause this and how to fix it. Thanks guys. Bob Gibilaro NewMusicIndustry.com "Bringing musicians and the web closer together" |
|
| Web Service Client and Session State (4 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hi all, We are trying to build a Windows Application front end to a few Web Services. All seems to work well and accessing the Services via Web References is very easy. The problem comes when we need to maintain a session across method calls. All works fine if we just use IE as the client but in our app the session is lost. What are we missing? Is there something that must be set first to make the... |
|
| WebServices Discovery (14 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hello, I updated my Visual Studio NET from Beta 2 to Release1.0, I must made some changes in order to work with my old projects, the changes did it are update ".resx" files and "web.config" file. After this compile and works fine again. But now, when I try to do an Update Web Reference (that was working fine until now) I get the next error: The document was not recognized as a known document type ... |
|
| Session not showing up? (4 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I have been reading past post on how to enable that proxy class for the cookies...PLease ... What fies does it go in how do you do it in VB? More details. |
|
| ServerVariables (8 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| How could I find out from where the webrequest comes to the webservice? in me.context.servervariables only the Content Lenght is in it.... Thanks in advance Géza |
|
| returning DataSet with text fields from WebService (3 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| If I have a DataSet with a text field in it that is set to " " (just spaces), my webservice returns that field as empty. It isn't empty though. It is some number of characters which happen to be spaces. Is there any way to get the web service to return the spaces? Jaimie |
|
| Overriding Serialization (4 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I have a proxy client class that requires custom serialization/deserialization. Is there another way beside attributes to control the serialization? The XML tags I'd like to use can only be determined at run time. I thought my class could implement ISerializable and override GetObjectData but this doesn't appear to be the case. Thanks, Steve |
|
| WSDL / VB Compiler Problem (3 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I created a web service that reads in all employees from the pubs database. I then return that result in a dataset. This works fine from the browser. I then decided to create a .dll for it to be consumed by ASP.Net forms, I am trying to figure out how to do things programmtically. I used the wsdl.exe to create vb code of the web service. That worked great. The problem is with the VB compiler, when... |
|
| Multiple web services problem (10 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hi all, I have created a C# web services project that contains two web services. Project has been compiled successfully. Now I created a client project and added web reference to the first project; web reference has been added successfully and it is showing both the web services under "localhost" web reference node. But the problem is that I am not able to access one of those two web services. In ... |
|
| Web Services - sort function listing in .asmx? (6 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Does anyone know how to sort (or even manually reorder) the functions listed in a web service? (when browsing the .asmx file) Maybe there's a sensible order to the listing, but i can't figure it out would greatly appreciate a tip. ATS |
|
| Web Service as primative anonymous proxy server (2 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hi, While playing around with Web Services and writing my first few test ones it seemed a fun idea to write a Web Service that guaranteed anonymity for someone who wished to download a file from the web without the hosting site being able to see that person's details, IP address, referer, etc. EG: User U wants file F from server S requests file from WS WS gets F from S hiding all of U's details (I... |
|
| Using Biztalk 2002 to call Web Services (3 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Is there a way to use Biztalk to call web services asynchronously? Thanks for any help or info. |
|
| SQL DB Connection (2 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I am curious if there is another way other than the example shown at http://www.dotnetjunkies.com/quickstart/util/srcview.aspx?path /quickstart/a spplus/samples/webforms/intro/Intro8.src to access the connection string. The way I have been doing it in "traditional" ASP is that I would stuff the connection username password etc into a .asp file and then call it as I need it in an SSI file. I am usi... |
|
| Web Service Authorization question... (2 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hi, In the web.config file you can specify the following directive: .... authorization allow roles " hostname \ group " / deny users "*" / /authorization .... to make sure that only members of a particular group can access the web service in question. What if you have a scenario where several web services (.asmx files) share the same directory ? Is it possible to use the web.config to specify diff... |
|
| WEB Service time-out (2 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I have created a web application that calls a web service that in turn calls a .NET component (.dll). The calculations performed by that component are pretty lengthy and could vary from 1 minute to 1 hour. Generally if the job takes no longer that 10 20 minutes, everything ends successfully. But, if I submit a job for about an hour, I am getting an exception: with the following message: The operat... |
|
| Getting XML from Request in ASP.NET (2 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I'm sending an HTTP request of type "text/xml soap" to an ASPX page. In the ASP world, I could load the request's content into a DOM with code like the following: Set xmlRequestDoc Server.CreateObject("microsoft.xmldom") xmlRequestDoc.Async False xmlRequestDoc.Load (Request) In ASP.NET, however, I can't pass the Request object to Load or LoadXml. Question: in ASP.NET, how do I get the content of t... |
|
| Webservice parameters (5 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I have written a web service that accepts two parameters of string type. For testing purposes, I concatinate them and return the strin back. When I test this web service, it works fine. But when I call from anyother asp file it does not return anything. Later I found out the string values that I am passing from my asp page don't even go inside the web method. I am not sure what is going on here. |
|
| Returning Classes from a Web Method - Final Attempt! Please HELP (4 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| I would like to develop an object in the same way that MS has developed the DataSet object that would allow me to return that object from a Web Method. Currently, returning a user object from a webmethod returns a SOAP object wrapper (created on the client), whereas returning a DataSet object from a webmethod seems to return a DataSet object! I tried over the holidays to get an answer to this ques... |
|
| Get WSDL generator to use existing classes. (3 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Is there a way to get the WSDL generator to use an existing class instead of generating a class with public fields for every type defined in the WSDL file? Keith |
|
| Polymorphic types and wsdl.exe? (4 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hello: I'm running into a problem where classes for XML types defined in the types section of a WSDL document are not being generated. These are types that are not explicitly referenced as parameters or as members of other explicitly defined types. This is a problem if you want to support substitution instances of derived types for base types as the client does not know about the types of possible... |
|
| Dynamic webreferece? (3 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| When making a web reference to a web service, you create a static link/reference to the remote web service. Well, what if you wanted to make this reference dynamic? I'm writing a tiny application that will simply check a POP mailbox for new mail and will notify the user the same way that MSN's Messenger does when you have new hotmail. It's going to reside in the system tray and check at regular in... |
|
| How to identify the caller of a web service? (4 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hello Anyone knows how to identify which application is calling a web service (from inside the web service). Basically I want to customize my web service depending on who (which web application) is calling it. (in other words, I want to grant or deny access of some apps in the Application BeginRequest web service event) Thanks for your suggestions. Jean Marc |
|
| Constructor / Object Initialization Question (5 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hi all. I have what may be a fundamental .NET / Web Services question as I am fairly new to the subject. I've developing a web service in VB.NET that has several methods. On of these methods accepts as a parameter an object. Ideally, I'd like the client to be able to create a new instance of the parameter object, set only those properties that interest them, have the rest of the properties set to ... |
|
| hashtable? (4 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| can i return a hashtable from a web service? how do you serialize a hashtable, or is it even possible jn |
|
| writing to eventlog (2 replies) |
| microsoft.public.dotnet.framework.aspnet.webservices |
| Hi! I have a web service and try to write to application event log.I have changed the worker account to localsystem in machine.cinfig.When I try to write it says "System.Security.SecurityException: Requested registry access is not allowed" Can anyone help me? Thanks |
|