Difficulty in WS_security

I am using Workshop vesrion 8.1.4. I have coded an application exactly similar to the security.wsse.reqResp.mycompany.MyCompany & security.wsse.reqResp.client.Client in sample directory which comes with Workshop. I am using the exactly the same key store used in the sample. The sample programs work fine, while something I did exactly similar to samples is not working.
The problem is when I run the client, it does not seem to apply the policies resulting in the error
below. I am not sure why it is not applying signature as per the policy file defined for the control used in the client. Thnakful, if some one can help. Can provide more info, if needed. Thnaks.
<faultcode> SOAP-ENV:Client </faultcode>
<faultstring> EJB Exception: ; nested exception is:
com.bea.wlw.runtime.jws.wssecurity.exception.WLWWSSEException: Policy requires Message to be signed, Message was not signed. </faultstring>
<detail>
java.rmi.RemoteException: EJB Exception: ; nested exception is:
com.bea.wlw.runtime.jws.wssecurity.exception.WLWWSSEException: Policy requires Message to be signed, Message was not signed.
at weblogic.ejb20.internal.EJBRuntimeUtils.throwRemoteException(EJBRuntimeUtils.java:102)
On the service side, I have the following jws file:
package security.wsse.reqresp.service;
* @jws:ws-security-service file="MyCompanySecurityPolicy.wsse"
* @common:target-namespace namespace="http://workshop.bea.com/MyCompany"
public class GreetGuest implements com.bea.jws.WebService
static final long serialVersionUID = 1L;
* @common:operation
public String SayHello(String aGuest)
return "Welcome " + aGuest + " This is a Secure Service";
The policy is exactly as in the sample ( in fact I cut and pasted from sample)
<wsSecurityPolicy xsi:schemaLocation="WSSecurity-policy.xsd" xmlns="http://www.bea.com/2003/03/wsse/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     <wsSecurityOut>
<!--
Accompany the SOAP message with a valid username and password
-->
<userNameToken>
<userName>weblogic</userName>
<password type="TEXT">weblogic</password>
</userNameToken>
<!--
Encrypt the SOAP message with the recipient's (MyCompany.jws) public key.
Only the recipient's private key can decrypt it.
Ensures the confidentiality of the SOAP message.
(This process requires that the sender's keystore already contains
a digital certificate containing the recients public key.)
-->
          <encryption>
               <encryptionKey>
                    <alias>mycompany</alias>
               </encryptionKey>
          </encryption>
<!--
Sign the SOAP message with the sender's (Client.jws) private key.
Only the sender's public key can validate the signature.
Ensures the authenticity of the sender, i.e., that the sender is
in fact the source of the SOAP message.
-->
<signatureKey>
               <alias>client1</alias>
               <password>password</password>
          </signatureKey>
     </wsSecurityOut>
<wsSecurityIn>
<!--
Incoming SOAP message must be accompanied by a valid username
and password.
-->
          <token tokenType="username"/>
<!--
Incoming SOAP messages must be encrypted with client.jws's
public key. The alias and password to access the client.jws's
decrypting private key in the keystore are provided by
the <decryptionKey> element below.
-->
          <encryptionRequired>
               <decryptionKey>
                    <alias>client1</alias>
                    <password>password</password>
               </decryptionKey>
          </encryptionRequired>
<!--
Incoming SOAP messages must be digitally signed with the sender's
private key.
The sender's public key is used to validate the signature.
-->
          <signatureRequired>true</signatureRequired>
</wsSecurityIn>
<!--
Look for the client.jks keystore in the default location, the server domain
root, in this case, BEA_HOME\weblogic81\samples\domains\workshop.
-->
     <keyStore>
<keyStoreLocation>samples_client.jks</keyStoreLocation>
<keyStorePassword>password</keyStorePassword>
</keyStore>
</wsSecurityPolicy>
on the client side:
I have jws :
package security.wsse.reqresp.client;
* @common:target-namespace namespace="http://workshop.bea.com/Client"
public class Client implements com.bea.jws.WebService
* @common:control
private security.wsse.reqresp.client.SecuredGreeting securedGreetingControl;
* @common:control
private security.wsse.reqresp.client.GreetGuest greetGuestControl;
static final long serialVersionUID = 1L;
* @common:operation
public void getGreeted(String myName)
String aReturnValue = securedGreetingControl.SayHello(myName);
System.out.println("Message from Service=" + aReturnValue );
The control in the client , I used is:
package security.wsse.reqresp.client;
* @jc:location http-url="http://localhost:7001/TestWebServicesProject/security/wsse/reqresp/service/GreetGuest.jws"
* @jc:wsdl file="#GreetGuestWsdl"
* @editor-info:link autogen-style="java" source="GreetGuestContract.wsdl" autogen="true"
public interface SecuredGreeting extends com.bea.control.ControlExtension, com.bea.control.ServiceControl
public java.lang.String SayHello (java.lang.String aGuest);
static final long serialVersionUID = 1L;
/** @common:define name="GreetGuestWsdl" value::
<?xml version="1.0" encoding="utf-8"?>
<!-- @editor-info:link autogen="true" source="GreetGuest.jws" -->
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:conv="http://www.openuri.org/2002/04/soap/conversation/" xmlns:cw="http://www.openuri.org/2002/04/wsdl/conversation/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:jms="http://www.openuri.org/2002/04/wsdl/jms/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://workshop.bea.com/MyCompany" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://workshop.bea.com/MyCompany">
<types>
<s:schema elementFormDefault="qualified" targetNamespace="http://workshop.bea.com/MyCompany" xmlns:s="http://www.w3.org/2001/XMLSchema">
<s:element name="SayHello">
<s:complexType>
<s:sequence>
<s:element name="aGuest" type="s:string" minOccurs="0"/>
</s:sequence>
</s:complexType>
</s:element>
<s:element name="SayHelloResponse">
<s:complexType>
<s:sequence>
<s:element name="SayHelloResult" type="s:string" minOccurs="0"/>
</s:sequence>
</s:complexType>
</s:element>
<s:element name="string" nillable="true" type="s:string"/>
</s:schema>
</types>
<message name="SayHelloSoapIn">
<part name="parameters" element="s0:SayHello"/>
</message>
<message name="SayHelloSoapOut">
<part name="parameters" element="s0:SayHelloResponse"/>
</message>
<message name="SayHelloHttpGetIn">
<part name="aGuest" type="s:string"/>
</message>
<message name="SayHelloHttpGetOut">
<part name="Body" element="s0:string"/>
</message>
<message name="SayHelloHttpPostIn">
<part name="aGuest" type="s:string"/>
</message>
<message name="SayHelloHttpPostOut">
<part name="Body" element="s0:string"/>
</message>
<portType name="GreetGuestSoap">
<operation name="SayHello">
<input message="s0:SayHelloSoapIn"/>
<output message="s0:SayHelloSoapOut"/>
</operation>
</portType>
<portType name="GreetGuestHttpGet">
<operation name="SayHello">
<input message="s0:SayHelloHttpGetIn"/>
<output message="s0:SayHelloHttpGetOut"/>
</operation>
</portType>
<portType name="GreetGuestHttpPost">
<operation name="SayHello">
<input message="s0:SayHelloHttpPostIn"/>
<output message="s0:SayHelloHttpPostOut"/>
</operation>
</portType>
<binding name="GreetGuestSoap" type="s0:GreetGuestSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
<operation name="SayHello">
<soap:operation soapAction="http://workshop.bea.com/MyCompany/SayHello" style="document"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
<binding name="GreetGuestHttpGet" type="s0:GreetGuestHttpGet">
<http:binding verb="GET"/>
<operation name="SayHello">
<http:operation location="/SayHello"/>
<input>
<http:urlEncoded/>
</input>
<output>
<mime:mimeXml part="Body"/>
</output>
</operation>
</binding>
<binding name="GreetGuestHttpPost" type="s0:GreetGuestHttpPost">
<http:binding verb="POST"/>
<operation name="SayHello">
<http:operation location="/SayHello"/>
<input>
<mime:content type="application/x-www-form-urlencoded"/>
</input>
<output>
<mime:mimeXml part="Body"/>
</output>
</operation>
</binding>
<service name="GreetGuest">
<port name="GreetGuestSoap" binding="s0:GreetGuestSoap">
<soap:address location="http://localhost:7001/TestWebServicesProject/security/wsse/reqresp/service/GreetGuest.jws"/>
</port>
<port name="GreetGuestHttpGet" binding="s0:GreetGuestHttpGet">
<http:address location="http://localhost:7001/TestWebServicesProject/security/wsse/reqresp/service/GreetGuest.jws"/>
</port>
<port name="GreetGuestHttpPost" binding="s0:GreetGuestHttpPost">
<http:address location="http://localhost:7001/TestWebServicesProject/security/wsse/reqresp/service/GreetGuest.jws"/>
</port>
</service>
</definitions>
The policy file for the control is:
<wsSecurityPolicy xsi:schemaLocation="WSSecurity-policy.xsd" xmlns="http://www.bea.com/2003/03/wsse/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     <wsSecurityOut>
<!--
Accompany the SOAP message with a valid username and password
-->
<userNameToken>
<userName>weblogic</userName>
<password type="TEXT">weblogic</password>
</userNameToken>
<!--
Encrypt the SOAP message with the recipient's (MyCompany.jws) public key.
Only the recipient's private key can decrypt it.
Ensures the confidentiality of the SOAP message.
(This process requires that the sender's keystore already contains
a digital certificate containing the recients public key.)
-->
          <encryption>
               <encryptionKey>
                    <alias>mycompany</alias>
               </encryptionKey>
          </encryption>
<!--
Sign the SOAP message with the sender's (Client.jws) private key.
Only the sender's public key can validate the signature.
Ensures the authenticity of the sender, i.e., that the sender is
in fact the source of the SOAP message.
-->
<signatureKey>
               <alias>client1</alias>
               <password>password</password>
          </signatureKey>
     </wsSecurityOut>
<wsSecurityIn>
<!--
Incoming SOAP message must be accompanied by a valid username
and password.
-->
          <token tokenType="username"/>
<!--
Incoming SOAP messages must be encrypted with client.jws's
public key. The alias and password to access the client.jws's
decrypting private key in the keystore are provided by
the <decryptionKey> element below.
-->
          <encryptionRequired>
               <decryptionKey>
                    <alias>client1</alias>
                    <password>password</password>
               </decryptionKey>
          </encryptionRequired>
<!--
Incoming SOAP messages must be digitally signed with the sender's
private key.
The sender's public key is used to validate the signature.
-->
          <signatureRequired>true</signatureRequired>
</wsSecurityIn>
<!--
Look for the client.jks keystore in the default location, the server domain
root, in this case, BEA_HOME\weblogic81\samples\domains\workshop.
-->
     <keyStore>
<keyStoreLocation>samples_client.jks</keyStoreLocation>
<keyStorePassword>password</keyStorePassword>
</keyStore>
</wsSecurityPolicy>

Hi Vijay
It appears like you are not applying the wsse policy on the client side.
Check the jws as well as the control on the Client side. Both do not refer to a wsse policy file
Your code snippets:
Jws:
* @common:target-namespace namespace="http://workshop.bea.com/Client"
public class Client implements com.bea.jws.WebService
Service Control:
* @jc:location http-url="http://localhost:7001/TestWebServicesProject/security/wsse/reqresp/service/GreetGuest.jws"
* @jc:wsdl file="#GreetGuestWsdl"
* @editor-info:link autogen-style="java" source="GreetGuestContract.wsdl" autogen="true"
public interface SecuredGreeting extends com.bea.control.ControlExtension, com.bea.control.ServiceControl
Please refer to the wsse file on the Client side just like how you have done it on the server side.
Vimala-

Similar Messages

  • HT5012 I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

    I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • Difficulty downloding Adobe Reader and Error 1327. Invalid Drive H:\

    I am having a difficulty downloading Adobe reader on my laptop. For some reasons, I am getting error 1327. Invalid Drive H:\ notification. I have followed the tips on how to resolve this issue from Adobe's help and FAQ pages, but I am still not able to download Adobe reader. This issue begun short while after I installed a Tuneup software from AVG. I contacted this Tuneup company, and one of it's representative guided me through the steps on how to resolve the problem; unfortunately, the correction attempt did not make any difference. Adobe tech support team can fix my issue, but at a cost of $ 40. I do not want to pay it. Hence, I am trying to solve this problem myself. Could any one, who has the knowledge to deal with this issue, please respond to my request?
    Thank you in advance for your assistance. I look forward to hearing from you.
    Best regards,
    Peter VK Mayangi

    Have you tried both solutions on the link from the earlier poster?  Microsoft Fixit did not fixit?
    If so, you will have to search the registry manually for your invalid drive H:\
    Please post back if you are unsure what to do when you find that registry entry.
    P.S. please do not post your email address and other private data in this public forum!

  • 'we had difficulty reading this feed. host parameter is null' I am getting no where here, help!?

    I've had an RSS feed created for an online video podcast but keep getting the message: 'we had difficulty reading this feed. host parameter is null' i've looked at the forums but none of them make any sense. My IT team say the RSS feed is valid and it should work and that is more like down to an itunes error, any help?

    This will be our first podcast so do not currently have a page. Below is the feed.
    Thank you Roger.
    <?xml version="1.0" encoding="utf-8"?>
    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
    <atom:link href="http://dmsukltd.com/rss/rss.xml" rel="self" type="application/rss+xml" />
    <title>The Big Picture</title>
    <link>http://www.dmsukltd.com/hawk/dms_big_picture/</link>
    <description>A brand new monthly movie show produced by DMS</description>
    <language>en-gb</language>
    <item>
    <title>The Big Picture: Mission: Impossible-Ghost Protocol first podcast</title>
    <link>http://dmsukltd.com/dl/paramount/tbp_mi4gp_uk_premiere_v1_qt_hires.mov</link>
    <guid>http://dmsukltd.com/dl/paramount/tbp_mi4gp_uk_premiere_v1_qt_hires.mov</guid>
    <pubDate>15 Dec 2011 12:00:00 GMT</pubDate>
    <description>[CDATA[The cast of Mission Impossible - Ghost Protocol joined The Big Picture on the red carpet for the films UK Premiere! Tom Cruise, Simon Pegg, Paula Patton and Samuli Edelmann were on hand to talk about this latest chapter of the popular series!]]</description>
    </item>
    </channel>
    </rss>

  • "We had difficulty reading this feed. null" Atom feeds no longer work?

    Hi - our Audioboo feeds used to work fine when submitting as a podcast (eg http://audioboo.fm/users/4705/boos.atom). It seems like they stopped working recently - maybe in the past couple of days - and just report "We had difficulty reading this feed. null" when you try to submit them.
    I'm beginning to suspect that the use of atom rather than rss is the cause. Can anyone confirm?
    -Jonathan

    This feed can be subscribed to manually in iTunes (from the 'Advanced' menu) - actually I'm rather surprised it works because it isn't a valid podcast feed (though it is a valid Atom feed).
    It has the iTunes 'declaration' and some itunes tags, although the former is contained in a 'feed' tag whereas it should be a 'rss' tag: there is no 'channel' tag enclosing the podcast data, no 'item' tags enclosing each episode, and no 'enclosure' tags within each episode containing the media URL. I'm not surprised you can't submit it as a podcast, and as I say it's a but surprising that the iTunes application recognizes it.
    In order to get it accepted in the iTunes Store you need to create a feed in the correct format: this page contains a sample basic feed so you can see how it should look:
    http://www.wilmut.org.uk/pc
    If the feed contains the valid iTunes format it can also contain atom tags, which iTunes will ignore.

  • Difficulty detecting SATA disk, adding a second SATA disk, memory conflict, etc

    I resolved the SATA problem in the middle of writing this post, but for others’ benefit in the future, I am still describing it here.  But there are still some unresolved problems.
    ========================================================
    I have an Intel P4 2.4 GHz CPU.
    My MSI motherboard has the words 865PE Neon 2P on it.
    BIOS is AmiBIOS 3.31a.
    I cannot tell what display card I have.  I do not see any brand printed on the card.
    I have an (internal) 37 GB IDE hard disk (I cannot see the brand and I am too lazy to un-mount it) as the C drive.
    About 3 years ago I added another internal disk, 150GB Western Digital WD 1600, SATA as the E drive.
    I have a copy of Windows XP Pro SP2 on each of these two hard drives but I always boot on C.
    I also have 2 DVD drives (Drives D and G) and 6 (2 at the side and 4 at the back) USB ports.
    A shop installed everything for me and things have been well.  I did not record the BIOS settings so I do not know how it was set up.  My nightmare started about 2 weeks ago when my PC suddenly did not detect E, i.e. the SATA drive.  I had not done anything to the BIOS setting or otherwise, so I have no idea why the E drive suddenly disappeared. 
    At that time, the Standard CMOS Features in the BIOS setting was:
    Primary IDE Master - Not Installed
    Primary IDE Slave - IC35L060AVV207-0
    Secondary IDE Master - Pioneer DVD ROM
    Secondary IDE Slave - Lite On DVD ROM
    Third IDE Master - Not Installed
    Third IDE Slave - Not Installed
    Fourth IDE Master - Not Installed
    Fourth IDE Slave - Not Installed
    I tried many things and finally bought a hard disk enclosure and put that SATA in it and connect it to one of the USB ports.  It works.
    This morning I stumbled on this article "Motherboard can't detect SATA hard disk" at http://forum.msi.com.tw/index.php?topic=119738.0 and also “Q: How to enable both SATA and PATA? “ on “NEO Boards Unofficial FAQ rev 4/05/2004 - two lights on "P" series” at https://forum-en.msi.com/index.php?topic=21469.0 taking about the On-Chip IDE Configuration section of  the BIOS menu and I decided to give it a try, so that I can get rid of that hard disk enclosure.
    It works, kind of.  I saw that it was set to Legacy Mode, P-ATA Only, SATA Keep Enabled=No, PATA Keep Enabled=No, PATA Channel Selection=Both, Combined Mode Option=PATA 1st Channel, SATA Ports Definition= P0-3rd/P1-4th. So following the advice on the article and the FAQ, I reset it to Legacy Mode, P-ATA + S-ATA, SATA Keep Enabled=No, PATA Keep Enabled=No, PATA Channel Selection=Both, Combined Mode Option=PATA 1st Channel, SATA Ports Definition= P0-Master/P1-Slave.  Now my PC could detect the SATA drive and set it as the D drive (and the IDE remained as Drive C) but my two DVD ROMs disappeared.  The Standard CMOS Features in the BIOS setting was:
    Primary IDE Slave - IC35L060AVV207-0
    Secondary IDE Master - WDC WD1600JD-00HBB
    The rest is Not Installed.
    So, I (only) changed Combined Mode Option to SATA 1st Channel. So apparently my PC now booted using the WinXP copy on the SATA disk (recall that I have WinXP on both hard disks).  And now the SATA disk is C, and both DVD ROMs are visible.  My IDE disk disappeared.
    Now I went back to the BIOS menu and switched back to PATA 1st Channel, reset it back to P-ATA Only, and changed SATA Keep Enabled=Yes.  Voila.  Now I can see my IDE disk as Drive C, SATA disk as Drive D, the two DVD ROMs as Drives E and G.  Everything looks fine except that some of the start-up programs no longer start up apparently because their paths used to be E:\.... but now the disk they are on was renamed from E to D so the operating system cannot locate them.  And the Standard CMOS Features menu reads:
    Primary IDE Master - Not Installed
    Primary IDE Slave - IC35L060AVV207-0
    Secondary IDE Master - Pioneer DVD ROM
    Secondary IDE Slave - Lite On DVD ROM
    Third IDE Master - Not Installed
    Third IDE Slave - Not Installed
    Fourth IDE Master - WDC WD1600JD-00HBB
    Fourth IDE Slave - Not Installed
    Problem 1 (the main problem): Difficulty detecting SATA disk – Resolved.  If anyone is kind enough, maybe you can tell me and others why suddenly the BIOS setting was changed by itself causing all these problems, and why “P-ATA Only, SATA Keep Enabled=Yes” works but “P-ATA + S-ATA, SATA Keep Enabled=No” does not.  Should I now tweak the Windows registry to change the drive letter of the SATA disk from D to E? 
    Problem 2: I just bought an internal Hitachi Deskstar 640GB SATA disk.  And I have a vacant orange SATA connector on my mobo.  Can I add it together with the existing 2?  Would it be set up as Third IDE Master, Fourth IDE Slave, or something else?
    Problem 3: I used to have a Samsung DDR PC2700 512MB memory module and during the last week I added a Corsair DDR PC3200 1GB memory module, both on the green slots (not the purple slots).  It caused my PC to freeze (keyboard and mouse not responsive) every now and then.  So I pulled out the Samsung one and it has been working fine.  Some said one has to use memory from the same manufacturer with the same size and same everything.  The sticky thread titled “NEO Boards Unofficial FAQ rev 4/05/2004 - two lights on "P" series” in this forum has a question “I have this RAM xxxx but it does not work with my board. Can MSI update the BIOS to fix this?” and the answer points to a Product Info page and I don’t know where that is. Any advice on how to make both work together?  Can I use the purple slots?
    Problem 4: The “usable” space on my Dell M991 CRT monitor has shrunk.  That is, the black areas on both sides, mostly RHS, have intermittently enlarged.  It only happened in these 2 weeks. I tried Control Panel – Display – Settings – Advanced – Displays – Adjustments to no avail.  I don’t have another monitor to try in order to test whether it has to do with the CRT.  Just in case you happen to know anything, please jot a line.
    Problem 5: Some of my USB ports do not work or only work intermittently.  For example I plugged in my wireless adaptor into one of them and it sometimes would say “USB Device Not Recognized”.

    Quote
    If anyone is kind enough, maybe you can tell me and others why suddenly the BIOS setting was changed by itself causing all these problems, and why “P-ATA Only, SATA Keep Enabled=Yes” works but “P-ATA + S-ATA, SATA Keep Enabled=No” does not.
    Maybe your CMOS Battery is running low and it is time to replace it.
    Quote
    Should I now tweak the Windows registry to change the drive letter of the SATA disk from D to E? 
    Try to change drive letters via the Windows Drive Manager:
    http://www.mvps.org/marksxp/WindowsXP/driveltr.php
    Quote
    Problem 2: I just bought an internal Hitachi Deskstar 640GB SATA disk.  And I have a vacant orange SATA connector on my mobo.  Can I add it together with the existing 2?
    If it is a SATA-II Drive, you will probably have to force it into SATA-I Compatibility mode first (check the hard drive user manual for jumper settings or firmware switches).
    Quote
    I used to have a Samsung DDR PC2700 512MB memory module and during the last week I added a Corsair DDR PC3200 1GB memory module, both on the green slots (not the purple slots).  It caused my PC to freeze (keyboard and mouse not responsive) every now and then.  So I pulled out the Samsung one and it has been working fine.  Some said one has to use memory from the same manufacturer with the same size and same everything.
    Exactly.  Mixing different memory modules causes problems in many cases because the exact same settings will apply to both modules at the same time.  What works for the one module may not work so well for the other one.
    Quote
    Just in case you happen to know anything, please jot a line.
    That is either related to the monitor itself or to the video card.  It may also be related to a problem with the driver or improper screen resolution settings.
    Quote
    Problem 5: Some of my USB ports do not work or only work intermittently.  For example I plugged in my wireless adaptor into one of them and it sometimes would say “USB Device Not Recognized”.
    What ports? Front Panel or Back Panel?

  • I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I may be way out, but do you know about this product, would it help integrate the Macs for you.
    https://www.thursby.com/sites/default/files/images/ADmitMacv8_SPD.pdf

  • New customer - Difficulty Getting Support

    Prior to becoming a customer today, I had no problems with getting in contact with Verizon via chat. Now that I am a customer, I'm having a difficult time getting support. EVERY avenue of Verizon support is busy -- long hold times on the phone, no chat representatives available (all assisting others), long wait times in the store.
    I had to provide additional documentation to get my account setup, and I was not informed that I would need additional documentation when I first came to the Verizon store on Feb. 21. I am porting over from another carrier, and got the go ahead from the other carrier on Feb. 28 to be able to switch. I came in to a Verizon store on Feb. 28 to setup service, but the computer system automatically placed a hold on the account and I had to provide additional documentation.
    I could not get that documentation and come back before the store closed for the night. I came back March 1, and had to end up paying a higher price for the phone. I am fairly certain that in the month of February, the Droid MAXX was $99.99 and I can at least confirm that by using web.archive.org and looking back to Feb. 25 where it does show that price with a 2-year contract. Going to verizonwireless.com today now shows the phone for $149.99.
    The difficulty in getting support lies with not being able to get the price adjusted in the store. I went to another store, and after being there for at least 20 minutes, I hadn't moved up in the queue. I tried online chat, but all agents were busy. I called phone support, but encountered a wait for assistance on the phone. I lastly tried Twitter support, but it seems the VZWSupport account was last active on Feb. 26.

    c_brookhart wrote:
    I managed to get in contact with customer service by phone. I've had good experience using social media to get assistance from my previous carrier. Verizon seems to have two support accounts on Twitter - VerizonSupport and VZWSupport; which one is the correct one?
    VerizonSupport = Verizon Landline services (phone, Fios, DSL, etc.)
    VZWSupport = Verizon Wireless (cellular phone)

  • I can't get pages 5.01 to open pages files from iCloud, although they open in iCloud Pages without difficulty.

    I can't get Pages 5.01 to open Pages files from iCloud, although they open in iCloud Pages without difficulty.
    I am using the most up to date version of Mavericks and Pages and can log into iCloud without any problems.  Is this just a glitch?  The files all behaved properly under previous versions and the initial release of the new version of Pages.

    Pages for iCloud beta is a weird beast and as it says "beta".
    I think it is the least compatible of all the many different .pages files floating around out there.
    Peter

  • I have updated my iOS and now my hotmail will not verify my password through apple mail app.  I have reset password - tried new password and old password and it still gives me password incorrect.  Hotmail works fine on Mac.  Has anyone had this difficulty

    I have updated my iOS and now my hotmail will not verify my password through apple mail app.  I have reset password - tried new password and old password and it still gives me password incorrect.  Hotmail works fine on Mac.  Has anyone had this difficulty and been able to resolve it?

    Did you try deleting the mail account, then adding it back?   I've read a lot of times that is what needs to happen in order for it to work properly.

  • HT5631 how do I verify my apple id? I can't sign in to it in mail and I can't make a new one because it just will not process I'm trying to set up iCloud between iPad and iPhone and having ALOT of difficulty pleAse help need it done by later on today!!!!!

    how do I verify my apple id? I can't sign in to it in mail and I can't make a new one because it just will not process I'm trying to set up iCloud between iPad and iPhone and having ALOT of difficulty pleAse help need it done by later on today!!!!!

    In order to use your Apple ID to create an iCloud account, the primary email address associated with the ID must first be verified.  To do this, Apple will send a verification email to your account and you must respond to the email by clicking the Verify Now link.  Make sure you are check the spam/junk folder as well as the inbox.  If it isn't there, go to https://appleid.apple.com, click Manage your Apple ID, sign in, click on Name, ID and Email addresses on the left, then to the right click Resend under your Primary Email Address to resend the verification email.

  • HT204053 Had trouble with my old account, reset my ipod touch and now cannot access the itunes store or anything; I am trying to set up a new account but am having difficulty!  HELP!

    I am having trouble reconnecting my iPod Touch to the network, iTunes store, etc.  I tried to set up a new account and still am having difficulty, can anyone 'walk' me thru this reconnecting processess?

    I had a similar issue and it was password case sensitive issue

  • Having difficulty converting more than one page of a PDF to Excel.

    I am using Adobe Acrobat 10.0 to convert PDF files to use in Excel. I am working with PDFs that have several dozen, if not hundreds of pages, almost all of which contain very lengthy tables. I need to have these tables saved in a format accessible by Excel, but I am running into a bit of difficulty. Whenever I convert a PDF, I can open it in Excel and find that the very first page of the PDF has converted over perfectly. Any headers are properly placed. Any tables are perfectly aligned, spaced, and appropriately divided among different columns. All information is laid out fine. All the information from the second page on is crammed into the first column.
    I have tried to save the PDF as an Excel workbook, and I have tried selecting just the tables and exporting them to Excel. I get more or less the same results whatever I try. I can convert a single page at a time without any problems, but since I have thousands of pages of tables to convert, you can probably understand why I want to find a solution to this. I need to be able to convert over multiple pages without having all of the information from tabels within the PDF getting placed into the first colum. Any and all help would be appreciated.

    Adobe strongly recommends that you should NOT have Acrobat and Reader installed on the same system. They have the bad habit on stepping on each other's files. You do not need both programs to read PDF files.
    You should uninstall Reader and repair Acrobat. I also recommend that you restart after removing Reader and after repairing Acrobat.
    Good luck.
    Ken Friedman

  • Difficulty in implementing a web dynpro application

    Hi All,
    this is Sangeet.I'm facing some difficulty in testing the dynpro application zz_00_bapiflight.When I test it shows that the context node does not exist.
    One more thing which I wanted to know is when a view is created , it asks for a user name n PW, what is its significance.It did not show it for me in the above said application.Is it the reason ?
    Please help me out n the answers will be rewarded.
    Thanks,
    Sangeet.

    Hi Sangeet,
        When any view is created it does not ask for username and password.
        Which system are you using? Web dynpro ABAP can only work on ECC6.0
        onwards and it requires WAS 7.0 to run the application.
        Also when you run the application you need to check whether all settings are
        done or not. If you have not created any context node then please create it as  
        per your requirement. Also check whether everything is active or not.
        To follow the complete procedure,
       You can start with tutorials and all. There are around six tutorials in SDN library.
    I] Web Dynpro for ABAP
    http://help.sap.com/saphelp_erp2005/helpdata/en/a5/1a1e3e7181b60ae10000000a114084/frameset.htm
    best tutorials in wbdynpro for ABAP to start with :
    https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/webcontent/uuid/fed073e5-0901-0010-4eb4-c9882aac7b11 [original link is broken]
    Hope my answer will help you.
    Cheers,
    Darshna.

  • HT4623 I having difficulty in updating my iphone 3GS software from version 4.1 to version 5.1. I cannot update through my iphone & through itunes. Each time I tried a message appeared saying iphone software server cannot be contacted. Please, help

    I am having difficulty in updating my iphone 3GS software from version 4.1 to version 5.1. I tried using my phone but cannot find the update software button even when I have gone through the right process by tapping SETTING, then GENERAL, yet could not find Update Software button. I mean the update Software button is not seen there.
    I tried using itunes, yet no way. Each time I connect my iphone to my laptop itunes software comes up automatically and alerts me that a newer version of software for my iphone is available, It usually gives me the option of Download & Install or Download Only. Whichever of the option I click a message will always appear telling me that the iphone update server could not be contacted, then asking me to make sure that my network settings are correct and active or try again latter. Sometimes, when click on the Update button on my itune software. It will display an error has occured.
    I have even tried to Restore iphone from itunes, yet the problem  keep repeating itself.
    Can anyone help me?

    Dear Tim,
    I saw your message. Below are the problems:
    Whenever I connect my iphone 3GS to my PC through a USB. My itunes software comes up automatically.
    1. After that a message appears from the itunes that states that 'itunes could not connect to the itunes store, an unknown error cccured (306).
    2. After the above, an alert message comes up which states that A new iphone software version 5.1 is availlable for my iphone. It then states would you like to download it and update your iphone now? With the options buttons as Cancel or Download and Update or Download Only. Whenever I clicked on Download and Update or Download Only, the next message that comes up is that The iphone Software Update Server Could not be Contacted and suggest make sure your network setting are correct and active or try again later.
    The above is the challenges I am facing now.

Maybe you are looking for

  • What should I do; My Macbook Pro Retina 13" performing worse after a visit to the Genius Bar.

    To give a little background; my MacBook is my baby. I keep it as safe and clean as I possibly can. The only damage that has come to it is a tiny dent in the left corner of the screen, when my little sister took it, ran, and dropped it on a wooden flo

  • Opening PDFs in a New Window

    Is there a good way to code a link to a PDF on a web page that would ensure that the PDF opens in Reader or in a new browser window/tab instead of in the same window/tab? Even though modern browsers allow users to configure their setup to allow PDFs

  • Lumia 830 - Wifi 5gz problems

    Hey, I recently got a new router (Draytek 2120) wich supports 5gz. And since 2,4 is crowded i switched. All of my devices are working properly except my lumia830. The phone can connect to the ssid, but when i do a speedtest it switches to my mobile d

  • Adding a new field in MIRO using BADI

    Hai Experts, I am new to BADI. Today one requirement was there to add a field in MIRO screen for costcenter. As i searched in SDN i got information to use BADI MRM_ITEM_CUSTFIELDS. Is it right or anyother option is there to create a field. If it is r

  • Automated process to get files from iScala System to GRC system

    Hi, iScala connector program run on local iscala servers.files are zipped up and place on ftp sites to download.once downloaded basis team copy the contents of zip files to IN Directory on GRC server.comparision utility is then run to move the files