577 Topics

Member Avatar for
Member Avatar for Rajesh5575

Hi all, I recently moved south to Bangalore and I am working for a large software integrator mainly testing. My project team is working on web service project. We plan to use an open source software like soapUI now. Are you able to point me to online and offline resources/trainings …

Member Avatar for dheeraj0
0
69
Member Avatar for timaquerra

Hello, I made Web Service which connect to database and retrieve data. Web service works file, I can connect to database and get data, here is my code: [CODE] package mypack; import javax.jws.WebService; import javax.jws.WebMethod; import java.util.*; import java.sql.*; import getInfo.*; /** * * @author Aziz */ @WebService() public class …

0
64
Member Avatar for Carrots

Hi, I would like to display an RSS feed from a website on my website, but I want to hand code a solution rather than use a widget. Basically this is a learning task I have set myself. My question is how can I load the RSS feeds into a …

Member Avatar for pritaeas
0
106
Member Avatar for rudz

how can i set my homepage its index.html i want to change it to home.asp please can someone help urgent

0
66
Member Avatar for SKANK!!!!!

[URL="http://beta.feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.socialemo.com%2Frss.php"]http://beta.feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.socialemo.com%2Frss.php[/URL] that is what the error is my basicaly exact code is: [URL="http://www.ibm.com/developerworks/library/x-phprss/"]http://www.ibm.com/developerworks/library/x-phprss/[/URL] how do i get it to work?

Member Avatar for SKANK!!!!!
0
128
Member Avatar for veledrom

Hi, Can anyone help me converting this wsdl 1.1 file into 2.0. Thanks [code] <?xml version ="1.0" encoding ="UTF-8" ?> <definitions name="Catalog" targetNamespace="http://localhost/apache/soap6/catalog.wsdl" xmlns:tns="http://localhost/apache/soap6/catalog.wsdl" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/"> <message name="getCatalogRequest"> <part name="Symbol" type="xsd:string"/> </message> <message name="getCatalogResponse"> <part name="Result" type="xsd:string"/> </message> <portType name="CatalogPortType"> <operation name="getMyCatalog"> <input message="tns:getCatalogRequest"/> <output message="tns:getCatalogResponse"/> </operation> …

0
63
Member Avatar for nsr

hi all. I have created a java web project to make a servlet in NetBeans6.7.1, using Tomcat 6.0.16 App Server. The Web Service reference doesnt not show the operations and gives the following error. The web service works fine though. A solution is to add xerces file to the runtime …

0
134
Member Avatar for capitanf

Hi I was wondering... how can I publish a web service but only to few client programs? I thought maybe a solution is simple apache access (for restful service) but maybe it's another way..? thanks in advance

0
104
Member Avatar for dhanya_piit

hey, can any one tell me whether i can write methods other than getxm or put xml in restful web services.If yes then which will be the first function to be called

Member Avatar for klactose
0
92
Member Avatar for Namibnat

I am trying to create an RSS feed dynamically with php, and for the most part it seems to work out right. When I try to validate, it gives me an error with this line: [CODE]<link><a href='index.php?tt=Getting it all together&m=1'>Getting it all together</a></link>[/CODE] And it points to the = between …

Member Avatar for Elbudster
0
141
Member Avatar for veledrom

Hi, I need an php soap example that should run on my local wampserver. Also, wsdl file should be in my www/mytest folder with server and client php files. Not outsourced. I tried a lot from web but they all outsource wsdl in their servers. Thanks in advance

Member Avatar for network18
0
106
Member Avatar for daniyalnawaz

I want integrate following apis in my website, 1. Yahoo BBAuth 2. Google OAuth 3. Live ID Delegated Authentication 4. Facebook Connect Does these facilities enable me to get their email addresses as i cant find any mention of email address of the logged user in the API documentations.

Member Avatar for pritaeas
0
141
Member Avatar for SuntechWebsites

I am trying to set up an RSS feed but am getting an error in IE that says "Explorer does not support feeds with DTDs" Firefox starts a download. any ideas?

Member Avatar for SuntechWebsites
0
118
Member Avatar for julseypart

hi, i am trying to retreive data from a sharepoint list but its returns all columns such as ows_MetaInfo, ows__ModerationStatus ,ows__Level ows_ID ,ows_owshiddenversion, ows_UniqueId ,ows_FSObjType rather than just the fields i want from the list. I thought the "<IncludeMandatoryColumns>FALSE</IncludeMandatoryColumns> tag would filter these colums out Can any1 help? heres my …

0
97
Member Avatar for dhanya_piit

[code=java]/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Programs; import java.util.ArrayList; import javax.ws.rs.core.Context; import javax.ws.rs.core.UriInfo; import javax.ws.rs.Consumes; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.GET; import javax.ws.rs.Produces; import java.util.List; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import …

Member Avatar for peter_budo
-1
92
Member Avatar for dhanya_piit

hi, am using netbeans to write restful web services. I want to pass an input and the again retrieve it and display the out put in XML form. i am giving the path as @Path("book\{name}\{author}") and using it as an argument [code]public Book getxml(@PathParam("zip") String zip,@PathParam("div") String div) { }[/code] …

0
75
Member Avatar for moin123

i jus want to submit Rss feed to google... i am not sure how to do it.plz help me <FAKE SIGNATURE>

Member Avatar for sylstain
0
147
Member Avatar for InsightsDigital

I read on a blog about how RSS may be out. I dont know about you but I actually subscribe to many blogs and I look forward to reading or at least glancing my Google Reader's headlines. Yes, I dont have time for all the feeds but I do scan …

Member Avatar for MktgRob
0
183
Member Avatar for vishugs

Hi, iam new to webservices.I have to develop JAX-WS Webservices on JBoss 4.2.3GA AServer JBossWS -native 3.x.I have downloaded net beans and JBoss 4.x Aserver.I want to clarify .. 1. Do i need to configure or do something with JBossWS-native 3.x,bcoz in netbeans i selected the path for JBoss server …

0
71
Member Avatar for wewehalim

Hi, this is my final project. I have generated an xml string, this is my code: [code]import java.io.StringReader; import java.io.IOException; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.w3c.dom.CharacterData; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import org.xml.sax.InputSource; <%@ page import="javax.xml.parsers.*" %> <%@ page import="org.w3c.dom.*" %> <%@ page import="java.io.*" %> <%@page import="recipe.*" …

Member Avatar for vishugs
0
400
Member Avatar for nschessnerd

Hi, I have the following redirect: /lb/v/fast -> viewboard.php?c=fast by doing RewriteRule ^v/([^?].*)?(.*)$ viewboard.php?c=$1&$2 [L] as you can see i try to also add the GET data... but its not working ie if i go to /lb/v/fast?view=1 it only copies the fast part over does anyone know how to fix …

0
89
Member Avatar for dhanya_piit

Can anyone please post a link where i can get some codes/demos for restful web services.plz reply asap

Member Avatar for pritaeas
0
103
Member Avatar for celltechgsm

Hello all master, Any one can help me can make procedure or guide putting executable file on a webpage ...? thank you .. br, celltechgsm

Member Avatar for pritaeas
0
75
Member Avatar for Gredesh

Hello, I've been messing around trying to create a web service and the WSDL xml doc is being very difficult. Can anyone tell me what's wrong with it? When I run the WS-I compliance report it tells me: "[B]Failed[/B] [B]Artifact Targets Analyzed:[/B] The summary result applies to the following artifact …

0
63
Member Avatar for Arsham3

Please recommend a simple reverse proxy server but with good re-write rules engine. Thanks.

0
85
Member Avatar for shug94

Hi guys, I am trying to understand how the web service security headers in SOAP work. I can see that there should be a BinarySecurityToken, a Created and Expires datetime, and a Signature portion. My questions are as follows: - What is the BinarySecurityToken? Is it the entire certificate used …

Member Avatar for yaronn01
0
127
Member Avatar for shankmuchlove

Say if I buy a software like Esperient Creator 3.5, which is an application used to create interactive 3D graphics. Can I convert it into a web based application so that I let multiple clients access the software online? How to convert such an application to a web based application? …

0
55
Member Avatar for chand.

Hi I need to know how we can swap the xml nodes with php. actually I'm working with flash and want to create such a menu in which the images of the menu is come from the xml source. Now user can drag and drop the menu vertically like a …

Member Avatar for zackyz
0
114
Member Avatar for Isiak

Please I need people assistance in resolving this: I'm try to send Some parameters to a remote web service and get parameters as response. I'm just getting nothing in return below is my code: 'I Added the web service through Add Web Refrence on VS2005 and named it RemoteSite [code] …

Member Avatar for sid78669
0
172
Member Avatar for cwarn23

Hi and in a previous discussion I wrote a bot that created informational text articles from the php forum at daniweb. This discussion can be found at [URL="http://www.daniweb.com/forums/thread200918.html"]http://www.daniweb.com/forums/thread200918.html[/URL] However I now have another question due to the great success of my bot. Is it possible for to expand the bot …

Member Avatar for Nick Evan
0
362

The End.